diff --git a/grammar.js b/grammar.js index c5743aa..0275fe9 100644 --- a/grammar.js +++ b/grammar.js @@ -105,6 +105,8 @@ module.exports = grammar({ [$._name, $._subtype_indication], [$._name, $._subtype_indication, $.component_choice_list], [$.attribute_definition_clause, $._attribute_reference], + [$.component_choice_list, $.discrete_choice], + [$.component_choice_list, $.positional_array_aggregate], ], inline: $ => [ $._name_not_function_call, @@ -666,8 +668,14 @@ module.exports = grammar({ '=>', $.expression, ), - component_choice_list: $ => - list_of('|', $.identifier), + component_choice_list: $ => choice( // RM 4.3.1 + reservedWord('others'), + list_of('|', choice( // Do not allow slice, function_call,... + $.identifier, // as opposed to what the ARM allows + $.selected_component, + $.string_literal, + )), + ), _aggregate: $ => choice( // RM 4.3 $.record_aggregate, $.extension_aggregate, diff --git a/src/grammar.json b/src/grammar.json index 8da059b..c653b79 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3397,27 +3397,74 @@ ] }, "component_choice_list": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "identifier" + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[oO][tT][hH][eE][rR][sS]" + } + } + }, + "named": false, + "value": "others" }, { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "identifier" + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "selected_component" + }, + { + "type": "SYMBOL", + "name": "string_literal" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "selected_component" + }, + { + "type": "SYMBOL", + "name": "string_literal" + } + ] + } + ] } - ] - } + } + ] } ] }, @@ -14749,11 +14796,21 @@ [ "attribute_definition_clause", "_attribute_reference" + ], + [ + "component_choice_list", + "discrete_choice" + ], + [ + "component_choice_list", + "positional_array_aggregate" ] ], "precedences": [], "externals": [], - "inline": [], + "inline": [ + "_name_not_function_call" + ], "supertypes": [] } diff --git a/src/node-types.json b/src/node-types.json index 7405f92..77f4a82 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1599,11 +1599,19 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "identifier", "named": true + }, + { + "type": "selected_component", + "named": true + }, + { + "type": "string_literal", + "named": true } ] } diff --git a/src/parser.c b/src/parser.c index 6905052..33006a8 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,8 +6,8 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1946 -#define LARGE_STATE_COUNT 73 +#define STATE_COUNT 1948 +#define LARGE_STATE_COUNT 75 #define SYMBOL_COUNT 440 #define ALIAS_COUNT 0 #define TOKEN_COUNT 114 @@ -90,16 +90,16 @@ enum { aux_sym_declare_expression_token1 = 71, aux_sym_quantifier_token1 = 72, aux_sym_case_expression_token1 = 73, - aux_sym_record_component_association_list_token1 = 74, - aux_sym_private_type_declaration_token1 = 75, - aux_sym_private_type_declaration_token2 = 76, - aux_sym_private_extension_declaration_token1 = 77, - aux_sym_array_type_definition_token1 = 78, - aux_sym_interface_type_definition_token1 = 79, - aux_sym_interface_type_definition_token2 = 80, - aux_sym_component_list_token1 = 81, - aux_sym_component_definition_token1 = 82, - aux_sym_positional_array_aggregate_token1 = 83, + aux_sym_component_choice_list_token1 = 74, + aux_sym_record_component_association_list_token1 = 75, + aux_sym_private_type_declaration_token1 = 76, + aux_sym_private_type_declaration_token2 = 77, + aux_sym_private_extension_declaration_token1 = 78, + aux_sym_array_type_definition_token1 = 79, + aux_sym_interface_type_definition_token1 = 80, + aux_sym_interface_type_definition_token2 = 81, + aux_sym_component_list_token1 = 82, + aux_sym_component_definition_token1 = 83, aux_sym__aspect_mark_token1 = 84, anon_sym_COLON_EQ = 85, aux_sym_at_clause_token1 = 86, @@ -533,6 +533,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_declare_expression_token1] = "declare", [aux_sym_quantifier_token1] = "some", [aux_sym_case_expression_token1] = "case", + [aux_sym_component_choice_list_token1] = "others", [aux_sym_record_component_association_list_token1] = "record", [aux_sym_private_type_declaration_token1] = "abstract", [aux_sym_private_type_declaration_token2] = "tagged", @@ -542,7 +543,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_interface_type_definition_token2] = "interface", [aux_sym_component_list_token1] = ";", [aux_sym_component_definition_token1] = "aliased", - [aux_sym_positional_array_aggregate_token1] = "others", [aux_sym__aspect_mark_token1] = "Class", [anon_sym_COLON_EQ] = ":=", [aux_sym_at_clause_token1] = "at", @@ -976,6 +976,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_declare_expression_token1] = aux_sym_declare_expression_token1, [aux_sym_quantifier_token1] = aux_sym_quantifier_token1, [aux_sym_case_expression_token1] = aux_sym_case_expression_token1, + [aux_sym_component_choice_list_token1] = aux_sym_component_choice_list_token1, [aux_sym_record_component_association_list_token1] = aux_sym_record_component_association_list_token1, [aux_sym_private_type_declaration_token1] = aux_sym_private_type_declaration_token1, [aux_sym_private_type_declaration_token2] = aux_sym_private_type_declaration_token2, @@ -985,7 +986,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_interface_type_definition_token2] = aux_sym_interface_type_definition_token2, [aux_sym_component_list_token1] = anon_sym_SEMI, [aux_sym_component_definition_token1] = aux_sym_component_definition_token1, - [aux_sym_positional_array_aggregate_token1] = aux_sym_positional_array_aggregate_token1, [aux_sym__aspect_mark_token1] = aux_sym__aspect_mark_token1, [anon_sym_COLON_EQ] = anon_sym_COLON_EQ, [aux_sym_at_clause_token1] = aux_sym_at_clause_token1, @@ -1641,6 +1641,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_component_choice_list_token1] = { + .visible = true, + .named = false, + }, [aux_sym_record_component_association_list_token1] = { .visible = true, .named = false, @@ -1677,10 +1681,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_positional_array_aggregate_token1] = { - .visible = true, - .named = false, - }, [aux_sym__aspect_mark_token1] = { .visible = true, .named = false, @@ -3719,8 +3719,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [69] = 69, [70] = 70, [71] = 71, - [72] = 27, - [73] = 73, + [72] = 72, + [73] = 27, [74] = 74, [75] = 75, [76] = 76, @@ -4152,8 +4152,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [502] = 502, [503] = 503, [504] = 504, - [505] = 505, - [506] = 504, + [505] = 501, + [506] = 506, [507] = 507, [508] = 508, [509] = 509, @@ -4162,7 +4162,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [512] = 512, [513] = 513, [514] = 514, - [515] = 266, + [515] = 264, [516] = 516, [517] = 517, [518] = 518, @@ -4171,8 +4171,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [521] = 521, [522] = 522, [523] = 523, - [524] = 266, - [525] = 525, + [524] = 524, + [525] = 264, [526] = 526, [527] = 527, [528] = 528, @@ -4212,7 +4212,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [562] = 562, [563] = 563, [564] = 564, - [565] = 266, + [565] = 264, [566] = 566, [567] = 567, [568] = 568, @@ -4562,11 +4562,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [912] = 912, [913] = 913, [914] = 914, - [915] = 898, + [915] = 915, [916] = 916, [917] = 917, [918] = 918, - [919] = 919, + [919] = 914, [920] = 920, [921] = 921, [922] = 922, @@ -4949,7 +4949,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1299] = 1299, [1300] = 1300, [1301] = 1301, - [1302] = 1189, + [1302] = 1302, [1303] = 1303, [1304] = 1304, [1305] = 1305, @@ -4978,7 +4978,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1328] = 1328, [1329] = 1329, [1330] = 1330, - [1331] = 1331, + [1331] = 1155, [1332] = 1332, [1333] = 1333, [1334] = 1334, @@ -5593,6 +5593,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1943] = 1943, [1944] = 1944, [1945] = 1945, + [1946] = 1946, + [1947] = 1947, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -7251,7 +7253,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { lookahead == 'd') ADVANCE(280); END_STATE(); case 255: - ACCEPT_TOKEN(aux_sym_positional_array_aggregate_token1); + ACCEPT_TOKEN(aux_sym_component_choice_list_token1); END_STATE(); case 256: if (lookahead == 'D' || @@ -7709,30 +7711,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [240] = {.lex_state = 10}, [241] = {.lex_state = 26}, [242] = {.lex_state = 26}, - [243] = {.lex_state = 26}, + [243] = {.lex_state = 10}, [244] = {.lex_state = 10}, [245] = {.lex_state = 10}, [246] = {.lex_state = 10}, - [247] = {.lex_state = 10}, + [247] = {.lex_state = 26}, [248] = {.lex_state = 10}, - [249] = {.lex_state = 10}, + [249] = {.lex_state = 26}, [250] = {.lex_state = 10}, - [251] = {.lex_state = 26}, - [252] = {.lex_state = 10}, + [251] = {.lex_state = 10}, + [252] = {.lex_state = 26}, [253] = {.lex_state = 10}, [254] = {.lex_state = 10}, [255] = {.lex_state = 10}, [256] = {.lex_state = 10}, [257] = {.lex_state = 10}, - [258] = {.lex_state = 26}, + [258] = {.lex_state = 10}, [259] = {.lex_state = 10}, [260] = {.lex_state = 26}, - [261] = {.lex_state = 10}, + [261] = {.lex_state = 26}, [262] = {.lex_state = 10}, - [263] = {.lex_state = 26}, - [264] = {.lex_state = 26}, + [263] = {.lex_state = 10}, + [264] = {.lex_state = 10}, [265] = {.lex_state = 10}, - [266] = {.lex_state = 10}, + [266] = {.lex_state = 26}, [267] = {.lex_state = 10}, [268] = {.lex_state = 26}, [269] = {.lex_state = 26}, @@ -7742,10 +7744,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [273] = {.lex_state = 26}, [274] = {.lex_state = 26}, [275] = {.lex_state = 26}, - [276] = {.lex_state = 26}, + [276] = {.lex_state = 10}, [277] = {.lex_state = 26}, [278] = {.lex_state = 26}, - [279] = {.lex_state = 10}, + [279] = {.lex_state = 26}, [280] = {.lex_state = 26}, [281] = {.lex_state = 26}, [282] = {.lex_state = 26}, @@ -7944,13 +7946,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [475] = {.lex_state = 26}, [476] = {.lex_state = 26}, [477] = {.lex_state = 26}, - [478] = {.lex_state = 10}, + [478] = {.lex_state = 26}, [479] = {.lex_state = 26}, [480] = {.lex_state = 26}, [481] = {.lex_state = 26}, [482] = {.lex_state = 26}, [483] = {.lex_state = 26}, - [484] = {.lex_state = 26}, + [484] = {.lex_state = 10}, [485] = {.lex_state = 10}, [486] = {.lex_state = 10}, [487] = {.lex_state = 10}, @@ -7963,16 +7965,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [494] = {.lex_state = 10}, [495] = {.lex_state = 10}, [496] = {.lex_state = 10}, - [497] = {.lex_state = 10}, - [498] = {.lex_state = 10}, - [499] = {.lex_state = 26}, - [500] = {.lex_state = 26}, + [497] = {.lex_state = 26}, + [498] = {.lex_state = 26}, + [499] = {.lex_state = 10}, + [500] = {.lex_state = 10}, [501] = {.lex_state = 10}, - [502] = {.lex_state = 26}, - [503] = {.lex_state = 10}, + [502] = {.lex_state = 10}, + [503] = {.lex_state = 26}, [504] = {.lex_state = 10}, - [505] = {.lex_state = 26}, - [506] = {.lex_state = 10}, + [505] = {.lex_state = 10}, + [506] = {.lex_state = 26}, [507] = {.lex_state = 26}, [508] = {.lex_state = 11}, [509] = {.lex_state = 11}, @@ -7990,35 +7992,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [521] = {.lex_state = 26}, [522] = {.lex_state = 26}, [523] = {.lex_state = 10}, - [524] = {.lex_state = 10}, - [525] = {.lex_state = 7}, - [526] = {.lex_state = 26}, - [527] = {.lex_state = 11}, + [524] = {.lex_state = 7}, + [525] = {.lex_state = 10}, + [526] = {.lex_state = 11}, + [527] = {.lex_state = 26}, [528] = {.lex_state = 10}, [529] = {.lex_state = 11}, [530] = {.lex_state = 26}, - [531] = {.lex_state = 26}, + [531] = {.lex_state = 10}, [532] = {.lex_state = 26}, [533] = {.lex_state = 26}, [534] = {.lex_state = 10}, [535] = {.lex_state = 26}, - [536] = {.lex_state = 10}, + [536] = {.lex_state = 26}, [537] = {.lex_state = 26}, - [538] = {.lex_state = 26}, - [539] = {.lex_state = 10}, - [540] = {.lex_state = 26}, + [538] = {.lex_state = 10}, + [539] = {.lex_state = 26}, + [540] = {.lex_state = 10}, [541] = {.lex_state = 26}, - [542] = {.lex_state = 10}, + [542] = {.lex_state = 26}, [543] = {.lex_state = 26}, [544] = {.lex_state = 26}, [545] = {.lex_state = 26}, - [546] = {.lex_state = 10}, + [546] = {.lex_state = 26}, [547] = {.lex_state = 26}, [548] = {.lex_state = 26}, [549] = {.lex_state = 26}, - [550] = {.lex_state = 11}, + [550] = {.lex_state = 10}, [551] = {.lex_state = 26}, - [552] = {.lex_state = 26}, + [552] = {.lex_state = 11}, [553] = {.lex_state = 26}, [554] = {.lex_state = 26}, [555] = {.lex_state = 26}, @@ -8076,14 +8078,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [607] = {.lex_state = 26}, [608] = {.lex_state = 26}, [609] = {.lex_state = 26}, - [610] = {.lex_state = 26}, + [610] = {.lex_state = 10}, [611] = {.lex_state = 26}, [612] = {.lex_state = 26}, - [613] = {.lex_state = 10}, + [613] = {.lex_state = 26}, [614] = {.lex_state = 26}, [615] = {.lex_state = 26}, - [616] = {.lex_state = 26}, - [617] = {.lex_state = 10}, + [616] = {.lex_state = 10}, + [617] = {.lex_state = 26}, [618] = {.lex_state = 26}, [619] = {.lex_state = 26}, [620] = {.lex_state = 26}, @@ -8141,7 +8143,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [672] = {.lex_state = 26}, [673] = {.lex_state = 26}, [674] = {.lex_state = 26}, - [675] = {.lex_state = 10}, + [675] = {.lex_state = 26}, [676] = {.lex_state = 26}, [677] = {.lex_state = 26}, [678] = {.lex_state = 26}, @@ -8154,32 +8156,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [685] = {.lex_state = 26}, [686] = {.lex_state = 26}, [687] = {.lex_state = 26}, - [688] = {.lex_state = 26}, + [688] = {.lex_state = 10}, [689] = {.lex_state = 26}, [690] = {.lex_state = 26}, [691] = {.lex_state = 26}, [692] = {.lex_state = 26}, [693] = {.lex_state = 26}, [694] = {.lex_state = 26}, - [695] = {.lex_state = 11}, + [695] = {.lex_state = 26}, [696] = {.lex_state = 26}, [697] = {.lex_state = 26}, [698] = {.lex_state = 26}, [699] = {.lex_state = 26}, [700] = {.lex_state = 26}, - [701] = {.lex_state = 26}, + [701] = {.lex_state = 11}, [702] = {.lex_state = 26}, [703] = {.lex_state = 26}, [704] = {.lex_state = 26}, [705] = {.lex_state = 26}, - [706] = {.lex_state = 11}, + [706] = {.lex_state = 26}, [707] = {.lex_state = 26}, [708] = {.lex_state = 26}, [709] = {.lex_state = 26}, [710] = {.lex_state = 26}, [711] = {.lex_state = 26}, [712] = {.lex_state = 26}, - [713] = {.lex_state = 26}, + [713] = {.lex_state = 11}, [714] = {.lex_state = 26}, [715] = {.lex_state = 26}, [716] = {.lex_state = 26}, @@ -8187,7 +8189,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [718] = {.lex_state = 26}, [719] = {.lex_state = 26}, [720] = {.lex_state = 26}, - [721] = {.lex_state = 26}, + [721] = {.lex_state = 11}, [722] = {.lex_state = 26}, [723] = {.lex_state = 26}, [724] = {.lex_state = 26}, @@ -8195,21 +8197,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [726] = {.lex_state = 26}, [727] = {.lex_state = 26}, [728] = {.lex_state = 26}, - [729] = {.lex_state = 11}, + [729] = {.lex_state = 26}, [730] = {.lex_state = 26}, [731] = {.lex_state = 11}, - [732] = {.lex_state = 11}, + [732] = {.lex_state = 26}, [733] = {.lex_state = 26}, [734] = {.lex_state = 26}, [735] = {.lex_state = 26}, [736] = {.lex_state = 26}, [737] = {.lex_state = 26}, [738] = {.lex_state = 26}, - [739] = {.lex_state = 26}, + [739] = {.lex_state = 11}, [740] = {.lex_state = 26}, [741] = {.lex_state = 26}, [742] = {.lex_state = 26}, - [743] = {.lex_state = 26}, + [743] = {.lex_state = 10}, [744] = {.lex_state = 26}, [745] = {.lex_state = 26}, [746] = {.lex_state = 26}, @@ -8224,13 +8226,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [755] = {.lex_state = 26}, [756] = {.lex_state = 26}, [757] = {.lex_state = 26}, - [758] = {.lex_state = 0}, + [758] = {.lex_state = 26}, [759] = {.lex_state = 26}, [760] = {.lex_state = 26}, [761] = {.lex_state = 26}, [762] = {.lex_state = 26}, - [763] = {.lex_state = 10}, - [764] = {.lex_state = 26}, + [763] = {.lex_state = 26}, + [764] = {.lex_state = 0}, [765] = {.lex_state = 26}, [766] = {.lex_state = 26}, [767] = {.lex_state = 26}, @@ -8286,18 +8288,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [817] = {.lex_state = 26}, [818] = {.lex_state = 26}, [819] = {.lex_state = 26}, - [820] = {.lex_state = 11}, + [820] = {.lex_state = 26}, [821] = {.lex_state = 26}, - [822] = {.lex_state = 11}, - [823] = {.lex_state = 11}, + [822] = {.lex_state = 26}, + [823] = {.lex_state = 26}, [824] = {.lex_state = 11}, [825] = {.lex_state = 26}, - [826] = {.lex_state = 26}, + [826] = {.lex_state = 11}, [827] = {.lex_state = 26}, - [828] = {.lex_state = 26}, + [828] = {.lex_state = 11}, [829] = {.lex_state = 26}, [830] = {.lex_state = 11}, - [831] = {.lex_state = 11}, + [831] = {.lex_state = 26}, [832] = {.lex_state = 11}, [833] = {.lex_state = 11}, [834] = {.lex_state = 11}, @@ -8311,7 +8313,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [842] = {.lex_state = 11}, [843] = {.lex_state = 11}, [844] = {.lex_state = 11}, - [845] = {.lex_state = 26}, + [845] = {.lex_state = 11}, [846] = {.lex_state = 11}, [847] = {.lex_state = 26}, [848] = {.lex_state = 26}, @@ -8324,213 +8326,213 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [855] = {.lex_state = 26}, [856] = {.lex_state = 26}, [857] = {.lex_state = 26}, - [858] = {.lex_state = 11}, - [859] = {.lex_state = 11}, + [858] = {.lex_state = 26}, + [859] = {.lex_state = 26}, [860] = {.lex_state = 26}, [861] = {.lex_state = 26}, - [862] = {.lex_state = 26}, - [863] = {.lex_state = 26}, - [864] = {.lex_state = 26}, - [865] = {.lex_state = 11}, + [862] = {.lex_state = 11}, + [863] = {.lex_state = 11}, + [864] = {.lex_state = 11}, + [865] = {.lex_state = 26}, [866] = {.lex_state = 26}, [867] = {.lex_state = 26}, [868] = {.lex_state = 26}, [869] = {.lex_state = 26}, [870] = {.lex_state = 26}, [871] = {.lex_state = 26}, - [872] = {.lex_state = 26}, - [873] = {.lex_state = 26}, + [872] = {.lex_state = 10}, + [873] = {.lex_state = 11}, [874] = {.lex_state = 11}, [875] = {.lex_state = 26}, - [876] = {.lex_state = 26}, + [876] = {.lex_state = 11}, [877] = {.lex_state = 26}, [878] = {.lex_state = 26}, [879] = {.lex_state = 26}, [880] = {.lex_state = 26}, - [881] = {.lex_state = 11}, + [881] = {.lex_state = 26}, [882] = {.lex_state = 26}, [883] = {.lex_state = 26}, - [884] = {.lex_state = 26}, + [884] = {.lex_state = 11}, [885] = {.lex_state = 10}, - [886] = {.lex_state = 10}, + [886] = {.lex_state = 26}, [887] = {.lex_state = 26}, [888] = {.lex_state = 26}, - [889] = {.lex_state = 11}, + [889] = {.lex_state = 26}, [890] = {.lex_state = 26}, [891] = {.lex_state = 26}, [892] = {.lex_state = 26}, - [893] = {.lex_state = 11}, - [894] = {.lex_state = 11}, - [895] = {.lex_state = 26}, + [893] = {.lex_state = 26}, + [894] = {.lex_state = 26}, + [895] = {.lex_state = 11}, [896] = {.lex_state = 11}, [897] = {.lex_state = 26}, - [898] = {.lex_state = 0}, + [898] = {.lex_state = 11}, [899] = {.lex_state = 11}, - [900] = {.lex_state = 11}, - [901] = {.lex_state = 11}, + [900] = {.lex_state = 26}, + [901] = {.lex_state = 26}, [902] = {.lex_state = 11}, [903] = {.lex_state = 11}, [904] = {.lex_state = 11}, [905] = {.lex_state = 11}, - [906] = {.lex_state = 26}, - [907] = {.lex_state = 26}, + [906] = {.lex_state = 11}, + [907] = {.lex_state = 11}, [908] = {.lex_state = 26}, - [909] = {.lex_state = 11}, - [910] = {.lex_state = 10}, + [909] = {.lex_state = 26}, + [910] = {.lex_state = 26}, [911] = {.lex_state = 11}, - [912] = {.lex_state = 10}, - [913] = {.lex_state = 11}, - [914] = {.lex_state = 11}, - [915] = {.lex_state = 10}, - [916] = {.lex_state = 11}, + [912] = {.lex_state = 26}, + [913] = {.lex_state = 10}, + [914] = {.lex_state = 10}, + [915] = {.lex_state = 11}, + [916] = {.lex_state = 10}, [917] = {.lex_state = 11}, - [918] = {.lex_state = 26}, - [919] = {.lex_state = 11}, - [920] = {.lex_state = 26}, + [918] = {.lex_state = 11}, + [919] = {.lex_state = 0}, + [920] = {.lex_state = 11}, [921] = {.lex_state = 11}, - [922] = {.lex_state = 26}, + [922] = {.lex_state = 11}, [923] = {.lex_state = 11}, [924] = {.lex_state = 11}, [925] = {.lex_state = 26}, - [926] = {.lex_state = 26}, + [926] = {.lex_state = 11}, [927] = {.lex_state = 26}, - [928] = {.lex_state = 26}, - [929] = {.lex_state = 11}, - [930] = {.lex_state = 26}, + [928] = {.lex_state = 10}, + [929] = {.lex_state = 0}, + [930] = {.lex_state = 0}, [931] = {.lex_state = 26}, [932] = {.lex_state = 26}, [933] = {.lex_state = 26}, [934] = {.lex_state = 26}, [935] = {.lex_state = 26}, - [936] = {.lex_state = 0}, + [936] = {.lex_state = 26}, [937] = {.lex_state = 26}, [938] = {.lex_state = 26}, [939] = {.lex_state = 26}, [940] = {.lex_state = 26}, [941] = {.lex_state = 26}, [942] = {.lex_state = 26}, - [943] = {.lex_state = 11}, + [943] = {.lex_state = 26}, [944] = {.lex_state = 26}, [945] = {.lex_state = 26}, [946] = {.lex_state = 26}, - [947] = {.lex_state = 11}, - [948] = {.lex_state = 26}, + [947] = {.lex_state = 0}, + [948] = {.lex_state = 11}, [949] = {.lex_state = 26}, [950] = {.lex_state = 26}, - [951] = {.lex_state = 0}, + [951] = {.lex_state = 26}, [952] = {.lex_state = 26}, [953] = {.lex_state = 26}, [954] = {.lex_state = 26}, - [955] = {.lex_state = 11}, + [955] = {.lex_state = 26}, [956] = {.lex_state = 26}, - [957] = {.lex_state = 10}, + [957] = {.lex_state = 26}, [958] = {.lex_state = 26}, - [959] = {.lex_state = 26}, - [960] = {.lex_state = 26}, - [961] = {.lex_state = 26}, - [962] = {.lex_state = 0}, + [959] = {.lex_state = 11}, + [960] = {.lex_state = 11}, + [961] = {.lex_state = 11}, + [962] = {.lex_state = 26}, [963] = {.lex_state = 26}, [964] = {.lex_state = 26}, - [965] = {.lex_state = 0}, + [965] = {.lex_state = 26}, [966] = {.lex_state = 26}, - [967] = {.lex_state = 10}, + [967] = {.lex_state = 26}, [968] = {.lex_state = 11}, [969] = {.lex_state = 26}, [970] = {.lex_state = 26}, - [971] = {.lex_state = 26}, + [971] = {.lex_state = 10}, [972] = {.lex_state = 26}, [973] = {.lex_state = 26}, - [974] = {.lex_state = 11}, + [974] = {.lex_state = 0}, [975] = {.lex_state = 26}, - [976] = {.lex_state = 10}, - [977] = {.lex_state = 10}, - [978] = {.lex_state = 10}, + [976] = {.lex_state = 26}, + [977] = {.lex_state = 26}, + [978] = {.lex_state = 11}, [979] = {.lex_state = 26}, - [980] = {.lex_state = 11}, + [980] = {.lex_state = 0}, [981] = {.lex_state = 10}, - [982] = {.lex_state = 11}, + [982] = {.lex_state = 10}, [983] = {.lex_state = 10}, - [984] = {.lex_state = 11}, + [984] = {.lex_state = 10}, [985] = {.lex_state = 26}, - [986] = {.lex_state = 10}, + [986] = {.lex_state = 26}, [987] = {.lex_state = 26}, - [988] = {.lex_state = 26}, + [988] = {.lex_state = 10}, [989] = {.lex_state = 26}, - [990] = {.lex_state = 11}, - [991] = {.lex_state = 0}, + [990] = {.lex_state = 10}, + [991] = {.lex_state = 10}, [992] = {.lex_state = 26}, - [993] = {.lex_state = 10}, - [994] = {.lex_state = 11}, + [993] = {.lex_state = 26}, + [994] = {.lex_state = 26}, [995] = {.lex_state = 10}, [996] = {.lex_state = 26}, [997] = {.lex_state = 26}, - [998] = {.lex_state = 26}, + [998] = {.lex_state = 0}, [999] = {.lex_state = 10}, - [1000] = {.lex_state = 26}, - [1001] = {.lex_state = 26}, - [1002] = {.lex_state = 26}, - [1003] = {.lex_state = 26}, - [1004] = {.lex_state = 10}, + [1000] = {.lex_state = 11}, + [1001] = {.lex_state = 10}, + [1002] = {.lex_state = 11}, + [1003] = {.lex_state = 10}, + [1004] = {.lex_state = 26}, [1005] = {.lex_state = 26}, - [1006] = {.lex_state = 11}, - [1007] = {.lex_state = 10}, + [1006] = {.lex_state = 26}, + [1007] = {.lex_state = 26}, [1008] = {.lex_state = 10}, [1009] = {.lex_state = 10}, - [1010] = {.lex_state = 26}, - [1011] = {.lex_state = 26}, - [1012] = {.lex_state = 10}, + [1010] = {.lex_state = 11}, + [1011] = {.lex_state = 11}, + [1012] = {.lex_state = 26}, [1013] = {.lex_state = 26}, [1014] = {.lex_state = 26}, [1015] = {.lex_state = 26}, - [1016] = {.lex_state = 10}, + [1016] = {.lex_state = 11}, [1017] = {.lex_state = 26}, - [1018] = {.lex_state = 26}, - [1019] = {.lex_state = 26}, - [1020] = {.lex_state = 11}, - [1021] = {.lex_state = 0}, - [1022] = {.lex_state = 10}, - [1023] = {.lex_state = 10}, - [1024] = {.lex_state = 26}, - [1025] = {.lex_state = 26}, - [1026] = {.lex_state = 26}, - [1027] = {.lex_state = 10}, + [1018] = {.lex_state = 11}, + [1019] = {.lex_state = 10}, + [1020] = {.lex_state = 0}, + [1021] = {.lex_state = 10}, + [1022] = {.lex_state = 26}, + [1023] = {.lex_state = 26}, + [1024] = {.lex_state = 10}, + [1025] = {.lex_state = 11}, + [1026] = {.lex_state = 10}, + [1027] = {.lex_state = 26}, [1028] = {.lex_state = 26}, - [1029] = {.lex_state = 26}, + [1029] = {.lex_state = 10}, [1030] = {.lex_state = 26}, [1031] = {.lex_state = 26}, [1032] = {.lex_state = 26}, - [1033] = {.lex_state = 26}, + [1033] = {.lex_state = 10}, [1034] = {.lex_state = 10}, - [1035] = {.lex_state = 10}, + [1035] = {.lex_state = 26}, [1036] = {.lex_state = 26}, [1037] = {.lex_state = 26}, - [1038] = {.lex_state = 0}, - [1039] = {.lex_state = 10}, + [1038] = {.lex_state = 26}, + [1039] = {.lex_state = 0}, [1040] = {.lex_state = 26}, [1041] = {.lex_state = 26}, - [1042] = {.lex_state = 26}, + [1042] = {.lex_state = 10}, [1043] = {.lex_state = 26}, - [1044] = {.lex_state = 10}, - [1045] = {.lex_state = 26}, + [1044] = {.lex_state = 26}, + [1045] = {.lex_state = 10}, [1046] = {.lex_state = 26}, - [1047] = {.lex_state = 10}, + [1047] = {.lex_state = 26}, [1048] = {.lex_state = 26}, [1049] = {.lex_state = 26}, [1050] = {.lex_state = 26}, [1051] = {.lex_state = 26}, [1052] = {.lex_state = 26}, - [1053] = {.lex_state = 26}, - [1054] = {.lex_state = 0}, + [1053] = {.lex_state = 10}, + [1054] = {.lex_state = 26}, [1055] = {.lex_state = 26}, [1056] = {.lex_state = 26}, [1057] = {.lex_state = 26}, [1058] = {.lex_state = 26}, - [1059] = {.lex_state = 26}, + [1059] = {.lex_state = 11}, [1060] = {.lex_state = 26}, [1061] = {.lex_state = 26}, [1062] = {.lex_state = 26}, - [1063] = {.lex_state = 26}, - [1064] = {.lex_state = 0}, + [1063] = {.lex_state = 0}, + [1064] = {.lex_state = 26}, [1065] = {.lex_state = 26}, [1066] = {.lex_state = 26}, [1067] = {.lex_state = 26}, @@ -8539,7 +8541,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1070] = {.lex_state = 26}, [1071] = {.lex_state = 26}, [1072] = {.lex_state = 26}, - [1073] = {.lex_state = 26}, + [1073] = {.lex_state = 0}, [1074] = {.lex_state = 26}, [1075] = {.lex_state = 26}, [1076] = {.lex_state = 26}, @@ -8559,47 +8561,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1090] = {.lex_state = 26}, [1091] = {.lex_state = 26}, [1092] = {.lex_state = 26}, - [1093] = {.lex_state = 11}, + [1093] = {.lex_state = 26}, [1094] = {.lex_state = 26}, [1095] = {.lex_state = 26}, [1096] = {.lex_state = 26}, - [1097] = {.lex_state = 0}, + [1097] = {.lex_state = 26}, [1098] = {.lex_state = 26}, [1099] = {.lex_state = 26}, [1100] = {.lex_state = 26}, [1101] = {.lex_state = 26}, - [1102] = {.lex_state = 26}, + [1102] = {.lex_state = 0}, [1103] = {.lex_state = 26}, [1104] = {.lex_state = 26}, - [1105] = {.lex_state = 0}, + [1105] = {.lex_state = 26}, [1106] = {.lex_state = 26}, [1107] = {.lex_state = 26}, [1108] = {.lex_state = 26}, [1109] = {.lex_state = 26}, [1110] = {.lex_state = 26}, [1111] = {.lex_state = 26}, - [1112] = {.lex_state = 26}, + [1112] = {.lex_state = 0}, [1113] = {.lex_state = 26}, [1114] = {.lex_state = 26}, [1115] = {.lex_state = 26}, [1116] = {.lex_state = 26}, - [1117] = {.lex_state = 0}, - [1118] = {.lex_state = 26}, + [1117] = {.lex_state = 26}, + [1118] = {.lex_state = 0}, [1119] = {.lex_state = 26}, - [1120] = {.lex_state = 0}, + [1120] = {.lex_state = 26}, [1121] = {.lex_state = 26}, [1122] = {.lex_state = 26}, - [1123] = {.lex_state = 26}, + [1123] = {.lex_state = 11}, [1124] = {.lex_state = 26}, - [1125] = {.lex_state = 26}, - [1126] = {.lex_state = 26}, + [1125] = {.lex_state = 0}, + [1126] = {.lex_state = 0}, [1127] = {.lex_state = 26}, - [1128] = {.lex_state = 0}, + [1128] = {.lex_state = 26}, [1129] = {.lex_state = 26}, [1130] = {.lex_state = 26}, [1131] = {.lex_state = 26}, [1132] = {.lex_state = 26}, - [1133] = {.lex_state = 11}, + [1133] = {.lex_state = 26}, [1134] = {.lex_state = 26}, [1135] = {.lex_state = 26}, [1136] = {.lex_state = 26}, @@ -8608,129 +8610,129 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1139] = {.lex_state = 26}, [1140] = {.lex_state = 26}, [1141] = {.lex_state = 0}, - [1142] = {.lex_state = 0}, + [1142] = {.lex_state = 26}, [1143] = {.lex_state = 26}, [1144] = {.lex_state = 26}, [1145] = {.lex_state = 26}, - [1146] = {.lex_state = 0}, + [1146] = {.lex_state = 26}, [1147] = {.lex_state = 26}, - [1148] = {.lex_state = 0}, - [1149] = {.lex_state = 0}, - [1150] = {.lex_state = 26}, - [1151] = {.lex_state = 26}, + [1148] = {.lex_state = 26}, + [1149] = {.lex_state = 26}, + [1150] = {.lex_state = 0}, + [1151] = {.lex_state = 0}, [1152] = {.lex_state = 26}, - [1153] = {.lex_state = 26}, + [1153] = {.lex_state = 0}, [1154] = {.lex_state = 26}, [1155] = {.lex_state = 26}, [1156] = {.lex_state = 26}, [1157] = {.lex_state = 26}, - [1158] = {.lex_state = 0}, + [1158] = {.lex_state = 26}, [1159] = {.lex_state = 26}, - [1160] = {.lex_state = 26}, - [1161] = {.lex_state = 0}, + [1160] = {.lex_state = 0}, + [1161] = {.lex_state = 26}, [1162] = {.lex_state = 26}, [1163] = {.lex_state = 26}, - [1164] = {.lex_state = 26}, - [1165] = {.lex_state = 0}, - [1166] = {.lex_state = 0}, + [1164] = {.lex_state = 0}, + [1165] = {.lex_state = 26}, + [1166] = {.lex_state = 26}, [1167] = {.lex_state = 26}, [1168] = {.lex_state = 26}, - [1169] = {.lex_state = 0}, - [1170] = {.lex_state = 0}, + [1169] = {.lex_state = 26}, + [1170] = {.lex_state = 26}, [1171] = {.lex_state = 0}, [1172] = {.lex_state = 26}, [1173] = {.lex_state = 26}, [1174] = {.lex_state = 26}, - [1175] = {.lex_state = 26}, - [1176] = {.lex_state = 26}, + [1175] = {.lex_state = 0}, + [1176] = {.lex_state = 0}, [1177] = {.lex_state = 26}, [1178] = {.lex_state = 26}, - [1179] = {.lex_state = 26}, - [1180] = {.lex_state = 26}, + [1179] = {.lex_state = 0}, + [1180] = {.lex_state = 0}, [1181] = {.lex_state = 0}, [1182] = {.lex_state = 26}, - [1183] = {.lex_state = 26}, - [1184] = {.lex_state = 26}, + [1183] = {.lex_state = 0}, + [1184] = {.lex_state = 0}, [1185] = {.lex_state = 26}, [1186] = {.lex_state = 26}, [1187] = {.lex_state = 26}, - [1188] = {.lex_state = 26}, - [1189] = {.lex_state = 0}, + [1188] = {.lex_state = 0}, + [1189] = {.lex_state = 26}, [1190] = {.lex_state = 26}, [1191] = {.lex_state = 0}, - [1192] = {.lex_state = 26}, - [1193] = {.lex_state = 0}, - [1194] = {.lex_state = 0}, + [1192] = {.lex_state = 0}, + [1193] = {.lex_state = 26}, + [1194] = {.lex_state = 26}, [1195] = {.lex_state = 26}, [1196] = {.lex_state = 26}, [1197] = {.lex_state = 0}, - [1198] = {.lex_state = 26}, - [1199] = {.lex_state = 0}, + [1198] = {.lex_state = 0}, + [1199] = {.lex_state = 26}, [1200] = {.lex_state = 26}, - [1201] = {.lex_state = 0}, - [1202] = {.lex_state = 26}, + [1201] = {.lex_state = 26}, + [1202] = {.lex_state = 0}, [1203] = {.lex_state = 0}, - [1204] = {.lex_state = 26}, + [1204] = {.lex_state = 0}, [1205] = {.lex_state = 26}, [1206] = {.lex_state = 26}, [1207] = {.lex_state = 26}, [1208] = {.lex_state = 26}, - [1209] = {.lex_state = 26}, + [1209] = {.lex_state = 0}, [1210] = {.lex_state = 0}, - [1211] = {.lex_state = 26}, - [1212] = {.lex_state = 26}, + [1211] = {.lex_state = 0}, + [1212] = {.lex_state = 0}, [1213] = {.lex_state = 26}, [1214] = {.lex_state = 26}, - [1215] = {.lex_state = 0}, + [1215] = {.lex_state = 26}, [1216] = {.lex_state = 26}, [1217] = {.lex_state = 26}, - [1218] = {.lex_state = 26}, + [1218] = {.lex_state = 0}, [1219] = {.lex_state = 26}, [1220] = {.lex_state = 0}, - [1221] = {.lex_state = 0}, + [1221] = {.lex_state = 26}, [1222] = {.lex_state = 26}, - [1223] = {.lex_state = 0}, + [1223] = {.lex_state = 26}, [1224] = {.lex_state = 0}, - [1225] = {.lex_state = 26}, + [1225] = {.lex_state = 0}, [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 26}, + [1227] = {.lex_state = 0}, [1228] = {.lex_state = 26}, - [1229] = {.lex_state = 26}, + [1229] = {.lex_state = 0}, [1230] = {.lex_state = 26}, [1231] = {.lex_state = 26}, [1232] = {.lex_state = 26}, [1233] = {.lex_state = 26}, [1234] = {.lex_state = 26}, - [1235] = {.lex_state = 26}, + [1235] = {.lex_state = 0}, [1236] = {.lex_state = 26}, [1237] = {.lex_state = 26}, [1238] = {.lex_state = 26}, - [1239] = {.lex_state = 26}, + [1239] = {.lex_state = 0}, [1240] = {.lex_state = 26}, [1241] = {.lex_state = 26}, - [1242] = {.lex_state = 0}, + [1242] = {.lex_state = 26}, [1243] = {.lex_state = 26}, [1244] = {.lex_state = 26}, [1245] = {.lex_state = 26}, [1246] = {.lex_state = 26}, [1247] = {.lex_state = 26}, [1248] = {.lex_state = 26}, - [1249] = {.lex_state = 26}, + [1249] = {.lex_state = 0}, [1250] = {.lex_state = 26}, [1251] = {.lex_state = 26}, [1252] = {.lex_state = 26}, [1253] = {.lex_state = 26}, - [1254] = {.lex_state = 26}, + [1254] = {.lex_state = 0}, [1255] = {.lex_state = 26}, [1256] = {.lex_state = 26}, - [1257] = {.lex_state = 26}, - [1258] = {.lex_state = 0}, - [1259] = {.lex_state = 0}, - [1260] = {.lex_state = 26}, - [1261] = {.lex_state = 0}, - [1262] = {.lex_state = 0}, + [1257] = {.lex_state = 0}, + [1258] = {.lex_state = 26}, + [1259] = {.lex_state = 26}, + [1260] = {.lex_state = 0}, + [1261] = {.lex_state = 26}, + [1262] = {.lex_state = 26}, [1263] = {.lex_state = 26}, - [1264] = {.lex_state = 0}, + [1264] = {.lex_state = 26}, [1265] = {.lex_state = 26}, [1266] = {.lex_state = 26}, [1267] = {.lex_state = 26}, @@ -8742,22 +8744,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1273] = {.lex_state = 26}, [1274] = {.lex_state = 26}, [1275] = {.lex_state = 26}, - [1276] = {.lex_state = 0}, + [1276] = {.lex_state = 26}, [1277] = {.lex_state = 26}, - [1278] = {.lex_state = 0}, + [1278] = {.lex_state = 26}, [1279] = {.lex_state = 26}, - [1280] = {.lex_state = 0}, + [1280] = {.lex_state = 26}, [1281] = {.lex_state = 0}, [1282] = {.lex_state = 26}, [1283] = {.lex_state = 26}, - [1284] = {.lex_state = 26}, + [1284] = {.lex_state = 0}, [1285] = {.lex_state = 26}, [1286] = {.lex_state = 26}, - [1287] = {.lex_state = 0}, + [1287] = {.lex_state = 26}, [1288] = {.lex_state = 26}, [1289] = {.lex_state = 26}, - [1290] = {.lex_state = 26}, - [1291] = {.lex_state = 0}, + [1290] = {.lex_state = 0}, + [1291] = {.lex_state = 26}, [1292] = {.lex_state = 26}, [1293] = {.lex_state = 26}, [1294] = {.lex_state = 26}, @@ -8765,30 +8767,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1296] = {.lex_state = 26}, [1297] = {.lex_state = 26}, [1298] = {.lex_state = 26}, - [1299] = {.lex_state = 0}, - [1300] = {.lex_state = 0}, - [1301] = {.lex_state = 0}, - [1302] = {.lex_state = 26}, - [1303] = {.lex_state = 0}, + [1299] = {.lex_state = 26}, + [1300] = {.lex_state = 26}, + [1301] = {.lex_state = 26}, + [1302] = {.lex_state = 0}, + [1303] = {.lex_state = 26}, [1304] = {.lex_state = 0}, - [1305] = {.lex_state = 0}, - [1306] = {.lex_state = 0}, + [1305] = {.lex_state = 26}, + [1306] = {.lex_state = 26}, [1307] = {.lex_state = 26}, - [1308] = {.lex_state = 26}, - [1309] = {.lex_state = 0}, + [1308] = {.lex_state = 0}, + [1309] = {.lex_state = 26}, [1310] = {.lex_state = 0}, [1311] = {.lex_state = 26}, [1312] = {.lex_state = 26}, [1313] = {.lex_state = 26}, [1314] = {.lex_state = 26}, - [1315] = {.lex_state = 0}, + [1315] = {.lex_state = 26}, [1316] = {.lex_state = 26}, - [1317] = {.lex_state = 26}, - [1318] = {.lex_state = 26}, + [1317] = {.lex_state = 0}, + [1318] = {.lex_state = 0}, [1319] = {.lex_state = 0}, [1320] = {.lex_state = 26}, [1321] = {.lex_state = 26}, - [1322] = {.lex_state = 0}, + [1322] = {.lex_state = 26}, [1323] = {.lex_state = 26}, [1324] = {.lex_state = 26}, [1325] = {.lex_state = 26}, @@ -8797,17 +8799,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1328] = {.lex_state = 26}, [1329] = {.lex_state = 26}, [1330] = {.lex_state = 26}, - [1331] = {.lex_state = 26}, + [1331] = {.lex_state = 0}, [1332] = {.lex_state = 26}, [1333] = {.lex_state = 26}, - [1334] = {.lex_state = 26}, + [1334] = {.lex_state = 0}, [1335] = {.lex_state = 26}, - [1336] = {.lex_state = 0}, + [1336] = {.lex_state = 26}, [1337] = {.lex_state = 26}, [1338] = {.lex_state = 0}, - [1339] = {.lex_state = 26}, + [1339] = {.lex_state = 0}, [1340] = {.lex_state = 26}, - [1341] = {.lex_state = 26}, + [1341] = {.lex_state = 0}, [1342] = {.lex_state = 26}, [1343] = {.lex_state = 26}, [1344] = {.lex_state = 26}, @@ -8826,10 +8828,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1357] = {.lex_state = 26}, [1358] = {.lex_state = 26}, [1359] = {.lex_state = 26}, - [1360] = {.lex_state = 0}, + [1360] = {.lex_state = 26}, [1361] = {.lex_state = 26}, [1362] = {.lex_state = 26}, - [1363] = {.lex_state = 0}, + [1363] = {.lex_state = 26}, [1364] = {.lex_state = 26}, [1365] = {.lex_state = 26}, [1366] = {.lex_state = 26}, @@ -8839,44 +8841,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1370] = {.lex_state = 26}, [1371] = {.lex_state = 26}, [1372] = {.lex_state = 26}, - [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 0}, - [1375] = {.lex_state = 26}, - [1376] = {.lex_state = 0}, + [1373] = {.lex_state = 26}, + [1374] = {.lex_state = 26}, + [1375] = {.lex_state = 0}, + [1376] = {.lex_state = 26}, [1377] = {.lex_state = 0}, [1378] = {.lex_state = 26}, [1379] = {.lex_state = 26}, - [1380] = {.lex_state = 0}, + [1380] = {.lex_state = 26}, [1381] = {.lex_state = 26}, [1382] = {.lex_state = 0}, - [1383] = {.lex_state = 26}, + [1383] = {.lex_state = 0}, [1384] = {.lex_state = 26}, - [1385] = {.lex_state = 0}, + [1385] = {.lex_state = 26}, [1386] = {.lex_state = 0}, - [1387] = {.lex_state = 26}, + [1387] = {.lex_state = 0}, [1388] = {.lex_state = 0}, - [1389] = {.lex_state = 26}, - [1390] = {.lex_state = 0}, - [1391] = {.lex_state = 26}, + [1389] = {.lex_state = 0}, + [1390] = {.lex_state = 26}, + [1391] = {.lex_state = 0}, [1392] = {.lex_state = 26}, [1393] = {.lex_state = 0}, - [1394] = {.lex_state = 0}, + [1394] = {.lex_state = 26}, [1395] = {.lex_state = 26}, [1396] = {.lex_state = 0}, [1397] = {.lex_state = 26}, [1398] = {.lex_state = 26}, [1399] = {.lex_state = 26}, - [1400] = {.lex_state = 0}, + [1400] = {.lex_state = 26}, [1401] = {.lex_state = 26}, [1402] = {.lex_state = 26}, [1403] = {.lex_state = 26}, - [1404] = {.lex_state = 0}, + [1404] = {.lex_state = 26}, [1405] = {.lex_state = 26}, - [1406] = {.lex_state = 26}, + [1406] = {.lex_state = 0}, [1407] = {.lex_state = 26}, [1408] = {.lex_state = 26}, [1409] = {.lex_state = 0}, - [1410] = {.lex_state = 26}, + [1410] = {.lex_state = 0}, [1411] = {.lex_state = 26}, [1412] = {.lex_state = 26}, [1413] = {.lex_state = 26}, @@ -8888,63 +8890,63 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1419] = {.lex_state = 26}, [1420] = {.lex_state = 26}, [1421] = {.lex_state = 26}, - [1422] = {.lex_state = 0}, + [1422] = {.lex_state = 26}, [1423] = {.lex_state = 26}, - [1424] = {.lex_state = 26}, - [1425] = {.lex_state = 26}, - [1426] = {.lex_state = 26}, - [1427] = {.lex_state = 26}, + [1424] = {.lex_state = 0}, + [1425] = {.lex_state = 0}, + [1426] = {.lex_state = 0}, + [1427] = {.lex_state = 0}, [1428] = {.lex_state = 26}, [1429] = {.lex_state = 26}, [1430] = {.lex_state = 26}, [1431] = {.lex_state = 26}, - [1432] = {.lex_state = 0}, + [1432] = {.lex_state = 26}, [1433] = {.lex_state = 26}, [1434] = {.lex_state = 26}, [1435] = {.lex_state = 26}, - [1436] = {.lex_state = 0}, + [1436] = {.lex_state = 26}, [1437] = {.lex_state = 26}, [1438] = {.lex_state = 26}, [1439] = {.lex_state = 26}, - [1440] = {.lex_state = 0}, + [1440] = {.lex_state = 26}, [1441] = {.lex_state = 26}, - [1442] = {.lex_state = 0}, + [1442] = {.lex_state = 26}, [1443] = {.lex_state = 0}, [1444] = {.lex_state = 26}, [1445] = {.lex_state = 26}, - [1446] = {.lex_state = 26}, - [1447] = {.lex_state = 0}, + [1446] = {.lex_state = 0}, + [1447] = {.lex_state = 26}, [1448] = {.lex_state = 26}, - [1449] = {.lex_state = 0}, + [1449] = {.lex_state = 26}, [1450] = {.lex_state = 26}, [1451] = {.lex_state = 26}, [1452] = {.lex_state = 26}, - [1453] = {.lex_state = 26}, - [1454] = {.lex_state = 26}, + [1453] = {.lex_state = 0}, + [1454] = {.lex_state = 0}, [1455] = {.lex_state = 26}, [1456] = {.lex_state = 26}, [1457] = {.lex_state = 26}, [1458] = {.lex_state = 26}, [1459] = {.lex_state = 26}, - [1460] = {.lex_state = 26}, + [1460] = {.lex_state = 0}, [1461] = {.lex_state = 26}, [1462] = {.lex_state = 26}, [1463] = {.lex_state = 26}, - [1464] = {.lex_state = 26}, + [1464] = {.lex_state = 0}, [1465] = {.lex_state = 26}, - [1466] = {.lex_state = 26}, - [1467] = {.lex_state = 0}, + [1466] = {.lex_state = 0}, + [1467] = {.lex_state = 26}, [1468] = {.lex_state = 26}, [1469] = {.lex_state = 26}, [1470] = {.lex_state = 26}, [1471] = {.lex_state = 26}, [1472] = {.lex_state = 26}, [1473] = {.lex_state = 26}, - [1474] = {.lex_state = 0}, - [1475] = {.lex_state = 0}, + [1474] = {.lex_state = 26}, + [1475] = {.lex_state = 26}, [1476] = {.lex_state = 26}, - [1477] = {.lex_state = 0}, - [1478] = {.lex_state = 26}, + [1477] = {.lex_state = 26}, + [1478] = {.lex_state = 0}, [1479] = {.lex_state = 26}, [1480] = {.lex_state = 26}, [1481] = {.lex_state = 26}, @@ -8952,39 +8954,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1483] = {.lex_state = 26}, [1484] = {.lex_state = 26}, [1485] = {.lex_state = 26}, - [1486] = {.lex_state = 26}, + [1486] = {.lex_state = 0}, [1487] = {.lex_state = 26}, - [1488] = {.lex_state = 26}, - [1489] = {.lex_state = 26}, + [1488] = {.lex_state = 0}, + [1489] = {.lex_state = 0}, [1490] = {.lex_state = 26}, [1491] = {.lex_state = 26}, [1492] = {.lex_state = 26}, [1493] = {.lex_state = 26}, [1494] = {.lex_state = 26}, - [1495] = {.lex_state = 0}, - [1496] = {.lex_state = 0}, + [1495] = {.lex_state = 26}, + [1496] = {.lex_state = 26}, [1497] = {.lex_state = 0}, - [1498] = {.lex_state = 0}, + [1498] = {.lex_state = 26}, [1499] = {.lex_state = 26}, - [1500] = {.lex_state = 26}, + [1500] = {.lex_state = 0}, [1501] = {.lex_state = 26}, [1502] = {.lex_state = 26}, - [1503] = {.lex_state = 26}, - [1504] = {.lex_state = 26}, + [1503] = {.lex_state = 0}, + [1504] = {.lex_state = 0}, [1505] = {.lex_state = 26}, [1506] = {.lex_state = 26}, [1507] = {.lex_state = 0}, - [1508] = {.lex_state = 0}, - [1509] = {.lex_state = 26}, - [1510] = {.lex_state = 0}, + [1508] = {.lex_state = 26}, + [1509] = {.lex_state = 0}, + [1510] = {.lex_state = 26}, [1511] = {.lex_state = 26}, [1512] = {.lex_state = 26}, - [1513] = {.lex_state = 26}, + [1513] = {.lex_state = 0}, [1514] = {.lex_state = 26}, [1515] = {.lex_state = 26}, [1516] = {.lex_state = 26}, - [1517] = {.lex_state = 26}, - [1518] = {.lex_state = 0}, + [1517] = {.lex_state = 0}, + [1518] = {.lex_state = 26}, [1519] = {.lex_state = 26}, [1520] = {.lex_state = 26}, [1521] = {.lex_state = 26}, @@ -8993,7 +8995,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1524] = {.lex_state = 26}, [1525] = {.lex_state = 26}, [1526] = {.lex_state = 26}, - [1527] = {.lex_state = 0}, + [1527] = {.lex_state = 26}, [1528] = {.lex_state = 26}, [1529] = {.lex_state = 26}, [1530] = {.lex_state = 26}, @@ -9004,10 +9006,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1535] = {.lex_state = 26}, [1536] = {.lex_state = 26}, [1537] = {.lex_state = 26}, - [1538] = {.lex_state = 26}, - [1539] = {.lex_state = 26}, + [1538] = {.lex_state = 0}, + [1539] = {.lex_state = 0}, [1540] = {.lex_state = 26}, - [1541] = {.lex_state = 26}, + [1541] = {.lex_state = 0}, [1542] = {.lex_state = 26}, [1543] = {.lex_state = 26}, [1544] = {.lex_state = 26}, @@ -9021,7 +9023,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1552] = {.lex_state = 26}, [1553] = {.lex_state = 26}, [1554] = {.lex_state = 26}, - [1555] = {.lex_state = 26}, + [1555] = {.lex_state = 0}, [1556] = {.lex_state = 26}, [1557] = {.lex_state = 26}, [1558] = {.lex_state = 26}, @@ -9029,25 +9031,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1560] = {.lex_state = 26}, [1561] = {.lex_state = 26}, [1562] = {.lex_state = 26}, - [1563] = {.lex_state = 26}, + [1563] = {.lex_state = 0}, [1564] = {.lex_state = 26}, [1565] = {.lex_state = 26}, [1566] = {.lex_state = 26}, - [1567] = {.lex_state = 26}, + [1567] = {.lex_state = 0}, [1568] = {.lex_state = 26}, [1569] = {.lex_state = 26}, - [1570] = {.lex_state = 26}, + [1570] = {.lex_state = 0}, [1571] = {.lex_state = 26}, [1572] = {.lex_state = 26}, [1573] = {.lex_state = 26}, - [1574] = {.lex_state = 26}, + [1574] = {.lex_state = 0}, [1575] = {.lex_state = 26}, [1576] = {.lex_state = 26}, [1577] = {.lex_state = 26}, [1578] = {.lex_state = 26}, [1579] = {.lex_state = 26}, [1580] = {.lex_state = 26}, - [1581] = {.lex_state = 0}, + [1581] = {.lex_state = 26}, [1582] = {.lex_state = 26}, [1583] = {.lex_state = 0}, [1584] = {.lex_state = 26}, @@ -9059,7 +9061,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1590] = {.lex_state = 26}, [1591] = {.lex_state = 26}, [1592] = {.lex_state = 26}, - [1593] = {.lex_state = 26}, + [1593] = {.lex_state = 0}, [1594] = {.lex_state = 26}, [1595] = {.lex_state = 26}, [1596] = {.lex_state = 26}, @@ -9067,28 +9069,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1598] = {.lex_state = 26}, [1599] = {.lex_state = 26}, [1600] = {.lex_state = 26}, - [1601] = {.lex_state = 0}, - [1602] = {.lex_state = 0}, - [1603] = {.lex_state = 26}, + [1601] = {.lex_state = 26}, + [1602] = {.lex_state = 26}, + [1603] = {.lex_state = 0}, [1604] = {.lex_state = 0}, - [1605] = {.lex_state = 0}, - [1606] = {.lex_state = 0}, + [1605] = {.lex_state = 26}, + [1606] = {.lex_state = 26}, [1607] = {.lex_state = 26}, [1608] = {.lex_state = 0}, [1609] = {.lex_state = 26}, [1610] = {.lex_state = 26}, - [1611] = {.lex_state = 26}, - [1612] = {.lex_state = 26}, + [1611] = {.lex_state = 0}, + [1612] = {.lex_state = 0}, [1613] = {.lex_state = 26}, [1614] = {.lex_state = 26}, [1615] = {.lex_state = 26}, [1616] = {.lex_state = 26}, [1617] = {.lex_state = 26}, [1618] = {.lex_state = 26}, - [1619] = {.lex_state = 26}, + [1619] = {.lex_state = 0}, [1620] = {.lex_state = 26}, [1621] = {.lex_state = 26}, - [1622] = {.lex_state = 26}, + [1622] = {.lex_state = 0}, [1623] = {.lex_state = 26}, [1624] = {.lex_state = 26}, [1625] = {.lex_state = 26}, @@ -9101,56 +9103,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1632] = {.lex_state = 26}, [1633] = {.lex_state = 26}, [1634] = {.lex_state = 26}, - [1635] = {.lex_state = 26}, + [1635] = {.lex_state = 0}, [1636] = {.lex_state = 26}, [1637] = {.lex_state = 26}, [1638] = {.lex_state = 26}, [1639] = {.lex_state = 26}, [1640] = {.lex_state = 26}, [1641] = {.lex_state = 26}, - [1642] = {.lex_state = 26}, + [1642] = {.lex_state = 0}, [1643] = {.lex_state = 26}, - [1644] = {.lex_state = 0}, - [1645] = {.lex_state = 0}, + [1644] = {.lex_state = 26}, + [1645] = {.lex_state = 26}, [1646] = {.lex_state = 26}, - [1647] = {.lex_state = 26}, + [1647] = {.lex_state = 0}, [1648] = {.lex_state = 26}, - [1649] = {.lex_state = 0}, - [1650] = {.lex_state = 0}, + [1649] = {.lex_state = 26}, + [1650] = {.lex_state = 26}, [1651] = {.lex_state = 26}, - [1652] = {.lex_state = 26}, - [1653] = {.lex_state = 26}, + [1652] = {.lex_state = 0}, + [1653] = {.lex_state = 0}, [1654] = {.lex_state = 26}, [1655] = {.lex_state = 26}, [1656] = {.lex_state = 26}, [1657] = {.lex_state = 26}, [1658] = {.lex_state = 26}, - [1659] = {.lex_state = 0}, + [1659] = {.lex_state = 26}, [1660] = {.lex_state = 26}, - [1661] = {.lex_state = 26}, - [1662] = {.lex_state = 0}, + [1661] = {.lex_state = 0}, + [1662] = {.lex_state = 26}, [1663] = {.lex_state = 26}, - [1664] = {.lex_state = 26}, - [1665] = {.lex_state = 26}, + [1664] = {.lex_state = 0}, + [1665] = {.lex_state = 0}, [1666] = {.lex_state = 26}, [1667] = {.lex_state = 26}, [1668] = {.lex_state = 26}, [1669] = {.lex_state = 0}, [1670] = {.lex_state = 26}, [1671] = {.lex_state = 26}, - [1672] = {.lex_state = 0}, + [1672] = {.lex_state = 26}, [1673] = {.lex_state = 26}, [1674] = {.lex_state = 26}, - [1675] = {.lex_state = 0}, + [1675] = {.lex_state = 26}, [1676] = {.lex_state = 26}, [1677] = {.lex_state = 0}, - [1678] = {.lex_state = 0}, + [1678] = {.lex_state = 26}, [1679] = {.lex_state = 0}, - [1680] = {.lex_state = 26}, - [1681] = {.lex_state = 0}, - [1682] = {.lex_state = 0}, - [1683] = {.lex_state = 26}, - [1684] = {.lex_state = 26}, + [1680] = {.lex_state = 0}, + [1681] = {.lex_state = 26}, + [1682] = {.lex_state = 26}, + [1683] = {.lex_state = 0}, + [1684] = {.lex_state = 0}, [1685] = {.lex_state = 26}, [1686] = {.lex_state = 26}, [1687] = {.lex_state = 26}, @@ -9161,11 +9163,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1692] = {.lex_state = 26}, [1693] = {.lex_state = 26}, [1694] = {.lex_state = 26}, - [1695] = {.lex_state = 26}, - [1696] = {.lex_state = 26}, + [1695] = {.lex_state = 0}, + [1696] = {.lex_state = 0}, [1697] = {.lex_state = 26}, [1698] = {.lex_state = 26}, - [1699] = {.lex_state = 26}, + [1699] = {.lex_state = 0}, [1700] = {.lex_state = 26}, [1701] = {.lex_state = 26}, [1702] = {.lex_state = 26}, @@ -9176,7 +9178,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1707] = {.lex_state = 26}, [1708] = {.lex_state = 26}, [1709] = {.lex_state = 26}, - [1710] = {.lex_state = 26}, + [1710] = {.lex_state = 0}, [1711] = {.lex_state = 26}, [1712] = {.lex_state = 26}, [1713] = {.lex_state = 26}, @@ -9185,63 +9187,63 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1716] = {.lex_state = 26}, [1717] = {.lex_state = 26}, [1718] = {.lex_state = 26}, - [1719] = {.lex_state = 26}, + [1719] = {.lex_state = 0}, [1720] = {.lex_state = 26}, [1721] = {.lex_state = 26}, [1722] = {.lex_state = 26}, [1723] = {.lex_state = 26}, - [1724] = {.lex_state = 26}, + [1724] = {.lex_state = 0}, [1725] = {.lex_state = 26}, [1726] = {.lex_state = 26}, [1727] = {.lex_state = 26}, [1728] = {.lex_state = 26}, [1729] = {.lex_state = 26}, [1730] = {.lex_state = 26}, - [1731] = {.lex_state = 0}, + [1731] = {.lex_state = 26}, [1732] = {.lex_state = 0}, - [1733] = {.lex_state = 0}, + [1733] = {.lex_state = 26}, [1734] = {.lex_state = 26}, [1735] = {.lex_state = 0}, - [1736] = {.lex_state = 0}, - [1737] = {.lex_state = 26}, + [1736] = {.lex_state = 26}, + [1737] = {.lex_state = 0}, [1738] = {.lex_state = 26}, - [1739] = {.lex_state = 0}, + [1739] = {.lex_state = 26}, [1740] = {.lex_state = 0}, - [1741] = {.lex_state = 26}, - [1742] = {.lex_state = 0}, + [1741] = {.lex_state = 0}, + [1742] = {.lex_state = 26}, [1743] = {.lex_state = 26}, - [1744] = {.lex_state = 26}, + [1744] = {.lex_state = 0}, [1745] = {.lex_state = 26}, [1746] = {.lex_state = 26}, [1747] = {.lex_state = 26}, - [1748] = {.lex_state = 26}, + [1748] = {.lex_state = 0}, [1749] = {.lex_state = 26}, [1750] = {.lex_state = 26}, [1751] = {.lex_state = 26}, - [1752] = {.lex_state = 0}, + [1752] = {.lex_state = 26}, [1753] = {.lex_state = 26}, - [1754] = {.lex_state = 0}, + [1754] = {.lex_state = 26}, [1755] = {.lex_state = 26}, [1756] = {.lex_state = 26}, [1757] = {.lex_state = 26}, - [1758] = {.lex_state = 0}, + [1758] = {.lex_state = 26}, [1759] = {.lex_state = 26}, - [1760] = {.lex_state = 26}, + [1760] = {.lex_state = 0}, [1761] = {.lex_state = 26}, [1762] = {.lex_state = 26}, [1763] = {.lex_state = 26}, [1764] = {.lex_state = 26}, - [1765] = {.lex_state = 0}, + [1765] = {.lex_state = 26}, [1766] = {.lex_state = 26}, [1767] = {.lex_state = 26}, - [1768] = {.lex_state = 7}, + [1768] = {.lex_state = 26}, [1769] = {.lex_state = 26}, [1770] = {.lex_state = 26}, [1771] = {.lex_state = 26}, - [1772] = {.lex_state = 0}, + [1772] = {.lex_state = 26}, [1773] = {.lex_state = 26}, [1774] = {.lex_state = 26}, - [1775] = {.lex_state = 0}, + [1775] = {.lex_state = 26}, [1776] = {.lex_state = 26}, [1777] = {.lex_state = 26}, [1778] = {.lex_state = 26}, @@ -9251,21 +9253,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1782] = {.lex_state = 26}, [1783] = {.lex_state = 26}, [1784] = {.lex_state = 26}, - [1785] = {.lex_state = 26}, + [1785] = {.lex_state = 0}, [1786] = {.lex_state = 26}, - [1787] = {.lex_state = 0}, + [1787] = {.lex_state = 26}, [1788] = {.lex_state = 26}, [1789] = {.lex_state = 26}, [1790] = {.lex_state = 26}, - [1791] = {.lex_state = 26}, + [1791] = {.lex_state = 0}, [1792] = {.lex_state = 26}, - [1793] = {.lex_state = 26}, - [1794] = {.lex_state = 0}, + [1793] = {.lex_state = 0}, + [1794] = {.lex_state = 26}, [1795] = {.lex_state = 26}, - [1796] = {.lex_state = 26}, + [1796] = {.lex_state = 0}, [1797] = {.lex_state = 26}, - [1798] = {.lex_state = 26}, - [1799] = {.lex_state = 26}, + [1798] = {.lex_state = 0}, + [1799] = {.lex_state = 0}, [1800] = {.lex_state = 26}, [1801] = {.lex_state = 26}, [1802] = {.lex_state = 26}, @@ -9277,84 +9279,84 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1808] = {.lex_state = 26}, [1809] = {.lex_state = 26}, [1810] = {.lex_state = 26}, - [1811] = {.lex_state = 26}, - [1812] = {.lex_state = 26}, + [1811] = {.lex_state = 0}, + [1812] = {.lex_state = 0}, [1813] = {.lex_state = 26}, - [1814] = {.lex_state = 26}, + [1814] = {.lex_state = 0}, [1815] = {.lex_state = 26}, [1816] = {.lex_state = 26}, [1817] = {.lex_state = 26}, [1818] = {.lex_state = 26}, [1819] = {.lex_state = 26}, - [1820] = {.lex_state = 0}, + [1820] = {.lex_state = 26}, [1821] = {.lex_state = 26}, - [1822] = {.lex_state = 26}, + [1822] = {.lex_state = 0}, [1823] = {.lex_state = 26}, - [1824] = {.lex_state = 26}, + [1824] = {.lex_state = 0}, [1825] = {.lex_state = 26}, [1826] = {.lex_state = 26}, [1827] = {.lex_state = 26}, [1828] = {.lex_state = 26}, - [1829] = {.lex_state = 0}, - [1830] = {.lex_state = 0}, + [1829] = {.lex_state = 26}, + [1830] = {.lex_state = 26}, [1831] = {.lex_state = 26}, [1832] = {.lex_state = 26}, [1833] = {.lex_state = 26}, [1834] = {.lex_state = 26}, [1835] = {.lex_state = 26}, [1836] = {.lex_state = 26}, - [1837] = {.lex_state = 0}, + [1837] = {.lex_state = 26}, [1838] = {.lex_state = 26}, [1839] = {.lex_state = 26}, [1840] = {.lex_state = 26}, [1841] = {.lex_state = 26}, [1842] = {.lex_state = 26}, - [1843] = {.lex_state = 26}, + [1843] = {.lex_state = 0}, [1844] = {.lex_state = 26}, [1845] = {.lex_state = 26}, [1846] = {.lex_state = 26}, [1847] = {.lex_state = 26}, [1848] = {.lex_state = 26}, - [1849] = {.lex_state = 0}, - [1850] = {.lex_state = 0}, + [1849] = {.lex_state = 26}, + [1850] = {.lex_state = 26}, [1851] = {.lex_state = 26}, - [1852] = {.lex_state = 26}, + [1852] = {.lex_state = 0}, [1853] = {.lex_state = 26}, [1854] = {.lex_state = 26}, [1855] = {.lex_state = 26}, [1856] = {.lex_state = 26}, - [1857] = {.lex_state = 0}, + [1857] = {.lex_state = 26}, [1858] = {.lex_state = 26}, [1859] = {.lex_state = 0}, [1860] = {.lex_state = 26}, [1861] = {.lex_state = 26}, [1862] = {.lex_state = 26}, [1863] = {.lex_state = 26}, - [1864] = {.lex_state = 0}, + [1864] = {.lex_state = 26}, [1865] = {.lex_state = 26}, - [1866] = {.lex_state = 26}, + [1866] = {.lex_state = 0}, [1867] = {.lex_state = 26}, [1868] = {.lex_state = 26}, [1869] = {.lex_state = 26}, - [1870] = {.lex_state = 26}, - [1871] = {.lex_state = 0}, + [1870] = {.lex_state = 0}, + [1871] = {.lex_state = 26}, [1872] = {.lex_state = 0}, [1873] = {.lex_state = 26}, [1874] = {.lex_state = 26}, [1875] = {.lex_state = 26}, [1876] = {.lex_state = 26}, - [1877] = {.lex_state = 26}, + [1877] = {.lex_state = 0}, [1878] = {.lex_state = 26}, [1879] = {.lex_state = 26}, - [1880] = {.lex_state = 26}, + [1880] = {.lex_state = 0}, [1881] = {.lex_state = 26}, [1882] = {.lex_state = 26}, [1883] = {.lex_state = 26}, [1884] = {.lex_state = 26}, [1885] = {.lex_state = 26}, - [1886] = {.lex_state = 0}, - [1887] = {.lex_state = 0}, - [1888] = {.lex_state = 0}, + [1886] = {.lex_state = 26}, + [1887] = {.lex_state = 26}, + [1888] = {.lex_state = 26}, [1889] = {.lex_state = 26}, [1890] = {.lex_state = 26}, [1891] = {.lex_state = 26}, @@ -9362,38 +9364,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1893] = {.lex_state = 26}, [1894] = {.lex_state = 26}, [1895] = {.lex_state = 26}, - [1896] = {.lex_state = 0}, + [1896] = {.lex_state = 26}, [1897] = {.lex_state = 26}, - [1898] = {.lex_state = 26}, + [1898] = {.lex_state = 0}, [1899] = {.lex_state = 26}, [1900] = {.lex_state = 26}, [1901] = {.lex_state = 26}, [1902] = {.lex_state = 26}, - [1903] = {.lex_state = 0}, - [1904] = {.lex_state = 0}, + [1903] = {.lex_state = 26}, + [1904] = {.lex_state = 26}, [1905] = {.lex_state = 26}, - [1906] = {.lex_state = 0}, - [1907] = {.lex_state = 0}, + [1906] = {.lex_state = 26}, + [1907] = {.lex_state = 26}, [1908] = {.lex_state = 26}, - [1909] = {.lex_state = 0}, - [1910] = {.lex_state = 26}, + [1909] = {.lex_state = 26}, + [1910] = {.lex_state = 0}, [1911] = {.lex_state = 26}, - [1912] = {.lex_state = 26}, + [1912] = {.lex_state = 7}, [1913] = {.lex_state = 26}, [1914] = {.lex_state = 26}, [1915] = {.lex_state = 26}, - [1916] = {.lex_state = 0}, + [1916] = {.lex_state = 26}, [1917] = {.lex_state = 0}, [1918] = {.lex_state = 26}, [1919] = {.lex_state = 26}, - [1920] = {.lex_state = 0}, - [1921] = {.lex_state = 0}, - [1922] = {.lex_state = 0}, - [1923] = {.lex_state = 26}, + [1920] = {.lex_state = 26}, + [1921] = {.lex_state = 26}, + [1922] = {.lex_state = 26}, + [1923] = {.lex_state = 0}, [1924] = {.lex_state = 26}, [1925] = {.lex_state = 26}, - [1926] = {.lex_state = 26}, - [1927] = {.lex_state = 26}, + [1926] = {.lex_state = 0}, + [1927] = {.lex_state = 0}, [1928] = {.lex_state = 26}, [1929] = {.lex_state = 26}, [1930] = {.lex_state = 26}, @@ -9403,15 +9405,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1934] = {.lex_state = 26}, [1935] = {.lex_state = 26}, [1936] = {.lex_state = 26}, - [1937] = {.lex_state = 0}, - [1938] = {.lex_state = 0}, - [1939] = {.lex_state = 0}, - [1940] = {.lex_state = 0}, + [1937] = {.lex_state = 26}, + [1938] = {.lex_state = 26}, + [1939] = {.lex_state = 26}, + [1940] = {.lex_state = 26}, [1941] = {.lex_state = 26}, [1942] = {.lex_state = 26}, [1943] = {.lex_state = 26}, [1944] = {.lex_state = 0}, - [1945] = {.lex_state = 0}, + [1945] = {.lex_state = 26}, + [1946] = {.lex_state = 0}, + [1947] = {.lex_state = 26}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -9489,6 +9493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_declare_expression_token1] = ACTIONS(1), [aux_sym_quantifier_token1] = ACTIONS(1), [aux_sym_case_expression_token1] = ACTIONS(1), + [aux_sym_component_choice_list_token1] = ACTIONS(1), [aux_sym_record_component_association_list_token1] = ACTIONS(1), [aux_sym_private_type_declaration_token1] = ACTIONS(1), [aux_sym_private_type_declaration_token2] = ACTIONS(1), @@ -9498,7 +9503,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_interface_type_definition_token2] = ACTIONS(1), [aux_sym_component_list_token1] = ACTIONS(1), [aux_sym_component_definition_token1] = ACTIONS(1), - [aux_sym_positional_array_aggregate_token1] = ACTIONS(1), [aux_sym__aspect_mark_token1] = ACTIONS(1), [anon_sym_COLON_EQ] = ACTIONS(1), [aux_sym_at_clause_token1] = ACTIONS(1), @@ -9531,102 +9535,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(1), }, [1] = { - [sym_compilation] = STATE(1677), - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym__defining_identifier_list] = STATE(1662), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), + [sym_compilation] = STATE(1679), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym__defining_identifier_list] = STATE(1664), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), [sym_compilation_unit] = STATE(3), - [sym__declarative_item] = STATE(484), - [sym__basic_declarative_item] = STATE(484), - [sym__basic_declaration] = STATE(484), - [sym__package_declaration] = STATE(484), - [sym_package_specification] = STATE(1625), - [sym_with_clause] = STATE(484), - [sym_use_clause] = STATE(484), - [sym_subunit] = STATE(484), - [sym__proper_body] = STATE(484), - [sym_subprogram_body] = STATE(484), - [sym_package_body] = STATE(484), - [sym__type_declaration] = STATE(484), - [sym_full_type_declaration] = STATE(484), - [sym_private_type_declaration] = STATE(484), - [sym_private_extension_declaration] = STATE(484), - [sym_incomplete_type_declaration] = STATE(484), - [sym__aspect_clause] = STATE(484), - [sym_at_clause] = STATE(484), - [sym_attribute_definition_clause] = STATE(484), - [sym_body_stub] = STATE(484), - [sym_subprogram_body_stub] = STATE(475), - [sym_package_body_stub] = STATE(475), - [sym_task_body] = STATE(484), - [sym_task_body_stub] = STATE(475), - [sym_protected_type_declaration] = STATE(460), - [sym_single_protected_declaration] = STATE(419), - [sym_protected_body] = STATE(484), - [sym_protected_body_stub] = STATE(475), - [sym_entry_declaration] = STATE(484), - [sym_enumeration_representation_clause] = STATE(484), - [sym_exception_declaration] = STATE(484), - [sym_function_specification] = STATE(1078), - [sym__generic_declaration] = STATE(484), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(484), - [sym_generic_package_declaration] = STATE(484), - [sym_generic_instantiation] = STATE(484), - [sym_loop_label] = STATE(950), + [sym__declarative_item] = STATE(483), + [sym__basic_declarative_item] = STATE(483), + [sym__basic_declaration] = STATE(483), + [sym__package_declaration] = STATE(483), + [sym_package_specification] = STATE(1627), + [sym_with_clause] = STATE(483), + [sym_use_clause] = STATE(483), + [sym_subunit] = STATE(483), + [sym__proper_body] = STATE(483), + [sym_subprogram_body] = STATE(483), + [sym_package_body] = STATE(483), + [sym__type_declaration] = STATE(483), + [sym_full_type_declaration] = STATE(483), + [sym_private_type_declaration] = STATE(483), + [sym_private_extension_declaration] = STATE(483), + [sym_incomplete_type_declaration] = STATE(483), + [sym__aspect_clause] = STATE(483), + [sym_at_clause] = STATE(483), + [sym_attribute_definition_clause] = STATE(483), + [sym_body_stub] = STATE(483), + [sym_subprogram_body_stub] = STATE(417), + [sym_package_body_stub] = STATE(417), + [sym_task_body] = STATE(483), + [sym_task_body_stub] = STATE(417), + [sym_protected_type_declaration] = STATE(419), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(483), + [sym_protected_body_stub] = STATE(417), + [sym_entry_declaration] = STATE(483), + [sym_enumeration_representation_clause] = STATE(483), + [sym_exception_declaration] = STATE(483), + [sym_function_specification] = STATE(1115), + [sym__generic_declaration] = STATE(483), + [sym_generic_formal_part] = STATE(925), + [sym_generic_subprogram_declaration] = STATE(483), + [sym_generic_package_declaration] = STATE(483), + [sym_generic_instantiation] = STATE(483), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), - [sym_null_procedure_declaration] = STATE(484), - [sym_null_statement] = STATE(484), - [sym_number_declaration] = STATE(484), - [sym_object_declaration] = STATE(484), - [sym_single_task_declaration] = STATE(419), - [sym_task_type_declaration] = STATE(460), - [sym_overriding_indicator] = STATE(953), - [sym_pragma_g] = STATE(484), - [sym_procedure_specification] = STATE(1058), - [sym_record_representation_clause] = STATE(484), - [sym__renaming_declaration] = STATE(484), - [sym_object_renaming_declaration] = STATE(484), - [sym_exception_renaming_declaration] = STATE(484), - [sym_package_renaming_declaration] = STATE(484), - [sym_subprogram_renaming_declaration] = STATE(484), - [sym_generic_renaming_declaration] = STATE(484), - [sym__simple_statement] = STATE(484), - [sym__statement] = STATE(484), - [sym__compound_statement] = STATE(484), - [sym__select_statement] = STATE(484), - [sym_asynchronous_select] = STATE(484), - [sym_conditional_entry_call] = STATE(484), - [sym_timed_entry_call] = STATE(484), - [sym_selective_accept] = STATE(484), - [sym_abort_statement] = STATE(484), - [sym_requeue_statement] = STATE(484), - [sym_accept_statement] = STATE(484), - [sym_case_statement] = STATE(484), - [sym_block_statement] = STATE(484), - [sym_if_statement] = STATE(484), - [sym_exit_statement] = STATE(484), - [sym_goto_statement] = STATE(484), - [sym__delay_statement] = STATE(484), - [sym_delay_until_statement] = STATE(484), - [sym_delay_relative_statement] = STATE(484), - [sym_simple_return_statement] = STATE(484), - [sym_extended_return_statement] = STATE(484), - [sym_procedure_call_statement] = STATE(484), - [sym_function_call] = STATE(936), - [sym_raise_statement] = STATE(484), - [sym_loop_statement] = STATE(484), - [sym_iteration_scheme] = STATE(1490), - [sym_assignment_statement] = STATE(484), - [sym_subprogram_declaration] = STATE(484), - [sym_expression_function_declaration] = STATE(484), - [sym__subprogram_specification] = STATE(1049), - [sym_subtype_declaration] = STATE(484), + [sym_null_procedure_declaration] = STATE(483), + [sym_null_statement] = STATE(483), + [sym_number_declaration] = STATE(483), + [sym_object_declaration] = STATE(483), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(419), + [sym_overriding_indicator] = STATE(940), + [sym_pragma_g] = STATE(483), + [sym_procedure_specification] = STATE(1142), + [sym_record_representation_clause] = STATE(483), + [sym__renaming_declaration] = STATE(483), + [sym_object_renaming_declaration] = STATE(483), + [sym_exception_renaming_declaration] = STATE(483), + [sym_package_renaming_declaration] = STATE(483), + [sym_subprogram_renaming_declaration] = STATE(483), + [sym_generic_renaming_declaration] = STATE(483), + [sym__simple_statement] = STATE(483), + [sym__statement] = STATE(483), + [sym__compound_statement] = STATE(483), + [sym__select_statement] = STATE(483), + [sym_asynchronous_select] = STATE(483), + [sym_conditional_entry_call] = STATE(483), + [sym_timed_entry_call] = STATE(483), + [sym_selective_accept] = STATE(483), + [sym_abort_statement] = STATE(483), + [sym_requeue_statement] = STATE(483), + [sym_accept_statement] = STATE(483), + [sym_case_statement] = STATE(483), + [sym_block_statement] = STATE(483), + [sym_if_statement] = STATE(483), + [sym_exit_statement] = STATE(483), + [sym_goto_statement] = STATE(483), + [sym__delay_statement] = STATE(483), + [sym_delay_until_statement] = STATE(483), + [sym_delay_relative_statement] = STATE(483), + [sym_simple_return_statement] = STATE(483), + [sym_extended_return_statement] = STATE(483), + [sym_procedure_call_statement] = STATE(483), + [sym_function_call] = STATE(947), + [sym_raise_statement] = STATE(483), + [sym_loop_statement] = STATE(483), + [sym_iteration_scheme] = STATE(1576), + [sym_assignment_statement] = STATE(483), + [sym_subprogram_declaration] = STATE(483), + [sym_expression_function_declaration] = STATE(483), + [sym__subprogram_specification] = STATE(1043), + [sym_subtype_declaration] = STATE(483), [aux_sym_compilation_repeat1] = STATE(3), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [ts_builtin_sym_end] = ACTIONS(5), @@ -9673,101 +9677,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [2] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym__defining_identifier_list] = STATE(1662), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym__defining_identifier_list] = STATE(1664), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), [sym_compilation_unit] = STATE(2), - [sym__declarative_item] = STATE(484), - [sym__basic_declarative_item] = STATE(484), - [sym__basic_declaration] = STATE(484), - [sym__package_declaration] = STATE(484), - [sym_package_specification] = STATE(1625), - [sym_with_clause] = STATE(484), - [sym_use_clause] = STATE(484), - [sym_subunit] = STATE(484), - [sym__proper_body] = STATE(484), - [sym_subprogram_body] = STATE(484), - [sym_package_body] = STATE(484), - [sym__type_declaration] = STATE(484), - [sym_full_type_declaration] = STATE(484), - [sym_private_type_declaration] = STATE(484), - [sym_private_extension_declaration] = STATE(484), - [sym_incomplete_type_declaration] = STATE(484), - [sym__aspect_clause] = STATE(484), - [sym_at_clause] = STATE(484), - [sym_attribute_definition_clause] = STATE(484), - [sym_body_stub] = STATE(484), - [sym_subprogram_body_stub] = STATE(475), - [sym_package_body_stub] = STATE(475), - [sym_task_body] = STATE(484), - [sym_task_body_stub] = STATE(475), - [sym_protected_type_declaration] = STATE(460), - [sym_single_protected_declaration] = STATE(419), - [sym_protected_body] = STATE(484), - [sym_protected_body_stub] = STATE(475), - [sym_entry_declaration] = STATE(484), - [sym_enumeration_representation_clause] = STATE(484), - [sym_exception_declaration] = STATE(484), - [sym_function_specification] = STATE(1078), - [sym__generic_declaration] = STATE(484), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(484), - [sym_generic_package_declaration] = STATE(484), - [sym_generic_instantiation] = STATE(484), - [sym_loop_label] = STATE(950), + [sym__declarative_item] = STATE(483), + [sym__basic_declarative_item] = STATE(483), + [sym__basic_declaration] = STATE(483), + [sym__package_declaration] = STATE(483), + [sym_package_specification] = STATE(1627), + [sym_with_clause] = STATE(483), + [sym_use_clause] = STATE(483), + [sym_subunit] = STATE(483), + [sym__proper_body] = STATE(483), + [sym_subprogram_body] = STATE(483), + [sym_package_body] = STATE(483), + [sym__type_declaration] = STATE(483), + [sym_full_type_declaration] = STATE(483), + [sym_private_type_declaration] = STATE(483), + [sym_private_extension_declaration] = STATE(483), + [sym_incomplete_type_declaration] = STATE(483), + [sym__aspect_clause] = STATE(483), + [sym_at_clause] = STATE(483), + [sym_attribute_definition_clause] = STATE(483), + [sym_body_stub] = STATE(483), + [sym_subprogram_body_stub] = STATE(417), + [sym_package_body_stub] = STATE(417), + [sym_task_body] = STATE(483), + [sym_task_body_stub] = STATE(417), + [sym_protected_type_declaration] = STATE(419), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(483), + [sym_protected_body_stub] = STATE(417), + [sym_entry_declaration] = STATE(483), + [sym_enumeration_representation_clause] = STATE(483), + [sym_exception_declaration] = STATE(483), + [sym_function_specification] = STATE(1115), + [sym__generic_declaration] = STATE(483), + [sym_generic_formal_part] = STATE(925), + [sym_generic_subprogram_declaration] = STATE(483), + [sym_generic_package_declaration] = STATE(483), + [sym_generic_instantiation] = STATE(483), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), - [sym_null_procedure_declaration] = STATE(484), - [sym_null_statement] = STATE(484), - [sym_number_declaration] = STATE(484), - [sym_object_declaration] = STATE(484), - [sym_single_task_declaration] = STATE(419), - [sym_task_type_declaration] = STATE(460), - [sym_overriding_indicator] = STATE(953), - [sym_pragma_g] = STATE(484), - [sym_procedure_specification] = STATE(1058), - [sym_record_representation_clause] = STATE(484), - [sym__renaming_declaration] = STATE(484), - [sym_object_renaming_declaration] = STATE(484), - [sym_exception_renaming_declaration] = STATE(484), - [sym_package_renaming_declaration] = STATE(484), - [sym_subprogram_renaming_declaration] = STATE(484), - [sym_generic_renaming_declaration] = STATE(484), - [sym__simple_statement] = STATE(484), - [sym__statement] = STATE(484), - [sym__compound_statement] = STATE(484), - [sym__select_statement] = STATE(484), - [sym_asynchronous_select] = STATE(484), - [sym_conditional_entry_call] = STATE(484), - [sym_timed_entry_call] = STATE(484), - [sym_selective_accept] = STATE(484), - [sym_abort_statement] = STATE(484), - [sym_requeue_statement] = STATE(484), - [sym_accept_statement] = STATE(484), - [sym_case_statement] = STATE(484), - [sym_block_statement] = STATE(484), - [sym_if_statement] = STATE(484), - [sym_exit_statement] = STATE(484), - [sym_goto_statement] = STATE(484), - [sym__delay_statement] = STATE(484), - [sym_delay_until_statement] = STATE(484), - [sym_delay_relative_statement] = STATE(484), - [sym_simple_return_statement] = STATE(484), - [sym_extended_return_statement] = STATE(484), - [sym_procedure_call_statement] = STATE(484), - [sym_function_call] = STATE(936), - [sym_raise_statement] = STATE(484), - [sym_loop_statement] = STATE(484), - [sym_iteration_scheme] = STATE(1490), - [sym_assignment_statement] = STATE(484), - [sym_subprogram_declaration] = STATE(484), - [sym_expression_function_declaration] = STATE(484), - [sym__subprogram_specification] = STATE(1049), - [sym_subtype_declaration] = STATE(484), + [sym_null_procedure_declaration] = STATE(483), + [sym_null_statement] = STATE(483), + [sym_number_declaration] = STATE(483), + [sym_object_declaration] = STATE(483), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(419), + [sym_overriding_indicator] = STATE(940), + [sym_pragma_g] = STATE(483), + [sym_procedure_specification] = STATE(1142), + [sym_record_representation_clause] = STATE(483), + [sym__renaming_declaration] = STATE(483), + [sym_object_renaming_declaration] = STATE(483), + [sym_exception_renaming_declaration] = STATE(483), + [sym_package_renaming_declaration] = STATE(483), + [sym_subprogram_renaming_declaration] = STATE(483), + [sym_generic_renaming_declaration] = STATE(483), + [sym__simple_statement] = STATE(483), + [sym__statement] = STATE(483), + [sym__compound_statement] = STATE(483), + [sym__select_statement] = STATE(483), + [sym_asynchronous_select] = STATE(483), + [sym_conditional_entry_call] = STATE(483), + [sym_timed_entry_call] = STATE(483), + [sym_selective_accept] = STATE(483), + [sym_abort_statement] = STATE(483), + [sym_requeue_statement] = STATE(483), + [sym_accept_statement] = STATE(483), + [sym_case_statement] = STATE(483), + [sym_block_statement] = STATE(483), + [sym_if_statement] = STATE(483), + [sym_exit_statement] = STATE(483), + [sym_goto_statement] = STATE(483), + [sym__delay_statement] = STATE(483), + [sym_delay_until_statement] = STATE(483), + [sym_delay_relative_statement] = STATE(483), + [sym_simple_return_statement] = STATE(483), + [sym_extended_return_statement] = STATE(483), + [sym_procedure_call_statement] = STATE(483), + [sym_function_call] = STATE(947), + [sym_raise_statement] = STATE(483), + [sym_loop_statement] = STATE(483), + [sym_iteration_scheme] = STATE(1576), + [sym_assignment_statement] = STATE(483), + [sym_subprogram_declaration] = STATE(483), + [sym_expression_function_declaration] = STATE(483), + [sym__subprogram_specification] = STATE(1043), + [sym_subtype_declaration] = STATE(483), [aux_sym_compilation_repeat1] = STATE(2), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [ts_builtin_sym_end] = ACTIONS(83), @@ -9814,101 +9818,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(196), }, [3] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym__defining_identifier_list] = STATE(1662), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym__defining_identifier_list] = STATE(1664), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), [sym_compilation_unit] = STATE(2), - [sym__declarative_item] = STATE(484), - [sym__basic_declarative_item] = STATE(484), - [sym__basic_declaration] = STATE(484), - [sym__package_declaration] = STATE(484), - [sym_package_specification] = STATE(1625), - [sym_with_clause] = STATE(484), - [sym_use_clause] = STATE(484), - [sym_subunit] = STATE(484), - [sym__proper_body] = STATE(484), - [sym_subprogram_body] = STATE(484), - [sym_package_body] = STATE(484), - [sym__type_declaration] = STATE(484), - [sym_full_type_declaration] = STATE(484), - [sym_private_type_declaration] = STATE(484), - [sym_private_extension_declaration] = STATE(484), - [sym_incomplete_type_declaration] = STATE(484), - [sym__aspect_clause] = STATE(484), - [sym_at_clause] = STATE(484), - [sym_attribute_definition_clause] = STATE(484), - [sym_body_stub] = STATE(484), - [sym_subprogram_body_stub] = STATE(475), - [sym_package_body_stub] = STATE(475), - [sym_task_body] = STATE(484), - [sym_task_body_stub] = STATE(475), - [sym_protected_type_declaration] = STATE(460), - [sym_single_protected_declaration] = STATE(419), - [sym_protected_body] = STATE(484), - [sym_protected_body_stub] = STATE(475), - [sym_entry_declaration] = STATE(484), - [sym_enumeration_representation_clause] = STATE(484), - [sym_exception_declaration] = STATE(484), - [sym_function_specification] = STATE(1078), - [sym__generic_declaration] = STATE(484), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(484), - [sym_generic_package_declaration] = STATE(484), - [sym_generic_instantiation] = STATE(484), - [sym_loop_label] = STATE(950), + [sym__declarative_item] = STATE(483), + [sym__basic_declarative_item] = STATE(483), + [sym__basic_declaration] = STATE(483), + [sym__package_declaration] = STATE(483), + [sym_package_specification] = STATE(1627), + [sym_with_clause] = STATE(483), + [sym_use_clause] = STATE(483), + [sym_subunit] = STATE(483), + [sym__proper_body] = STATE(483), + [sym_subprogram_body] = STATE(483), + [sym_package_body] = STATE(483), + [sym__type_declaration] = STATE(483), + [sym_full_type_declaration] = STATE(483), + [sym_private_type_declaration] = STATE(483), + [sym_private_extension_declaration] = STATE(483), + [sym_incomplete_type_declaration] = STATE(483), + [sym__aspect_clause] = STATE(483), + [sym_at_clause] = STATE(483), + [sym_attribute_definition_clause] = STATE(483), + [sym_body_stub] = STATE(483), + [sym_subprogram_body_stub] = STATE(417), + [sym_package_body_stub] = STATE(417), + [sym_task_body] = STATE(483), + [sym_task_body_stub] = STATE(417), + [sym_protected_type_declaration] = STATE(419), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(483), + [sym_protected_body_stub] = STATE(417), + [sym_entry_declaration] = STATE(483), + [sym_enumeration_representation_clause] = STATE(483), + [sym_exception_declaration] = STATE(483), + [sym_function_specification] = STATE(1115), + [sym__generic_declaration] = STATE(483), + [sym_generic_formal_part] = STATE(925), + [sym_generic_subprogram_declaration] = STATE(483), + [sym_generic_package_declaration] = STATE(483), + [sym_generic_instantiation] = STATE(483), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), - [sym_null_procedure_declaration] = STATE(484), - [sym_null_statement] = STATE(484), - [sym_number_declaration] = STATE(484), - [sym_object_declaration] = STATE(484), - [sym_single_task_declaration] = STATE(419), - [sym_task_type_declaration] = STATE(460), - [sym_overriding_indicator] = STATE(953), - [sym_pragma_g] = STATE(484), - [sym_procedure_specification] = STATE(1058), - [sym_record_representation_clause] = STATE(484), - [sym__renaming_declaration] = STATE(484), - [sym_object_renaming_declaration] = STATE(484), - [sym_exception_renaming_declaration] = STATE(484), - [sym_package_renaming_declaration] = STATE(484), - [sym_subprogram_renaming_declaration] = STATE(484), - [sym_generic_renaming_declaration] = STATE(484), - [sym__simple_statement] = STATE(484), - [sym__statement] = STATE(484), - [sym__compound_statement] = STATE(484), - [sym__select_statement] = STATE(484), - [sym_asynchronous_select] = STATE(484), - [sym_conditional_entry_call] = STATE(484), - [sym_timed_entry_call] = STATE(484), - [sym_selective_accept] = STATE(484), - [sym_abort_statement] = STATE(484), - [sym_requeue_statement] = STATE(484), - [sym_accept_statement] = STATE(484), - [sym_case_statement] = STATE(484), - [sym_block_statement] = STATE(484), - [sym_if_statement] = STATE(484), - [sym_exit_statement] = STATE(484), - [sym_goto_statement] = STATE(484), - [sym__delay_statement] = STATE(484), - [sym_delay_until_statement] = STATE(484), - [sym_delay_relative_statement] = STATE(484), - [sym_simple_return_statement] = STATE(484), - [sym_extended_return_statement] = STATE(484), - [sym_procedure_call_statement] = STATE(484), - [sym_function_call] = STATE(936), - [sym_raise_statement] = STATE(484), - [sym_loop_statement] = STATE(484), - [sym_iteration_scheme] = STATE(1490), - [sym_assignment_statement] = STATE(484), - [sym_subprogram_declaration] = STATE(484), - [sym_expression_function_declaration] = STATE(484), - [sym__subprogram_specification] = STATE(1049), - [sym_subtype_declaration] = STATE(484), + [sym_null_procedure_declaration] = STATE(483), + [sym_null_statement] = STATE(483), + [sym_number_declaration] = STATE(483), + [sym_object_declaration] = STATE(483), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(419), + [sym_overriding_indicator] = STATE(940), + [sym_pragma_g] = STATE(483), + [sym_procedure_specification] = STATE(1142), + [sym_record_representation_clause] = STATE(483), + [sym__renaming_declaration] = STATE(483), + [sym_object_renaming_declaration] = STATE(483), + [sym_exception_renaming_declaration] = STATE(483), + [sym_package_renaming_declaration] = STATE(483), + [sym_subprogram_renaming_declaration] = STATE(483), + [sym_generic_renaming_declaration] = STATE(483), + [sym__simple_statement] = STATE(483), + [sym__statement] = STATE(483), + [sym__compound_statement] = STATE(483), + [sym__select_statement] = STATE(483), + [sym_asynchronous_select] = STATE(483), + [sym_conditional_entry_call] = STATE(483), + [sym_timed_entry_call] = STATE(483), + [sym_selective_accept] = STATE(483), + [sym_abort_statement] = STATE(483), + [sym_requeue_statement] = STATE(483), + [sym_accept_statement] = STATE(483), + [sym_case_statement] = STATE(483), + [sym_block_statement] = STATE(483), + [sym_if_statement] = STATE(483), + [sym_exit_statement] = STATE(483), + [sym_goto_statement] = STATE(483), + [sym__delay_statement] = STATE(483), + [sym_delay_until_statement] = STATE(483), + [sym_delay_relative_statement] = STATE(483), + [sym_simple_return_statement] = STATE(483), + [sym_extended_return_statement] = STATE(483), + [sym_procedure_call_statement] = STATE(483), + [sym_function_call] = STATE(947), + [sym_raise_statement] = STATE(483), + [sym_loop_statement] = STATE(483), + [sym_iteration_scheme] = STATE(1576), + [sym_assignment_statement] = STATE(483), + [sym_subprogram_declaration] = STATE(483), + [sym_expression_function_declaration] = STATE(483), + [sym__subprogram_specification] = STATE(1043), + [sym_subtype_declaration] = STATE(483), [aux_sym_compilation_repeat1] = STATE(2), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [ts_builtin_sym_end] = ACTIONS(199), @@ -9955,12 +9959,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [4] = { - [sym__defining_identifier_list] = STATE(1662), + [sym__defining_identifier_list] = STATE(1664), [sym__declarative_item] = STATE(23), [sym__basic_declarative_item] = STATE(23), [sym__basic_declaration] = STATE(23), [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1625), + [sym_package_specification] = STATE(1627), [sym_use_clause] = STATE(23), [sym__proper_body] = STATE(23), [sym_subprogram_body] = STATE(23), @@ -9974,32 +9978,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(23), [sym_attribute_definition_clause] = STATE(23), [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(475), - [sym_package_body_stub] = STATE(475), + [sym_subprogram_body_stub] = STATE(417), + [sym_package_body_stub] = STATE(417), [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(475), - [sym_protected_type_declaration] = STATE(460), - [sym_single_protected_declaration] = STATE(419), + [sym_task_body_stub] = STATE(417), + [sym_protected_type_declaration] = STATE(419), + [sym_single_protected_declaration] = STATE(426), [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(475), + [sym_protected_body_stub] = STATE(417), [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1797), + [sym_non_empty_declarative_part] = STATE(1848), [sym_enumeration_representation_clause] = STATE(23), [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1078), + [sym_function_specification] = STATE(1115), [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), + [sym_generic_formal_part] = STATE(925), [sym_generic_subprogram_declaration] = STATE(23), [sym_generic_package_declaration] = STATE(23), [sym_generic_instantiation] = STATE(23), [sym_null_procedure_declaration] = STATE(23), [sym_number_declaration] = STATE(23), [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(419), - [sym_task_type_declaration] = STATE(460), - [sym_overriding_indicator] = STATE(1005), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(419), + [sym_overriding_indicator] = STATE(976), [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1058), + [sym_procedure_specification] = STATE(1142), [sym_record_representation_clause] = STATE(23), [sym__renaming_declaration] = STATE(23), [sym_object_renaming_declaration] = STATE(23), @@ -10009,7 +10013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_renaming_declaration] = STATE(23), [sym_subprogram_declaration] = STATE(23), [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1049), + [sym__subprogram_specification] = STATE(1043), [sym_subtype_declaration] = STATE(23), [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), [sym_identifier] = ACTIONS(201), @@ -10032,12 +10036,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [5] = { - [sym__defining_identifier_list] = STATE(1662), + [sym__defining_identifier_list] = STATE(1664), [sym__declarative_item] = STATE(23), [sym__basic_declarative_item] = STATE(23), [sym__basic_declaration] = STATE(23), [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1625), + [sym_package_specification] = STATE(1627), [sym_use_clause] = STATE(23), [sym__proper_body] = STATE(23), [sym_subprogram_body] = STATE(23), @@ -10051,32 +10055,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(23), [sym_attribute_definition_clause] = STATE(23), [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(475), - [sym_package_body_stub] = STATE(475), + [sym_subprogram_body_stub] = STATE(417), + [sym_package_body_stub] = STATE(417), [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(475), - [sym_protected_type_declaration] = STATE(460), - [sym_single_protected_declaration] = STATE(419), + [sym_task_body_stub] = STATE(417), + [sym_protected_type_declaration] = STATE(419), + [sym_single_protected_declaration] = STATE(426), [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(475), + [sym_protected_body_stub] = STATE(417), [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1867), + [sym_non_empty_declarative_part] = STATE(1610), [sym_enumeration_representation_clause] = STATE(23), [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1078), + [sym_function_specification] = STATE(1115), [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), + [sym_generic_formal_part] = STATE(925), [sym_generic_subprogram_declaration] = STATE(23), [sym_generic_package_declaration] = STATE(23), [sym_generic_instantiation] = STATE(23), [sym_null_procedure_declaration] = STATE(23), [sym_number_declaration] = STATE(23), [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(419), - [sym_task_type_declaration] = STATE(460), - [sym_overriding_indicator] = STATE(1005), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(419), + [sym_overriding_indicator] = STATE(976), [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1058), + [sym_procedure_specification] = STATE(1142), [sym_record_representation_clause] = STATE(23), [sym__renaming_declaration] = STATE(23), [sym_object_renaming_declaration] = STATE(23), @@ -10086,7 +10090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_renaming_declaration] = STATE(23), [sym_subprogram_declaration] = STATE(23), [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1049), + [sym__subprogram_specification] = STATE(1043), [sym_subtype_declaration] = STATE(23), [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), [sym_identifier] = ACTIONS(201), @@ -10109,89 +10113,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [6] = { - [sym_unary_adding_operator] = STATE(500), - [sym__name] = STATE(478), - [sym_selected_component] = STATE(266), - [sym_slice] = STATE(266), - [sym__attribute_reference] = STATE(266), - [sym__reduction_attribute_reference] = STATE(266), - [sym_value_sequence] = STATE(1650), - [sym_iterated_element_association] = STATE(1261), - [sym_qualified_expression] = STATE(266), - [sym__subtype_indication] = STATE(1409), - [sym_range_g] = STATE(1386), - [sym_expression] = STATE(944), - [sym__relation] = STATE(566), - [sym_relation_membership] = STATE(566), - [sym_raise_expression] = STATE(566), + [sym_unary_adding_operator] = STATE(498), + [sym__name] = STATE(484), + [sym_selected_component] = STATE(501), + [sym_slice] = STATE(264), + [sym__attribute_reference] = STATE(264), + [sym__reduction_attribute_reference] = STATE(264), + [sym_value_sequence] = STATE(1652), + [sym_iterated_element_association] = STATE(1226), + [sym_qualified_expression] = STATE(264), + [sym__subtype_indication] = STATE(1377), + [sym_range_g] = STATE(1375), + [sym_expression] = STATE(950), + [sym__relation] = STATE(558), + [sym_relation_membership] = STATE(558), + [sym_raise_expression] = STATE(558), [sym__simple_expression] = STATE(598), - [sym_term] = STATE(511), - [sym__factor] = STATE(486), - [sym_factor_power] = STATE(486), - [sym_factor_abs] = STATE(486), - [sym_factor_not] = STATE(486), - [sym__parenthesized_expression] = STATE(488), - [sym__primary] = STATE(488), - [sym_primary_null] = STATE(488), - [sym_allocator] = STATE(488), - [sym__conditional_expression] = STATE(1938), - [sym_quantified_expression] = STATE(1938), - [sym_declare_expression] = STATE(1938), - [sym_case_expression] = STATE(1938), - [sym_component_choice_list] = STATE(1939), - [sym__aggregate] = STATE(488), - [sym__delta_aggregate] = STATE(488), - [sym_extension_aggregate] = STATE(488), - [sym_record_delta_aggregate] = STATE(488), - [sym_array_delta_aggregate] = STATE(488), - [sym_record_aggregate] = STATE(488), - [sym_record_component_association_list] = STATE(1940), - [sym__named_record_component_association] = STATE(1210), - [sym_null_exclusion] = STATE(771), - [sym__array_aggregate] = STATE(488), - [sym_positional_array_aggregate] = STATE(488), - [sym_null_array_aggregate] = STATE(488), - [sym_named_array_aggregate] = STATE(488), - [sym__array_component_association_list] = STATE(1944), - [sym_array_component_association] = STATE(1054), - [sym_discrete_choice_list] = STATE(1945), - [sym_discrete_choice] = STATE(1149), - [sym_global_aspect_element] = STATE(1309), - [sym_global_mode] = STATE(687), - [sym_non_empty_mode] = STATE(825), - [sym_if_expression] = STATE(1938), - [sym_function_call] = STATE(478), + [sym_term] = STATE(509), + [sym__factor] = STATE(487), + [sym_factor_power] = STATE(487), + [sym_factor_abs] = STATE(487), + [sym_factor_not] = STATE(487), + [sym__parenthesized_expression] = STATE(491), + [sym__primary] = STATE(491), + [sym_primary_null] = STATE(491), + [sym_allocator] = STATE(491), + [sym__conditional_expression] = STATE(1866), + [sym_quantified_expression] = STATE(1866), + [sym_declare_expression] = STATE(1866), + [sym_case_expression] = STATE(1866), + [sym_component_choice_list] = STATE(1877), + [sym__aggregate] = STATE(491), + [sym__delta_aggregate] = STATE(491), + [sym_extension_aggregate] = STATE(491), + [sym_record_delta_aggregate] = STATE(491), + [sym_array_delta_aggregate] = STATE(491), + [sym_record_aggregate] = STATE(491), + [sym_record_component_association_list] = STATE(1880), + [sym__named_record_component_association] = STATE(1290), + [sym_null_exclusion] = STATE(802), + [sym__array_aggregate] = STATE(491), + [sym_positional_array_aggregate] = STATE(491), + [sym_null_array_aggregate] = STATE(491), + [sym_named_array_aggregate] = STATE(491), + [sym__array_component_association_list] = STATE(1923), + [sym_array_component_association] = STATE(1073), + [sym_discrete_choice_list] = STATE(1926), + [sym_discrete_choice] = STATE(1171), + [sym_global_aspect_element] = STATE(1334), + [sym_global_mode] = STATE(686), + [sym_non_empty_mode] = STATE(831), + [sym_if_expression] = STATE(1866), + [sym_function_call] = STATE(484), [sym_identifier] = ACTIONS(217), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(219), - [sym_character_literal] = ACTIONS(219), - [sym_numeric_literal] = ACTIONS(221), - [anon_sym_PLUS] = ACTIONS(223), - [anon_sym_DASH] = ACTIONS(225), - [sym_target_name] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(227), - [anon_sym_LBRACK] = ACTIONS(229), - [aux_sym_chunk_specification_token1] = ACTIONS(231), - [aux_sym_iterated_element_association_token1] = ACTIONS(233), - [aux_sym_relation_membership_token1] = ACTIONS(235), - [aux_sym_raise_expression_token1] = ACTIONS(237), - [aux_sym_factor_abs_token1] = ACTIONS(239), - [aux_sym_primary_null_token1] = ACTIONS(241), - [aux_sym_allocator_token1] = ACTIONS(243), - [aux_sym_declare_expression_token1] = ACTIONS(245), - [aux_sym_case_expression_token1] = ACTIONS(247), - [aux_sym_positional_array_aggregate_token1] = ACTIONS(249), - [aux_sym_global_mode_token1] = ACTIONS(251), - [aux_sym_non_empty_mode_token1] = ACTIONS(253), - [aux_sym_if_expression_token1] = ACTIONS(255), + [sym_character_literal] = ACTIONS(221), + [sym_numeric_literal] = ACTIONS(223), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(227), + [sym_target_name] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [aux_sym_chunk_specification_token1] = ACTIONS(233), + [aux_sym_iterated_element_association_token1] = ACTIONS(235), + [aux_sym_relation_membership_token1] = ACTIONS(237), + [aux_sym_raise_expression_token1] = ACTIONS(239), + [aux_sym_factor_abs_token1] = ACTIONS(241), + [aux_sym_primary_null_token1] = ACTIONS(243), + [aux_sym_allocator_token1] = ACTIONS(245), + [aux_sym_declare_expression_token1] = ACTIONS(247), + [aux_sym_case_expression_token1] = ACTIONS(249), + [aux_sym_component_choice_list_token1] = ACTIONS(251), + [aux_sym_global_mode_token1] = ACTIONS(253), + [aux_sym_non_empty_mode_token1] = ACTIONS(255), + [aux_sym_if_expression_token1] = ACTIONS(257), }, [7] = { - [sym__defining_identifier_list] = STATE(1662), + [sym__defining_identifier_list] = STATE(1664), [sym__declarative_item] = STATE(23), [sym__basic_declarative_item] = STATE(23), [sym__basic_declaration] = STATE(23), [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1625), + [sym_package_specification] = STATE(1627), [sym_use_clause] = STATE(23), [sym__proper_body] = STATE(23), [sym_subprogram_body] = STATE(23), @@ -10205,32 +10209,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(23), [sym_attribute_definition_clause] = STATE(23), [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(475), - [sym_package_body_stub] = STATE(475), + [sym_subprogram_body_stub] = STATE(417), + [sym_package_body_stub] = STATE(417), [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(475), - [sym_protected_type_declaration] = STATE(460), - [sym_single_protected_declaration] = STATE(419), + [sym_task_body_stub] = STATE(417), + [sym_protected_type_declaration] = STATE(419), + [sym_single_protected_declaration] = STATE(426), [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(475), + [sym_protected_body_stub] = STATE(417), [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1867), + [sym_non_empty_declarative_part] = STATE(1610), [sym_enumeration_representation_clause] = STATE(23), [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1078), + [sym_function_specification] = STATE(1115), [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), + [sym_generic_formal_part] = STATE(925), [sym_generic_subprogram_declaration] = STATE(23), [sym_generic_package_declaration] = STATE(23), [sym_generic_instantiation] = STATE(23), [sym_null_procedure_declaration] = STATE(23), [sym_number_declaration] = STATE(23), [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(419), - [sym_task_type_declaration] = STATE(460), - [sym_overriding_indicator] = STATE(1005), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(419), + [sym_overriding_indicator] = STATE(976), [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1058), + [sym_procedure_specification] = STATE(1142), [sym_record_representation_clause] = STATE(23), [sym__renaming_declaration] = STATE(23), [sym_object_renaming_declaration] = STATE(23), @@ -10240,7 +10244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_renaming_declaration] = STATE(23), [sym_subprogram_declaration] = STATE(23), [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1049), + [sym__subprogram_specification] = STATE(1043), [sym_subtype_declaration] = STATE(23), [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), [sym_identifier] = ACTIONS(201), @@ -10262,12 +10266,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [8] = { - [sym__defining_identifier_list] = STATE(1662), + [sym__defining_identifier_list] = STATE(1664), [sym__declarative_item] = STATE(23), [sym__basic_declarative_item] = STATE(23), [sym__basic_declaration] = STATE(23), [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1625), + [sym_package_specification] = STATE(1627), [sym_use_clause] = STATE(23), [sym__proper_body] = STATE(23), [sym_subprogram_body] = STATE(23), @@ -10281,32 +10285,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(23), [sym_attribute_definition_clause] = STATE(23), [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(475), - [sym_package_body_stub] = STATE(475), + [sym_subprogram_body_stub] = STATE(417), + [sym_package_body_stub] = STATE(417), [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(475), - [sym_protected_type_declaration] = STATE(460), - [sym_single_protected_declaration] = STATE(419), + [sym_task_body_stub] = STATE(417), + [sym_protected_type_declaration] = STATE(419), + [sym_single_protected_declaration] = STATE(426), [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(475), + [sym_protected_body_stub] = STATE(417), [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1797), + [sym_non_empty_declarative_part] = STATE(1848), [sym_enumeration_representation_clause] = STATE(23), [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1078), + [sym_function_specification] = STATE(1115), [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), + [sym_generic_formal_part] = STATE(925), [sym_generic_subprogram_declaration] = STATE(23), [sym_generic_package_declaration] = STATE(23), [sym_generic_instantiation] = STATE(23), [sym_null_procedure_declaration] = STATE(23), [sym_number_declaration] = STATE(23), [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(419), - [sym_task_type_declaration] = STATE(460), - [sym_overriding_indicator] = STATE(1005), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(419), + [sym_overriding_indicator] = STATE(976), [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1058), + [sym_procedure_specification] = STATE(1142), [sym_record_representation_clause] = STATE(23), [sym__renaming_declaration] = STATE(23), [sym_object_renaming_declaration] = STATE(23), @@ -10316,7 +10320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_renaming_declaration] = STATE(23), [sym_subprogram_declaration] = STATE(23), [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1049), + [sym__subprogram_specification] = STATE(1043), [sym_subtype_declaration] = STATE(23), [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), [sym_identifier] = ACTIONS(201), @@ -10338,12 +10342,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [9] = { - [sym__defining_identifier_list] = STATE(1662), + [sym__defining_identifier_list] = STATE(1664), [sym__declarative_item] = STATE(23), [sym__basic_declarative_item] = STATE(23), [sym__basic_declaration] = STATE(23), [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1625), + [sym_package_specification] = STATE(1627), [sym_use_clause] = STATE(23), [sym__proper_body] = STATE(23), [sym_subprogram_body] = STATE(23), @@ -10357,32 +10361,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(23), [sym_attribute_definition_clause] = STATE(23), [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(475), - [sym_package_body_stub] = STATE(475), + [sym_subprogram_body_stub] = STATE(417), + [sym_package_body_stub] = STATE(417), [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(475), - [sym_protected_type_declaration] = STATE(460), - [sym_single_protected_declaration] = STATE(419), + [sym_task_body_stub] = STATE(417), + [sym_protected_type_declaration] = STATE(419), + [sym_single_protected_declaration] = STATE(426), [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(475), + [sym_protected_body_stub] = STATE(417), [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1389), + [sym_non_empty_declarative_part] = STATE(1456), [sym_enumeration_representation_clause] = STATE(23), [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1078), + [sym_function_specification] = STATE(1115), [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), + [sym_generic_formal_part] = STATE(925), [sym_generic_subprogram_declaration] = STATE(23), [sym_generic_package_declaration] = STATE(23), [sym_generic_instantiation] = STATE(23), [sym_null_procedure_declaration] = STATE(23), [sym_number_declaration] = STATE(23), [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(419), - [sym_task_type_declaration] = STATE(460), - [sym_overriding_indicator] = STATE(1005), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(419), + [sym_overriding_indicator] = STATE(976), [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1058), + [sym_procedure_specification] = STATE(1142), [sym_record_representation_clause] = STATE(23), [sym__renaming_declaration] = STATE(23), [sym_object_renaming_declaration] = STATE(23), @@ -10392,7 +10396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_renaming_declaration] = STATE(23), [sym_subprogram_declaration] = STATE(23), [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1049), + [sym__subprogram_specification] = STATE(1043), [sym_subtype_declaration] = STATE(23), [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), [sym_identifier] = ACTIONS(201), @@ -10400,9 +10404,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iterated_element_association_token1] = ACTIONS(203), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_package_specification_token3] = ACTIONS(257), + [aux_sym_package_specification_token3] = ACTIONS(259), [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(259), + [aux_sym_subprogram_body_token1] = ACTIONS(261), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), @@ -10414,12 +10418,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [10] = { - [sym__defining_identifier_list] = STATE(1662), + [sym__defining_identifier_list] = STATE(1664), [sym__declarative_item] = STATE(23), [sym__basic_declarative_item] = STATE(23), [sym__basic_declaration] = STATE(23), [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1625), + [sym_package_specification] = STATE(1627), [sym_use_clause] = STATE(23), [sym__proper_body] = STATE(23), [sym_subprogram_body] = STATE(23), @@ -10433,32 +10437,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(23), [sym_attribute_definition_clause] = STATE(23), [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(475), - [sym_package_body_stub] = STATE(475), + [sym_subprogram_body_stub] = STATE(417), + [sym_package_body_stub] = STATE(417), [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(475), - [sym_protected_type_declaration] = STATE(460), - [sym_single_protected_declaration] = STATE(419), + [sym_task_body_stub] = STATE(417), + [sym_protected_type_declaration] = STATE(419), + [sym_single_protected_declaration] = STATE(426), [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(475), + [sym_protected_body_stub] = STATE(417), [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1423), + [sym_non_empty_declarative_part] = STATE(1345), [sym_enumeration_representation_clause] = STATE(23), [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1078), + [sym_function_specification] = STATE(1115), [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), + [sym_generic_formal_part] = STATE(925), [sym_generic_subprogram_declaration] = STATE(23), [sym_generic_package_declaration] = STATE(23), [sym_generic_instantiation] = STATE(23), [sym_null_procedure_declaration] = STATE(23), [sym_number_declaration] = STATE(23), [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(419), - [sym_task_type_declaration] = STATE(460), - [sym_overriding_indicator] = STATE(1005), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(419), + [sym_overriding_indicator] = STATE(976), [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1058), + [sym_procedure_specification] = STATE(1142), [sym_record_representation_clause] = STATE(23), [sym__renaming_declaration] = STATE(23), [sym_object_renaming_declaration] = STATE(23), @@ -10468,7 +10472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_renaming_declaration] = STATE(23), [sym_subprogram_declaration] = STATE(23), [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1049), + [sym__subprogram_specification] = STATE(1043), [sym_subtype_declaration] = STATE(23), [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), [sym_identifier] = ACTIONS(201), @@ -10476,9 +10480,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iterated_element_association_token1] = ACTIONS(203), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_package_specification_token3] = ACTIONS(261), + [aux_sym_package_specification_token3] = ACTIONS(263), [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(263), + [aux_sym_subprogram_body_token1] = ACTIONS(265), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), @@ -10490,12 +10494,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [11] = { - [sym__defining_identifier_list] = STATE(1662), + [sym__defining_identifier_list] = STATE(1664), [sym__declarative_item] = STATE(23), [sym__basic_declarative_item] = STATE(23), [sym__basic_declaration] = STATE(23), [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1625), + [sym_package_specification] = STATE(1627), [sym_use_clause] = STATE(23), [sym__proper_body] = STATE(23), [sym_subprogram_body] = STATE(23), @@ -10509,32 +10513,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(23), [sym_attribute_definition_clause] = STATE(23), [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(475), - [sym_package_body_stub] = STATE(475), + [sym_subprogram_body_stub] = STATE(417), + [sym_package_body_stub] = STATE(417), [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(475), - [sym_protected_type_declaration] = STATE(460), - [sym_single_protected_declaration] = STATE(419), + [sym_task_body_stub] = STATE(417), + [sym_protected_type_declaration] = STATE(419), + [sym_single_protected_declaration] = STATE(426), [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(475), + [sym_protected_body_stub] = STATE(417), [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1726), + [sym_non_empty_declarative_part] = STATE(1756), [sym_enumeration_representation_clause] = STATE(23), [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1078), + [sym_function_specification] = STATE(1115), [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), + [sym_generic_formal_part] = STATE(925), [sym_generic_subprogram_declaration] = STATE(23), [sym_generic_package_declaration] = STATE(23), [sym_generic_instantiation] = STATE(23), [sym_null_procedure_declaration] = STATE(23), [sym_number_declaration] = STATE(23), [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(419), - [sym_task_type_declaration] = STATE(460), - [sym_overriding_indicator] = STATE(1005), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(419), + [sym_overriding_indicator] = STATE(976), [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1058), + [sym_procedure_specification] = STATE(1142), [sym_record_representation_clause] = STATE(23), [sym__renaming_declaration] = STATE(23), [sym_object_renaming_declaration] = STATE(23), @@ -10544,83 +10548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_renaming_declaration] = STATE(23), [sym_subprogram_declaration] = STATE(23), [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1049), - [sym_subtype_declaration] = STATE(23), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), - [sym_identifier] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(203), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subunit_token1] = ACTIONS(265), - [aux_sym_subprogram_body_token1] = ACTIONS(267), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_subtype_declaration_token1] = ACTIONS(81), - }, - [12] = { - [sym__defining_identifier_list] = STATE(1662), - [sym__declarative_item] = STATE(23), - [sym__basic_declarative_item] = STATE(23), - [sym__basic_declaration] = STATE(23), - [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1625), - [sym_use_clause] = STATE(23), - [sym__proper_body] = STATE(23), - [sym_subprogram_body] = STATE(23), - [sym_package_body] = STATE(23), - [sym__type_declaration] = STATE(23), - [sym_full_type_declaration] = STATE(23), - [sym_private_type_declaration] = STATE(23), - [sym_private_extension_declaration] = STATE(23), - [sym_incomplete_type_declaration] = STATE(23), - [sym__aspect_clause] = STATE(23), - [sym_at_clause] = STATE(23), - [sym_attribute_definition_clause] = STATE(23), - [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(475), - [sym_package_body_stub] = STATE(475), - [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(475), - [sym_protected_type_declaration] = STATE(460), - [sym_single_protected_declaration] = STATE(419), - [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(475), - [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1855), - [sym_enumeration_representation_clause] = STATE(23), - [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1078), - [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(23), - [sym_generic_package_declaration] = STATE(23), - [sym_generic_instantiation] = STATE(23), - [sym_null_procedure_declaration] = STATE(23), - [sym_number_declaration] = STATE(23), - [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(419), - [sym_task_type_declaration] = STATE(460), - [sym_overriding_indicator] = STATE(1005), - [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1058), - [sym_record_representation_clause] = STATE(23), - [sym__renaming_declaration] = STATE(23), - [sym_object_renaming_declaration] = STATE(23), - [sym_exception_renaming_declaration] = STATE(23), - [sym_package_renaming_declaration] = STATE(23), - [sym_subprogram_renaming_declaration] = STATE(23), - [sym_generic_renaming_declaration] = STATE(23), - [sym_subprogram_declaration] = STATE(23), - [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1049), + [sym__subprogram_specification] = STATE(1043), [sym_subtype_declaration] = STATE(23), [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), [sym_identifier] = ACTIONS(201), @@ -10629,6 +10557,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subunit_token1] = ACTIONS(267), [aux_sym_subprogram_body_token1] = ACTIONS(269), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), @@ -10640,13 +10569,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pragma_g_token1] = ACTIONS(57), [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, - [13] = { - [sym__defining_identifier_list] = STATE(1662), + [12] = { + [sym__defining_identifier_list] = STATE(1664), [sym__declarative_item] = STATE(23), [sym__basic_declarative_item] = STATE(23), [sym__basic_declaration] = STATE(23), [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1625), + [sym_package_specification] = STATE(1627), [sym_use_clause] = STATE(23), [sym__proper_body] = STATE(23), [sym_subprogram_body] = STATE(23), @@ -10660,32 +10589,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(23), [sym_attribute_definition_clause] = STATE(23), [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(475), - [sym_package_body_stub] = STATE(475), + [sym_subprogram_body_stub] = STATE(417), + [sym_package_body_stub] = STATE(417), [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(475), - [sym_protected_type_declaration] = STATE(460), - [sym_single_protected_declaration] = STATE(419), + [sym_task_body_stub] = STATE(417), + [sym_protected_type_declaration] = STATE(419), + [sym_single_protected_declaration] = STATE(426), [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(475), + [sym_protected_body_stub] = STATE(417), [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1900), + [sym_non_empty_declarative_part] = STATE(1857), [sym_enumeration_representation_clause] = STATE(23), [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1078), + [sym_function_specification] = STATE(1115), [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), + [sym_generic_formal_part] = STATE(925), [sym_generic_subprogram_declaration] = STATE(23), [sym_generic_package_declaration] = STATE(23), [sym_generic_instantiation] = STATE(23), [sym_null_procedure_declaration] = STATE(23), [sym_number_declaration] = STATE(23), [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(419), - [sym_task_type_declaration] = STATE(460), - [sym_overriding_indicator] = STATE(1005), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(419), + [sym_overriding_indicator] = STATE(976), [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1058), + [sym_procedure_specification] = STATE(1142), [sym_record_representation_clause] = STATE(23), [sym__renaming_declaration] = STATE(23), [sym_object_renaming_declaration] = STATE(23), @@ -10695,7 +10624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_renaming_declaration] = STATE(23), [sym_subprogram_declaration] = STATE(23), [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1049), + [sym__subprogram_specification] = STATE(1043), [sym_subtype_declaration] = STATE(23), [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), [sym_identifier] = ACTIONS(201), @@ -10715,13 +10644,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pragma_g_token1] = ACTIONS(57), [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, - [14] = { - [sym__defining_identifier_list] = STATE(1662), + [13] = { + [sym__defining_identifier_list] = STATE(1664), [sym__declarative_item] = STATE(23), [sym__basic_declarative_item] = STATE(23), [sym__basic_declaration] = STATE(23), [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1625), + [sym_package_specification] = STATE(1627), [sym_use_clause] = STATE(23), [sym__proper_body] = STATE(23), [sym_subprogram_body] = STATE(23), @@ -10735,32 +10664,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(23), [sym_attribute_definition_clause] = STATE(23), [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(475), - [sym_package_body_stub] = STATE(475), + [sym_subprogram_body_stub] = STATE(417), + [sym_package_body_stub] = STATE(417), [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(475), - [sym_protected_type_declaration] = STATE(460), - [sym_single_protected_declaration] = STATE(419), + [sym_task_body_stub] = STATE(417), + [sym_protected_type_declaration] = STATE(419), + [sym_single_protected_declaration] = STATE(426), [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(475), + [sym_protected_body_stub] = STATE(417), [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1797), + [sym_non_empty_declarative_part] = STATE(1902), [sym_enumeration_representation_clause] = STATE(23), [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1078), + [sym_function_specification] = STATE(1115), [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), + [sym_generic_formal_part] = STATE(925), [sym_generic_subprogram_declaration] = STATE(23), [sym_generic_package_declaration] = STATE(23), [sym_generic_instantiation] = STATE(23), [sym_null_procedure_declaration] = STATE(23), [sym_number_declaration] = STATE(23), [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(419), - [sym_task_type_declaration] = STATE(460), - [sym_overriding_indicator] = STATE(1005), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(419), + [sym_overriding_indicator] = STATE(976), [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1058), + [sym_procedure_specification] = STATE(1142), [sym_record_representation_clause] = STATE(23), [sym__renaming_declaration] = STATE(23), [sym_object_renaming_declaration] = STATE(23), @@ -10770,7 +10699,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_renaming_declaration] = STATE(23), [sym_subprogram_declaration] = STATE(23), [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1049), + [sym__subprogram_specification] = STATE(1043), + [sym_subtype_declaration] = STATE(23), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(273), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [14] = { + [sym__defining_identifier_list] = STATE(1664), + [sym__declarative_item] = STATE(23), + [sym__basic_declarative_item] = STATE(23), + [sym__basic_declaration] = STATE(23), + [sym__package_declaration] = STATE(23), + [sym_package_specification] = STATE(1627), + [sym_use_clause] = STATE(23), + [sym__proper_body] = STATE(23), + [sym_subprogram_body] = STATE(23), + [sym_package_body] = STATE(23), + [sym__type_declaration] = STATE(23), + [sym_full_type_declaration] = STATE(23), + [sym_private_type_declaration] = STATE(23), + [sym_private_extension_declaration] = STATE(23), + [sym_incomplete_type_declaration] = STATE(23), + [sym__aspect_clause] = STATE(23), + [sym_at_clause] = STATE(23), + [sym_attribute_definition_clause] = STATE(23), + [sym_body_stub] = STATE(23), + [sym_subprogram_body_stub] = STATE(417), + [sym_package_body_stub] = STATE(417), + [sym_task_body] = STATE(23), + [sym_task_body_stub] = STATE(417), + [sym_protected_type_declaration] = STATE(419), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(23), + [sym_protected_body_stub] = STATE(417), + [sym__declarative_item_pragma] = STATE(23), + [sym_non_empty_declarative_part] = STATE(1848), + [sym_enumeration_representation_clause] = STATE(23), + [sym_exception_declaration] = STATE(23), + [sym_function_specification] = STATE(1115), + [sym__generic_declaration] = STATE(23), + [sym_generic_formal_part] = STATE(925), + [sym_generic_subprogram_declaration] = STATE(23), + [sym_generic_package_declaration] = STATE(23), + [sym_generic_instantiation] = STATE(23), + [sym_null_procedure_declaration] = STATE(23), + [sym_number_declaration] = STATE(23), + [sym_object_declaration] = STATE(23), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(419), + [sym_overriding_indicator] = STATE(976), + [sym_pragma_g] = STATE(23), + [sym_procedure_specification] = STATE(1142), + [sym_record_representation_clause] = STATE(23), + [sym__renaming_declaration] = STATE(23), + [sym_object_renaming_declaration] = STATE(23), + [sym_exception_renaming_declaration] = STATE(23), + [sym_package_renaming_declaration] = STATE(23), + [sym_subprogram_renaming_declaration] = STATE(23), + [sym_generic_renaming_declaration] = STATE(23), + [sym_subprogram_declaration] = STATE(23), + [sym_expression_function_declaration] = STATE(23), + [sym__subprogram_specification] = STATE(1043), [sym_subtype_declaration] = STATE(23), [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), [sym_identifier] = ACTIONS(201), @@ -10791,12 +10795,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [15] = { - [sym__defining_identifier_list] = STATE(1662), + [sym__defining_identifier_list] = STATE(1664), [sym__declarative_item] = STATE(15), [sym__basic_declarative_item] = STATE(15), [sym__basic_declaration] = STATE(15), [sym__package_declaration] = STATE(15), - [sym_package_specification] = STATE(1625), + [sym_package_specification] = STATE(1627), [sym_use_clause] = STATE(15), [sym__proper_body] = STATE(15), [sym_subprogram_body] = STATE(15), @@ -10810,31 +10814,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(15), [sym_attribute_definition_clause] = STATE(15), [sym_body_stub] = STATE(15), - [sym_subprogram_body_stub] = STATE(475), - [sym_package_body_stub] = STATE(475), + [sym_subprogram_body_stub] = STATE(417), + [sym_package_body_stub] = STATE(417), [sym_task_body] = STATE(15), - [sym_task_body_stub] = STATE(475), - [sym_protected_type_declaration] = STATE(460), - [sym_single_protected_declaration] = STATE(419), + [sym_task_body_stub] = STATE(417), + [sym_protected_type_declaration] = STATE(419), + [sym_single_protected_declaration] = STATE(426), [sym_protected_body] = STATE(15), - [sym_protected_body_stub] = STATE(475), + [sym_protected_body_stub] = STATE(417), [sym__declarative_item_pragma] = STATE(15), [sym_enumeration_representation_clause] = STATE(15), [sym_exception_declaration] = STATE(15), - [sym_function_specification] = STATE(1078), + [sym_function_specification] = STATE(1115), [sym__generic_declaration] = STATE(15), - [sym_generic_formal_part] = STATE(907), + [sym_generic_formal_part] = STATE(925), [sym_generic_subprogram_declaration] = STATE(15), [sym_generic_package_declaration] = STATE(15), [sym_generic_instantiation] = STATE(15), [sym_null_procedure_declaration] = STATE(15), [sym_number_declaration] = STATE(15), [sym_object_declaration] = STATE(15), - [sym_single_task_declaration] = STATE(419), - [sym_task_type_declaration] = STATE(460), - [sym_overriding_indicator] = STATE(1005), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(419), + [sym_overriding_indicator] = STATE(976), [sym_pragma_g] = STATE(15), - [sym_procedure_specification] = STATE(1058), + [sym_procedure_specification] = STATE(1142), [sym_record_representation_clause] = STATE(15), [sym__renaming_declaration] = STATE(15), [sym_object_renaming_declaration] = STATE(15), @@ -10844,34 +10848,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_renaming_declaration] = STATE(15), [sym_subprogram_declaration] = STATE(15), [sym_expression_function_declaration] = STATE(15), - [sym__subprogram_specification] = STATE(1049), + [sym__subprogram_specification] = STATE(1043), [sym_subtype_declaration] = STATE(15), [aux_sym_non_empty_declarative_part_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(273), + [sym_identifier] = ACTIONS(275), [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(276), - [aux_sym_iterated_element_association_token2] = ACTIONS(279), - [aux_sym_package_specification_token1] = ACTIONS(282), - [aux_sym_package_specification_token3] = ACTIONS(285), - [aux_sym_use_clause_token2] = ACTIONS(287), - [aux_sym_subprogram_body_token1] = ACTIONS(285), - [aux_sym_relation_membership_token1] = ACTIONS(290), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(293), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(296), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(299), - [aux_sym_interface_type_definition_token1] = ACTIONS(302), - [aux_sym_generic_formal_part_token1] = ACTIONS(305), - [aux_sym_global_mode_token1] = ACTIONS(308), - [aux_sym_pragma_g_token1] = ACTIONS(311), - [aux_sym_subtype_declaration_token1] = ACTIONS(314), + [aux_sym_iterated_element_association_token1] = ACTIONS(278), + [aux_sym_iterated_element_association_token2] = ACTIONS(281), + [aux_sym_package_specification_token1] = ACTIONS(284), + [aux_sym_package_specification_token3] = ACTIONS(287), + [aux_sym_use_clause_token2] = ACTIONS(289), + [aux_sym_subprogram_body_token1] = ACTIONS(287), + [aux_sym_relation_membership_token1] = ACTIONS(292), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(295), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(298), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(301), + [aux_sym_interface_type_definition_token1] = ACTIONS(304), + [aux_sym_generic_formal_part_token1] = ACTIONS(307), + [aux_sym_global_mode_token1] = ACTIONS(310), + [aux_sym_pragma_g_token1] = ACTIONS(313), + [aux_sym_subtype_declaration_token1] = ACTIONS(316), }, [16] = { - [sym__defining_identifier_list] = STATE(1662), + [sym__defining_identifier_list] = STATE(1664), [sym__declarative_item] = STATE(23), [sym__basic_declarative_item] = STATE(23), [sym__basic_declaration] = STATE(23), [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1625), + [sym_package_specification] = STATE(1627), [sym_use_clause] = STATE(23), [sym__proper_body] = STATE(23), [sym_subprogram_body] = STATE(23), @@ -10885,32 +10889,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(23), [sym_attribute_definition_clause] = STATE(23), [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(475), - [sym_package_body_stub] = STATE(475), + [sym_subprogram_body_stub] = STATE(417), + [sym_package_body_stub] = STATE(417), [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(475), - [sym_protected_type_declaration] = STATE(460), - [sym_single_protected_declaration] = STATE(419), + [sym_task_body_stub] = STATE(417), + [sym_protected_type_declaration] = STATE(419), + [sym_single_protected_declaration] = STATE(426), [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(475), + [sym_protected_body_stub] = STATE(417), [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1603), + [sym_non_empty_declarative_part] = STATE(1618), [sym_enumeration_representation_clause] = STATE(23), [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1078), + [sym_function_specification] = STATE(1115), [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), + [sym_generic_formal_part] = STATE(925), [sym_generic_subprogram_declaration] = STATE(23), [sym_generic_package_declaration] = STATE(23), [sym_generic_instantiation] = STATE(23), [sym_null_procedure_declaration] = STATE(23), [sym_number_declaration] = STATE(23), [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(419), - [sym_task_type_declaration] = STATE(460), - [sym_overriding_indicator] = STATE(1005), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(419), + [sym_overriding_indicator] = STATE(976), [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1058), + [sym_procedure_specification] = STATE(1142), [sym_record_representation_clause] = STATE(23), [sym__renaming_declaration] = STATE(23), [sym_object_renaming_declaration] = STATE(23), @@ -10920,82 +10924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_renaming_declaration] = STATE(23), [sym_subprogram_declaration] = STATE(23), [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1049), - [sym_subtype_declaration] = STATE(23), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), - [sym_identifier] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(203), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(317), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_subtype_declaration_token1] = ACTIONS(81), - }, - [17] = { - [sym__defining_identifier_list] = STATE(1662), - [sym__declarative_item] = STATE(23), - [sym__basic_declarative_item] = STATE(23), - [sym__basic_declaration] = STATE(23), - [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1625), - [sym_use_clause] = STATE(23), - [sym__proper_body] = STATE(23), - [sym_subprogram_body] = STATE(23), - [sym_package_body] = STATE(23), - [sym__type_declaration] = STATE(23), - [sym_full_type_declaration] = STATE(23), - [sym_private_type_declaration] = STATE(23), - [sym_private_extension_declaration] = STATE(23), - [sym_incomplete_type_declaration] = STATE(23), - [sym__aspect_clause] = STATE(23), - [sym_at_clause] = STATE(23), - [sym_attribute_definition_clause] = STATE(23), - [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(475), - [sym_package_body_stub] = STATE(475), - [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(475), - [sym_protected_type_declaration] = STATE(460), - [sym_single_protected_declaration] = STATE(419), - [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(475), - [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1591), - [sym_enumeration_representation_clause] = STATE(23), - [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1078), - [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(23), - [sym_generic_package_declaration] = STATE(23), - [sym_generic_instantiation] = STATE(23), - [sym_null_procedure_declaration] = STATE(23), - [sym_number_declaration] = STATE(23), - [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(419), - [sym_task_type_declaration] = STATE(460), - [sym_overriding_indicator] = STATE(1005), - [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1058), - [sym_record_representation_clause] = STATE(23), - [sym__renaming_declaration] = STATE(23), - [sym_object_renaming_declaration] = STATE(23), - [sym_exception_renaming_declaration] = STATE(23), - [sym_package_renaming_declaration] = STATE(23), - [sym_subprogram_renaming_declaration] = STATE(23), - [sym_generic_renaming_declaration] = STATE(23), - [sym_subprogram_declaration] = STATE(23), - [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1049), + [sym__subprogram_specification] = STATE(1043), [sym_subtype_declaration] = STATE(23), [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), [sym_identifier] = ACTIONS(201), @@ -11015,13 +10944,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pragma_g_token1] = ACTIONS(57), [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, - [18] = { - [sym__defining_identifier_list] = STATE(1662), + [17] = { + [sym__defining_identifier_list] = STATE(1664), [sym__declarative_item] = STATE(23), [sym__basic_declarative_item] = STATE(23), [sym__basic_declaration] = STATE(23), [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1625), + [sym_package_specification] = STATE(1627), [sym_use_clause] = STATE(23), [sym__proper_body] = STATE(23), [sym_subprogram_body] = STATE(23), @@ -11035,32 +10964,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(23), [sym_attribute_definition_clause] = STATE(23), [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(475), - [sym_package_body_stub] = STATE(475), + [sym_subprogram_body_stub] = STATE(417), + [sym_package_body_stub] = STATE(417), [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(475), - [sym_protected_type_declaration] = STATE(460), - [sym_single_protected_declaration] = STATE(419), + [sym_task_body_stub] = STATE(417), + [sym_protected_type_declaration] = STATE(419), + [sym_single_protected_declaration] = STATE(426), [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(475), + [sym_protected_body_stub] = STATE(417), [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1914), + [sym_non_empty_declarative_part] = STATE(1842), [sym_enumeration_representation_clause] = STATE(23), [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1078), + [sym_function_specification] = STATE(1115), [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), + [sym_generic_formal_part] = STATE(925), [sym_generic_subprogram_declaration] = STATE(23), [sym_generic_package_declaration] = STATE(23), [sym_generic_instantiation] = STATE(23), [sym_null_procedure_declaration] = STATE(23), [sym_number_declaration] = STATE(23), [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(419), - [sym_task_type_declaration] = STATE(460), - [sym_overriding_indicator] = STATE(1005), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(419), + [sym_overriding_indicator] = STATE(976), [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1058), + [sym_procedure_specification] = STATE(1142), [sym_record_representation_clause] = STATE(23), [sym__renaming_declaration] = STATE(23), [sym_object_renaming_declaration] = STATE(23), @@ -11070,7 +10999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_renaming_declaration] = STATE(23), [sym_subprogram_declaration] = STATE(23), [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1049), + [sym__subprogram_specification] = STATE(1043), [sym_subtype_declaration] = STATE(23), [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), [sym_identifier] = ACTIONS(201), @@ -11090,13 +11019,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pragma_g_token1] = ACTIONS(57), [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, - [19] = { - [sym__defining_identifier_list] = STATE(1662), + [18] = { + [sym__defining_identifier_list] = STATE(1664), [sym__declarative_item] = STATE(23), [sym__basic_declarative_item] = STATE(23), [sym__basic_declaration] = STATE(23), [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1625), + [sym_package_specification] = STATE(1627), [sym_use_clause] = STATE(23), [sym__proper_body] = STATE(23), [sym_subprogram_body] = STATE(23), @@ -11110,32 +11039,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(23), [sym_attribute_definition_clause] = STATE(23), [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(475), - [sym_package_body_stub] = STATE(475), + [sym_subprogram_body_stub] = STATE(417), + [sym_package_body_stub] = STATE(417), [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(475), - [sym_protected_type_declaration] = STATE(460), - [sym_single_protected_declaration] = STATE(419), + [sym_task_body_stub] = STATE(417), + [sym_protected_type_declaration] = STATE(419), + [sym_single_protected_declaration] = STATE(426), [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(475), + [sym_protected_body_stub] = STATE(417), [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1726), + [sym_non_empty_declarative_part] = STATE(1659), [sym_enumeration_representation_clause] = STATE(23), [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1078), + [sym_function_specification] = STATE(1115), [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), + [sym_generic_formal_part] = STATE(925), [sym_generic_subprogram_declaration] = STATE(23), [sym_generic_package_declaration] = STATE(23), [sym_generic_instantiation] = STATE(23), [sym_null_procedure_declaration] = STATE(23), [sym_number_declaration] = STATE(23), [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(419), - [sym_task_type_declaration] = STATE(460), - [sym_overriding_indicator] = STATE(1005), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(419), + [sym_overriding_indicator] = STATE(976), [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1058), + [sym_procedure_specification] = STATE(1142), [sym_record_representation_clause] = STATE(23), [sym__renaming_declaration] = STATE(23), [sym_object_renaming_declaration] = STATE(23), @@ -11145,7 +11074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_renaming_declaration] = STATE(23), [sym_subprogram_declaration] = STATE(23), [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1049), + [sym__subprogram_specification] = STATE(1043), [sym_subtype_declaration] = STATE(23), [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), [sym_identifier] = ACTIONS(201), @@ -11154,7 +11083,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(267), + [aux_sym_subprogram_body_token1] = ACTIONS(323), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [19] = { + [sym__defining_identifier_list] = STATE(1664), + [sym__declarative_item] = STATE(23), + [sym__basic_declarative_item] = STATE(23), + [sym__basic_declaration] = STATE(23), + [sym__package_declaration] = STATE(23), + [sym_package_specification] = STATE(1627), + [sym_use_clause] = STATE(23), + [sym__proper_body] = STATE(23), + [sym_subprogram_body] = STATE(23), + [sym_package_body] = STATE(23), + [sym__type_declaration] = STATE(23), + [sym_full_type_declaration] = STATE(23), + [sym_private_type_declaration] = STATE(23), + [sym_private_extension_declaration] = STATE(23), + [sym_incomplete_type_declaration] = STATE(23), + [sym__aspect_clause] = STATE(23), + [sym_at_clause] = STATE(23), + [sym_attribute_definition_clause] = STATE(23), + [sym_body_stub] = STATE(23), + [sym_subprogram_body_stub] = STATE(417), + [sym_package_body_stub] = STATE(417), + [sym_task_body] = STATE(23), + [sym_task_body_stub] = STATE(417), + [sym_protected_type_declaration] = STATE(419), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(23), + [sym_protected_body_stub] = STATE(417), + [sym__declarative_item_pragma] = STATE(23), + [sym_non_empty_declarative_part] = STATE(1756), + [sym_enumeration_representation_clause] = STATE(23), + [sym_exception_declaration] = STATE(23), + [sym_function_specification] = STATE(1115), + [sym__generic_declaration] = STATE(23), + [sym_generic_formal_part] = STATE(925), + [sym_generic_subprogram_declaration] = STATE(23), + [sym_generic_package_declaration] = STATE(23), + [sym_generic_instantiation] = STATE(23), + [sym_null_procedure_declaration] = STATE(23), + [sym_number_declaration] = STATE(23), + [sym_object_declaration] = STATE(23), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(419), + [sym_overriding_indicator] = STATE(976), + [sym_pragma_g] = STATE(23), + [sym_procedure_specification] = STATE(1142), + [sym_record_representation_clause] = STATE(23), + [sym__renaming_declaration] = STATE(23), + [sym_object_renaming_declaration] = STATE(23), + [sym_exception_renaming_declaration] = STATE(23), + [sym_package_renaming_declaration] = STATE(23), + [sym_subprogram_renaming_declaration] = STATE(23), + [sym_generic_renaming_declaration] = STATE(23), + [sym_subprogram_declaration] = STATE(23), + [sym_expression_function_declaration] = STATE(23), + [sym__subprogram_specification] = STATE(1043), + [sym_subtype_declaration] = STATE(23), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(269), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), @@ -11166,12 +11170,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [20] = { - [sym__defining_identifier_list] = STATE(1662), + [sym__defining_identifier_list] = STATE(1664), [sym__declarative_item] = STATE(23), [sym__basic_declarative_item] = STATE(23), [sym__basic_declaration] = STATE(23), [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1625), + [sym_package_specification] = STATE(1627), [sym_use_clause] = STATE(23), [sym__proper_body] = STATE(23), [sym_subprogram_body] = STATE(23), @@ -11185,32 +11189,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(23), [sym_attribute_definition_clause] = STATE(23), [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(475), - [sym_package_body_stub] = STATE(475), + [sym_subprogram_body_stub] = STATE(417), + [sym_package_body_stub] = STATE(417), [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(475), - [sym_protected_type_declaration] = STATE(460), - [sym_single_protected_declaration] = STATE(419), + [sym_task_body_stub] = STATE(417), + [sym_protected_type_declaration] = STATE(419), + [sym_single_protected_declaration] = STATE(426), [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(475), + [sym_protected_body_stub] = STATE(417), [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1867), + [sym_non_empty_declarative_part] = STATE(1610), [sym_enumeration_representation_clause] = STATE(23), [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1078), + [sym_function_specification] = STATE(1115), [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), + [sym_generic_formal_part] = STATE(925), [sym_generic_subprogram_declaration] = STATE(23), [sym_generic_package_declaration] = STATE(23), [sym_generic_instantiation] = STATE(23), [sym_null_procedure_declaration] = STATE(23), [sym_number_declaration] = STATE(23), [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(419), - [sym_task_type_declaration] = STATE(460), - [sym_overriding_indicator] = STATE(1005), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(419), + [sym_overriding_indicator] = STATE(976), [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1058), + [sym_procedure_specification] = STATE(1142), [sym_record_representation_clause] = STATE(23), [sym__renaming_declaration] = STATE(23), [sym_object_renaming_declaration] = STATE(23), @@ -11220,7 +11224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_renaming_declaration] = STATE(23), [sym_subprogram_declaration] = STATE(23), [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1049), + [sym__subprogram_specification] = STATE(1043), [sym_subtype_declaration] = STATE(23), [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), [sym_identifier] = ACTIONS(201), @@ -11241,12 +11245,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [21] = { - [sym__defining_identifier_list] = STATE(1662), + [sym__defining_identifier_list] = STATE(1664), [sym__declarative_item] = STATE(23), [sym__basic_declarative_item] = STATE(23), [sym__basic_declaration] = STATE(23), [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1625), + [sym_package_specification] = STATE(1627), [sym_use_clause] = STATE(23), [sym__proper_body] = STATE(23), [sym_subprogram_body] = STATE(23), @@ -11260,32 +11264,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(23), [sym_attribute_definition_clause] = STATE(23), [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(475), - [sym_package_body_stub] = STATE(475), + [sym_subprogram_body_stub] = STATE(417), + [sym_package_body_stub] = STATE(417), [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(475), - [sym_protected_type_declaration] = STATE(460), - [sym_single_protected_declaration] = STATE(419), + [sym_task_body_stub] = STATE(417), + [sym_protected_type_declaration] = STATE(419), + [sym_single_protected_declaration] = STATE(426), [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(475), + [sym_protected_body_stub] = STATE(417), [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1785), + [sym_non_empty_declarative_part] = STATE(1787), [sym_enumeration_representation_clause] = STATE(23), [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1078), + [sym_function_specification] = STATE(1115), [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), + [sym_generic_formal_part] = STATE(925), [sym_generic_subprogram_declaration] = STATE(23), [sym_generic_package_declaration] = STATE(23), [sym_generic_instantiation] = STATE(23), [sym_null_procedure_declaration] = STATE(23), [sym_number_declaration] = STATE(23), [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(419), - [sym_task_type_declaration] = STATE(460), - [sym_overriding_indicator] = STATE(1005), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(419), + [sym_overriding_indicator] = STATE(976), [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1058), + [sym_procedure_specification] = STATE(1142), [sym_record_representation_clause] = STATE(23), [sym__renaming_declaration] = STATE(23), [sym_object_renaming_declaration] = STATE(23), @@ -11295,82 +11299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_renaming_declaration] = STATE(23), [sym_subprogram_declaration] = STATE(23), [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1049), - [sym_subtype_declaration] = STATE(23), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), - [sym_identifier] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(203), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(323), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_subtype_declaration_token1] = ACTIONS(81), - }, - [22] = { - [sym__defining_identifier_list] = STATE(1662), - [sym__declarative_item] = STATE(23), - [sym__basic_declarative_item] = STATE(23), - [sym__basic_declaration] = STATE(23), - [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1625), - [sym_use_clause] = STATE(23), - [sym__proper_body] = STATE(23), - [sym_subprogram_body] = STATE(23), - [sym_package_body] = STATE(23), - [sym__type_declaration] = STATE(23), - [sym_full_type_declaration] = STATE(23), - [sym_private_type_declaration] = STATE(23), - [sym_private_extension_declaration] = STATE(23), - [sym_incomplete_type_declaration] = STATE(23), - [sym__aspect_clause] = STATE(23), - [sym_at_clause] = STATE(23), - [sym_attribute_definition_clause] = STATE(23), - [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(475), - [sym_package_body_stub] = STATE(475), - [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(475), - [sym_protected_type_declaration] = STATE(460), - [sym_single_protected_declaration] = STATE(419), - [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(475), - [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1651), - [sym_enumeration_representation_clause] = STATE(23), - [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1078), - [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(23), - [sym_generic_package_declaration] = STATE(23), - [sym_generic_instantiation] = STATE(23), - [sym_null_procedure_declaration] = STATE(23), - [sym_number_declaration] = STATE(23), - [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(419), - [sym_task_type_declaration] = STATE(460), - [sym_overriding_indicator] = STATE(1005), - [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1058), - [sym_record_representation_clause] = STATE(23), - [sym__renaming_declaration] = STATE(23), - [sym_object_renaming_declaration] = STATE(23), - [sym_exception_renaming_declaration] = STATE(23), - [sym_package_renaming_declaration] = STATE(23), - [sym_subprogram_renaming_declaration] = STATE(23), - [sym_generic_renaming_declaration] = STATE(23), - [sym_subprogram_declaration] = STATE(23), - [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1049), + [sym__subprogram_specification] = STATE(1043), [sym_subtype_declaration] = STATE(23), [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), [sym_identifier] = ACTIONS(201), @@ -11390,13 +11319,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pragma_g_token1] = ACTIONS(57), [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, + [22] = { + [sym__defining_identifier_list] = STATE(1664), + [sym__declarative_item] = STATE(23), + [sym__basic_declarative_item] = STATE(23), + [sym__basic_declaration] = STATE(23), + [sym__package_declaration] = STATE(23), + [sym_package_specification] = STATE(1627), + [sym_use_clause] = STATE(23), + [sym__proper_body] = STATE(23), + [sym_subprogram_body] = STATE(23), + [sym_package_body] = STATE(23), + [sym__type_declaration] = STATE(23), + [sym_full_type_declaration] = STATE(23), + [sym_private_type_declaration] = STATE(23), + [sym_private_extension_declaration] = STATE(23), + [sym_incomplete_type_declaration] = STATE(23), + [sym__aspect_clause] = STATE(23), + [sym_at_clause] = STATE(23), + [sym_attribute_definition_clause] = STATE(23), + [sym_body_stub] = STATE(23), + [sym_subprogram_body_stub] = STATE(417), + [sym_package_body_stub] = STATE(417), + [sym_task_body] = STATE(23), + [sym_task_body_stub] = STATE(417), + [sym_protected_type_declaration] = STATE(419), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(23), + [sym_protected_body_stub] = STATE(417), + [sym__declarative_item_pragma] = STATE(23), + [sym_non_empty_declarative_part] = STATE(1614), + [sym_enumeration_representation_clause] = STATE(23), + [sym_exception_declaration] = STATE(23), + [sym_function_specification] = STATE(1115), + [sym__generic_declaration] = STATE(23), + [sym_generic_formal_part] = STATE(925), + [sym_generic_subprogram_declaration] = STATE(23), + [sym_generic_package_declaration] = STATE(23), + [sym_generic_instantiation] = STATE(23), + [sym_null_procedure_declaration] = STATE(23), + [sym_number_declaration] = STATE(23), + [sym_object_declaration] = STATE(23), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(419), + [sym_overriding_indicator] = STATE(976), + [sym_pragma_g] = STATE(23), + [sym_procedure_specification] = STATE(1142), + [sym_record_representation_clause] = STATE(23), + [sym__renaming_declaration] = STATE(23), + [sym_object_renaming_declaration] = STATE(23), + [sym_exception_renaming_declaration] = STATE(23), + [sym_package_renaming_declaration] = STATE(23), + [sym_subprogram_renaming_declaration] = STATE(23), + [sym_generic_renaming_declaration] = STATE(23), + [sym_subprogram_declaration] = STATE(23), + [sym_expression_function_declaration] = STATE(23), + [sym__subprogram_specification] = STATE(1043), + [sym_subtype_declaration] = STATE(23), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(327), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, [23] = { - [sym__defining_identifier_list] = STATE(1662), + [sym__defining_identifier_list] = STATE(1664), [sym__declarative_item] = STATE(15), [sym__basic_declarative_item] = STATE(15), [sym__basic_declaration] = STATE(15), [sym__package_declaration] = STATE(15), - [sym_package_specification] = STATE(1625), + [sym_package_specification] = STATE(1627), [sym_use_clause] = STATE(15), [sym__proper_body] = STATE(15), [sym_subprogram_body] = STATE(15), @@ -11410,31 +11414,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(15), [sym_attribute_definition_clause] = STATE(15), [sym_body_stub] = STATE(15), - [sym_subprogram_body_stub] = STATE(475), - [sym_package_body_stub] = STATE(475), + [sym_subprogram_body_stub] = STATE(417), + [sym_package_body_stub] = STATE(417), [sym_task_body] = STATE(15), - [sym_task_body_stub] = STATE(475), - [sym_protected_type_declaration] = STATE(460), - [sym_single_protected_declaration] = STATE(419), + [sym_task_body_stub] = STATE(417), + [sym_protected_type_declaration] = STATE(419), + [sym_single_protected_declaration] = STATE(426), [sym_protected_body] = STATE(15), - [sym_protected_body_stub] = STATE(475), + [sym_protected_body_stub] = STATE(417), [sym__declarative_item_pragma] = STATE(15), [sym_enumeration_representation_clause] = STATE(15), [sym_exception_declaration] = STATE(15), - [sym_function_specification] = STATE(1078), + [sym_function_specification] = STATE(1115), [sym__generic_declaration] = STATE(15), - [sym_generic_formal_part] = STATE(907), + [sym_generic_formal_part] = STATE(925), [sym_generic_subprogram_declaration] = STATE(15), [sym_generic_package_declaration] = STATE(15), [sym_generic_instantiation] = STATE(15), [sym_null_procedure_declaration] = STATE(15), [sym_number_declaration] = STATE(15), [sym_object_declaration] = STATE(15), - [sym_single_task_declaration] = STATE(419), - [sym_task_type_declaration] = STATE(460), - [sym_overriding_indicator] = STATE(1005), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(419), + [sym_overriding_indicator] = STATE(976), [sym_pragma_g] = STATE(15), - [sym_procedure_specification] = STATE(1058), + [sym_procedure_specification] = STATE(1142), [sym_record_representation_clause] = STATE(15), [sym__renaming_declaration] = STATE(15), [sym_object_renaming_declaration] = STATE(15), @@ -11444,7 +11448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_renaming_declaration] = STATE(15), [sym_subprogram_declaration] = STATE(15), [sym_expression_function_declaration] = STATE(15), - [sym__subprogram_specification] = STATE(1049), + [sym__subprogram_specification] = STATE(1043), [sym_subtype_declaration] = STATE(15), [aux_sym_non_empty_declarative_part_repeat1] = STATE(15), [sym_identifier] = ACTIONS(201), @@ -11452,9 +11456,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iterated_element_association_token1] = ACTIONS(203), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_package_specification_token3] = ACTIONS(327), + [aux_sym_package_specification_token3] = ACTIONS(329), [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(327), + [aux_sym_subprogram_body_token1] = ACTIONS(329), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), @@ -11466,14 +11470,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [24] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_loop_label] = STATE(941), [sym_label] = STATE(27), [sym_null_statement] = STATE(25), [sym_pragma_g] = STATE(25), @@ -11499,35 +11503,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(25), [sym_extended_return_statement] = STATE(25), [sym_procedure_call_statement] = STATE(25), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(25), [sym_loop_statement] = STATE(25), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(27), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), - [aux_sym_iterator_filter_token1] = ACTIONS(333), - [aux_sym_package_specification_token3] = ACTIONS(333), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), + [aux_sym_iterator_filter_token1] = ACTIONS(335), + [aux_sym_package_specification_token3] = ACTIONS(335), [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_expression_token2] = ACTIONS(333), - [aux_sym_expression_token3] = ACTIONS(333), - [aux_sym_expression_token4] = ACTIONS(333), + [aux_sym_expression_token2] = ACTIONS(335), + [aux_sym_expression_token3] = ACTIONS(335), + [aux_sym_expression_token4] = ACTIONS(335), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), [aux_sym_declare_expression_token1] = ACTIONS(43), [aux_sym_case_expression_token1] = ACTIONS(45), - [aux_sym_exception_declaration_token1] = ACTIONS(333), + [aux_sym_exception_declaration_token1] = ACTIONS(335), [anon_sym_LT_LT] = ACTIONS(55), [aux_sym_pragma_g_token1] = ACTIONS(57), [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_elsif_expression_item_token1] = ACTIONS(333), + [aux_sym_elsif_expression_item_token1] = ACTIONS(335), [aux_sym_result_profile_token1] = ACTIONS(61), [aux_sym_asynchronous_select_token1] = ACTIONS(63), [aux_sym_asynchronous_select_token2] = ACTIONS(65), @@ -11540,14 +11544,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [25] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(25), [sym_pragma_g] = STATE(25), @@ -11573,59 +11577,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(25), [sym_extended_return_statement] = STATE(25), [sym_procedure_call_statement] = STATE(25), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(25), [sym_loop_statement] = STATE(25), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(335), + [sym_identifier] = ACTIONS(337), [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(338), - [sym_character_literal] = ACTIONS(338), - [sym_target_name] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(341), - [aux_sym_iterated_element_association_token1] = ACTIONS(344), - [aux_sym_iterator_filter_token1] = ACTIONS(347), - [aux_sym_package_specification_token3] = ACTIONS(347), - [aux_sym_subprogram_body_token1] = ACTIONS(349), - [aux_sym_expression_token2] = ACTIONS(347), - [aux_sym_expression_token3] = ACTIONS(347), - [aux_sym_expression_token4] = ACTIONS(347), - [aux_sym_raise_expression_token1] = ACTIONS(352), - [aux_sym_primary_null_token1] = ACTIONS(355), - [aux_sym_declare_expression_token1] = ACTIONS(358), - [aux_sym_case_expression_token1] = ACTIONS(361), - [aux_sym_exception_declaration_token1] = ACTIONS(347), - [anon_sym_LT_LT] = ACTIONS(364), - [aux_sym_pragma_g_token1] = ACTIONS(367), - [aux_sym_if_expression_token1] = ACTIONS(370), - [aux_sym_elsif_expression_item_token1] = ACTIONS(347), - [aux_sym_result_profile_token1] = ACTIONS(373), - [aux_sym_asynchronous_select_token1] = ACTIONS(376), - [aux_sym_asynchronous_select_token2] = ACTIONS(379), - [aux_sym_requeue_statement_token1] = ACTIONS(382), - [aux_sym_accept_statement_token1] = ACTIONS(385), - [aux_sym_exit_statement_token1] = ACTIONS(388), - [aux_sym_goto_statement_token1] = ACTIONS(391), - [aux_sym_delay_until_statement_token1] = ACTIONS(394), - [aux_sym_loop_statement_token1] = ACTIONS(397), - [aux_sym_iteration_scheme_token1] = ACTIONS(400), + [sym_string_literal] = ACTIONS(340), + [sym_character_literal] = ACTIONS(340), + [sym_target_name] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(343), + [aux_sym_iterated_element_association_token1] = ACTIONS(346), + [aux_sym_iterator_filter_token1] = ACTIONS(349), + [aux_sym_package_specification_token3] = ACTIONS(349), + [aux_sym_subprogram_body_token1] = ACTIONS(351), + [aux_sym_expression_token2] = ACTIONS(349), + [aux_sym_expression_token3] = ACTIONS(349), + [aux_sym_expression_token4] = ACTIONS(349), + [aux_sym_raise_expression_token1] = ACTIONS(354), + [aux_sym_primary_null_token1] = ACTIONS(357), + [aux_sym_declare_expression_token1] = ACTIONS(360), + [aux_sym_case_expression_token1] = ACTIONS(363), + [aux_sym_exception_declaration_token1] = ACTIONS(349), + [anon_sym_LT_LT] = ACTIONS(366), + [aux_sym_pragma_g_token1] = ACTIONS(369), + [aux_sym_if_expression_token1] = ACTIONS(372), + [aux_sym_elsif_expression_item_token1] = ACTIONS(349), + [aux_sym_result_profile_token1] = ACTIONS(375), + [aux_sym_asynchronous_select_token1] = ACTIONS(378), + [aux_sym_asynchronous_select_token2] = ACTIONS(381), + [aux_sym_requeue_statement_token1] = ACTIONS(384), + [aux_sym_accept_statement_token1] = ACTIONS(387), + [aux_sym_exit_statement_token1] = ACTIONS(390), + [aux_sym_goto_statement_token1] = ACTIONS(393), + [aux_sym_delay_until_statement_token1] = ACTIONS(396), + [aux_sym_loop_statement_token1] = ACTIONS(399), + [aux_sym_iteration_scheme_token1] = ACTIONS(402), }, [26] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1080), + [sym__sequence_of_statements] = STATE(1117), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -11648,25 +11652,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), - [aux_sym_package_specification_token3] = ACTIONS(403), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), + [aux_sym_package_specification_token3] = ACTIONS(405), [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_expression_token2] = ACTIONS(405), - [aux_sym_expression_token3] = ACTIONS(403), - [aux_sym_expression_token4] = ACTIONS(403), + [aux_sym_expression_token2] = ACTIONS(407), + [aux_sym_expression_token3] = ACTIONS(405), + [aux_sym_expression_token4] = ACTIONS(405), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), [aux_sym_declare_expression_token1] = ACTIONS(43), @@ -11686,14 +11690,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [27] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_loop_label] = STATE(941), [sym_label] = STATE(517), [sym_null_statement] = STATE(181), [sym_pragma_g] = STATE(181), @@ -11718,34 +11722,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(181), [sym_extended_return_statement] = STATE(181), [sym_procedure_call_statement] = STATE(181), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(181), [sym_loop_statement] = STATE(181), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(181), [aux_sym__sequence_of_statements_repeat2] = STATE(517), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), - [aux_sym_iterator_filter_token1] = ACTIONS(407), - [aux_sym_package_specification_token3] = ACTIONS(407), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), + [aux_sym_iterator_filter_token1] = ACTIONS(409), + [aux_sym_package_specification_token3] = ACTIONS(409), [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_expression_token2] = ACTIONS(407), - [aux_sym_expression_token3] = ACTIONS(407), - [aux_sym_expression_token4] = ACTIONS(407), + [aux_sym_expression_token2] = ACTIONS(409), + [aux_sym_expression_token3] = ACTIONS(409), + [aux_sym_expression_token4] = ACTIONS(409), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), [aux_sym_declare_expression_token1] = ACTIONS(43), [aux_sym_case_expression_token1] = ACTIONS(45), - [aux_sym_exception_declaration_token1] = ACTIONS(407), + [aux_sym_exception_declaration_token1] = ACTIONS(409), [anon_sym_LT_LT] = ACTIONS(55), [aux_sym_pragma_g_token1] = ACTIONS(57), [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_elsif_expression_item_token1] = ACTIONS(407), + [aux_sym_elsif_expression_item_token1] = ACTIONS(409), [aux_sym_result_profile_token1] = ACTIONS(61), [aux_sym_asynchronous_select_token1] = ACTIONS(63), [aux_sym_asynchronous_select_token2] = ACTIONS(65), @@ -11758,18 +11762,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [28] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1275), + [sym__sequence_of_statements] = STATE(1200), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -11792,93 +11796,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_expression_token2] = ACTIONS(405), - [aux_sym_expression_token3] = ACTIONS(409), - [aux_sym_expression_token4] = ACTIONS(409), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [anon_sym_LT_LT] = ACTIONS(55), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_goto_statement_token1] = ACTIONS(73), - [aux_sym_delay_until_statement_token1] = ACTIONS(75), - [aux_sym_loop_statement_token1] = ACTIONS(77), - [aux_sym_iteration_scheme_token1] = ACTIONS(79), - }, - [29] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_loop_label] = STATE(950), - [sym_label] = STATE(75), - [sym_null_statement] = STATE(24), - [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1265), - [sym__simple_statement] = STATE(24), - [sym__statement] = STATE(24), - [sym__compound_statement] = STATE(24), - [sym__select_statement] = STATE(24), - [sym_asynchronous_select] = STATE(24), - [sym_conditional_entry_call] = STATE(24), - [sym_timed_entry_call] = STATE(24), - [sym_selective_accept] = STATE(24), - [sym_abort_statement] = STATE(24), - [sym_requeue_statement] = STATE(24), - [sym_accept_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_block_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_exit_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__delay_statement] = STATE(24), - [sym_delay_until_statement] = STATE(24), - [sym_delay_relative_statement] = STATE(24), - [sym_simple_return_statement] = STATE(24), - [sym_extended_return_statement] = STATE(24), - [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), - [sym_raise_statement] = STATE(24), - [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), - [sym_assignment_statement] = STATE(24), - [aux_sym__sequence_of_statements_repeat1] = STATE(24), - [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), - [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(331), - [aux_sym_package_specification_token3] = ACTIONS(411), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_expression_token2] = ACTIONS(407), [aux_sym_expression_token3] = ACTIONS(411), [aux_sym_expression_token4] = ACTIONS(411), [aux_sym_raise_expression_token1] = ACTIONS(33), @@ -11899,90 +11832,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_loop_statement_token1] = ACTIONS(77), [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, - [30] = { - [sym_unary_adding_operator] = STATE(500), - [sym__name] = STATE(478), - [sym_selected_component] = STATE(266), - [sym_slice] = STATE(266), - [sym__attribute_reference] = STATE(266), - [sym__reduction_attribute_reference] = STATE(266), - [sym_value_sequence] = STATE(1650), - [sym_iterated_element_association] = STATE(1261), - [sym_qualified_expression] = STATE(266), - [sym__subtype_indication] = STATE(1409), - [sym_range_g] = STATE(1386), - [sym_expression] = STATE(944), - [sym__relation] = STATE(566), - [sym_relation_membership] = STATE(566), - [sym_raise_expression] = STATE(566), - [sym__simple_expression] = STATE(598), - [sym_term] = STATE(511), - [sym__factor] = STATE(486), - [sym_factor_power] = STATE(486), - [sym_factor_abs] = STATE(486), - [sym_factor_not] = STATE(486), - [sym__parenthesized_expression] = STATE(488), - [sym__primary] = STATE(488), - [sym_primary_null] = STATE(488), - [sym_allocator] = STATE(488), - [sym__conditional_expression] = STATE(1938), - [sym_quantified_expression] = STATE(1938), - [sym_declare_expression] = STATE(1938), - [sym_case_expression] = STATE(1938), - [sym_component_choice_list] = STATE(1939), - [sym__aggregate] = STATE(488), - [sym__delta_aggregate] = STATE(488), - [sym_extension_aggregate] = STATE(488), - [sym_record_delta_aggregate] = STATE(488), - [sym_array_delta_aggregate] = STATE(488), - [sym_record_aggregate] = STATE(488), - [sym_record_component_association_list] = STATE(1940), - [sym__named_record_component_association] = STATE(1210), - [sym_null_exclusion] = STATE(771), - [sym__array_aggregate] = STATE(488), - [sym_positional_array_aggregate] = STATE(488), - [sym_null_array_aggregate] = STATE(488), - [sym_named_array_aggregate] = STATE(488), - [sym__array_component_association_list] = STATE(1944), - [sym_array_component_association] = STATE(1054), - [sym_discrete_choice_list] = STATE(1945), - [sym_discrete_choice] = STATE(1149), - [sym_if_expression] = STATE(1938), - [sym_function_call] = STATE(478), - [sym_identifier] = ACTIONS(217), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(219), - [sym_character_literal] = ACTIONS(219), - [sym_numeric_literal] = ACTIONS(221), - [anon_sym_PLUS] = ACTIONS(223), - [anon_sym_DASH] = ACTIONS(225), - [sym_target_name] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(227), - [anon_sym_LBRACK] = ACTIONS(229), - [aux_sym_iterated_element_association_token1] = ACTIONS(233), - [aux_sym_relation_membership_token1] = ACTIONS(235), - [aux_sym_raise_expression_token1] = ACTIONS(237), - [aux_sym_factor_abs_token1] = ACTIONS(239), - [aux_sym_primary_null_token1] = ACTIONS(241), - [aux_sym_allocator_token1] = ACTIONS(243), - [aux_sym_declare_expression_token1] = ACTIONS(245), - [aux_sym_case_expression_token1] = ACTIONS(247), - [aux_sym_positional_array_aggregate_token1] = ACTIONS(249), - [aux_sym_if_expression_token1] = ACTIONS(255), - }, - [31] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_loop_label] = STATE(950), + [29] = { + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1311), + [sym__sequence_of_statements] = STATE(1232), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -12005,24 +11867,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), - [aux_sym_package_specification_token3] = ACTIONS(403), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), + [aux_sym_package_specification_token3] = ACTIONS(413), [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_expression_token3] = ACTIONS(403), - [aux_sym_expression_token4] = ACTIONS(403), + [aux_sym_expression_token3] = ACTIONS(413), + [aux_sym_expression_token4] = ACTIONS(413), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [30] = { + [sym_unary_adding_operator] = STATE(498), + [sym__name] = STATE(484), + [sym_selected_component] = STATE(501), + [sym_slice] = STATE(264), + [sym__attribute_reference] = STATE(264), + [sym__reduction_attribute_reference] = STATE(264), + [sym_value_sequence] = STATE(1652), + [sym_iterated_element_association] = STATE(1226), + [sym_qualified_expression] = STATE(264), + [sym__subtype_indication] = STATE(1377), + [sym_range_g] = STATE(1375), + [sym_expression] = STATE(950), + [sym__relation] = STATE(558), + [sym_relation_membership] = STATE(558), + [sym_raise_expression] = STATE(558), + [sym__simple_expression] = STATE(598), + [sym_term] = STATE(509), + [sym__factor] = STATE(487), + [sym_factor_power] = STATE(487), + [sym_factor_abs] = STATE(487), + [sym_factor_not] = STATE(487), + [sym__parenthesized_expression] = STATE(491), + [sym__primary] = STATE(491), + [sym_primary_null] = STATE(491), + [sym_allocator] = STATE(491), + [sym__conditional_expression] = STATE(1866), + [sym_quantified_expression] = STATE(1866), + [sym_declare_expression] = STATE(1866), + [sym_case_expression] = STATE(1866), + [sym_component_choice_list] = STATE(1877), + [sym__aggregate] = STATE(491), + [sym__delta_aggregate] = STATE(491), + [sym_extension_aggregate] = STATE(491), + [sym_record_delta_aggregate] = STATE(491), + [sym_array_delta_aggregate] = STATE(491), + [sym_record_aggregate] = STATE(491), + [sym_record_component_association_list] = STATE(1880), + [sym__named_record_component_association] = STATE(1290), + [sym_null_exclusion] = STATE(802), + [sym__array_aggregate] = STATE(491), + [sym_positional_array_aggregate] = STATE(491), + [sym_null_array_aggregate] = STATE(491), + [sym_named_array_aggregate] = STATE(491), + [sym__array_component_association_list] = STATE(1923), + [sym_array_component_association] = STATE(1073), + [sym_discrete_choice_list] = STATE(1926), + [sym_discrete_choice] = STATE(1171), + [sym_if_expression] = STATE(1866), + [sym_function_call] = STATE(484), + [sym_identifier] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(219), + [sym_character_literal] = ACTIONS(221), + [sym_numeric_literal] = ACTIONS(223), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(227), + [sym_target_name] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [aux_sym_iterated_element_association_token1] = ACTIONS(235), + [aux_sym_relation_membership_token1] = ACTIONS(237), + [aux_sym_raise_expression_token1] = ACTIONS(239), + [aux_sym_factor_abs_token1] = ACTIONS(241), + [aux_sym_primary_null_token1] = ACTIONS(243), + [aux_sym_allocator_token1] = ACTIONS(245), + [aux_sym_declare_expression_token1] = ACTIONS(247), + [aux_sym_case_expression_token1] = ACTIONS(249), + [aux_sym_component_choice_list_token1] = ACTIONS(251), + [aux_sym_if_expression_token1] = ACTIONS(257), + }, + [31] = { + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(75), + [sym_null_statement] = STATE(24), + [sym_pragma_g] = STATE(24), + [sym__sequence_of_statements] = STATE(1330), + [sym__simple_statement] = STATE(24), + [sym__statement] = STATE(24), + [sym__compound_statement] = STATE(24), + [sym__select_statement] = STATE(24), + [sym_asynchronous_select] = STATE(24), + [sym_conditional_entry_call] = STATE(24), + [sym_timed_entry_call] = STATE(24), + [sym_selective_accept] = STATE(24), + [sym_abort_statement] = STATE(24), + [sym_requeue_statement] = STATE(24), + [sym_accept_statement] = STATE(24), + [sym_case_statement] = STATE(24), + [sym_block_statement] = STATE(24), + [sym_if_statement] = STATE(24), + [sym_exit_statement] = STATE(24), + [sym_goto_statement] = STATE(24), + [sym__delay_statement] = STATE(24), + [sym_delay_until_statement] = STATE(24), + [sym_delay_relative_statement] = STATE(24), + [sym_simple_return_statement] = STATE(24), + [sym_extended_return_statement] = STATE(24), + [sym_procedure_call_statement] = STATE(24), + [sym_function_call] = STATE(947), + [sym_raise_statement] = STATE(24), + [sym_loop_statement] = STATE(24), + [sym_iteration_scheme] = STATE(1576), + [sym_assignment_statement] = STATE(24), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(75), + [sym_identifier] = ACTIONS(331), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), + [aux_sym_package_specification_token3] = ACTIONS(405), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_expression_token3] = ACTIONS(405), + [aux_sym_expression_token4] = ACTIONS(405), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), [aux_sym_declare_expression_token1] = ACTIONS(43), @@ -12042,65 +12046,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [32] = { - [sym__defining_identifier_list] = STATE(1662), - [sym__declarative_item] = STATE(477), - [sym__basic_declarative_item] = STATE(477), - [sym__basic_declaration] = STATE(477), - [sym__package_declaration] = STATE(477), - [sym_package_specification] = STATE(1625), - [sym_use_clause] = STATE(477), - [sym__proper_body] = STATE(477), - [sym_subprogram_body] = STATE(477), - [sym_package_body] = STATE(477), - [sym__type_declaration] = STATE(477), - [sym_full_type_declaration] = STATE(477), - [sym_private_type_declaration] = STATE(477), - [sym_private_extension_declaration] = STATE(477), - [sym_incomplete_type_declaration] = STATE(477), - [sym__aspect_clause] = STATE(477), - [sym_at_clause] = STATE(477), - [sym_attribute_definition_clause] = STATE(477), - [sym_body_stub] = STATE(477), - [sym_subprogram_body_stub] = STATE(475), - [sym_package_body_stub] = STATE(475), - [sym_task_body] = STATE(477), - [sym_task_body_stub] = STATE(475), - [sym_protected_type_declaration] = STATE(460), - [sym_single_protected_declaration] = STATE(419), - [sym_protected_body] = STATE(477), - [sym_protected_body_stub] = STATE(475), - [sym_enumeration_representation_clause] = STATE(477), - [sym_exception_declaration] = STATE(477), - [sym_function_specification] = STATE(1078), - [sym__generic_declaration] = STATE(477), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(477), - [sym_generic_package_declaration] = STATE(477), - [sym_generic_instantiation] = STATE(477), - [sym_null_procedure_declaration] = STATE(477), - [sym_number_declaration] = STATE(477), - [sym_object_declaration] = STATE(477), - [sym_single_task_declaration] = STATE(419), - [sym_task_type_declaration] = STATE(460), - [sym_overriding_indicator] = STATE(1005), - [sym_procedure_specification] = STATE(1058), - [sym_record_representation_clause] = STATE(477), - [sym__renaming_declaration] = STATE(477), - [sym_object_renaming_declaration] = STATE(477), - [sym_exception_renaming_declaration] = STATE(477), - [sym_package_renaming_declaration] = STATE(477), - [sym_subprogram_renaming_declaration] = STATE(477), - [sym_generic_renaming_declaration] = STATE(477), - [sym_subprogram_declaration] = STATE(477), - [sym_expression_function_declaration] = STATE(477), - [sym__subprogram_specification] = STATE(1049), - [sym_subtype_declaration] = STATE(477), + [sym__defining_identifier_list] = STATE(1664), + [sym__declarative_item] = STATE(479), + [sym__basic_declarative_item] = STATE(479), + [sym__basic_declaration] = STATE(479), + [sym__package_declaration] = STATE(479), + [sym_package_specification] = STATE(1627), + [sym_use_clause] = STATE(479), + [sym__proper_body] = STATE(479), + [sym_subprogram_body] = STATE(479), + [sym_package_body] = STATE(479), + [sym__type_declaration] = STATE(479), + [sym_full_type_declaration] = STATE(479), + [sym_private_type_declaration] = STATE(479), + [sym_private_extension_declaration] = STATE(479), + [sym_incomplete_type_declaration] = STATE(479), + [sym__aspect_clause] = STATE(479), + [sym_at_clause] = STATE(479), + [sym_attribute_definition_clause] = STATE(479), + [sym_body_stub] = STATE(479), + [sym_subprogram_body_stub] = STATE(417), + [sym_package_body_stub] = STATE(417), + [sym_task_body] = STATE(479), + [sym_task_body_stub] = STATE(417), + [sym_protected_type_declaration] = STATE(419), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(479), + [sym_protected_body_stub] = STATE(417), + [sym_enumeration_representation_clause] = STATE(479), + [sym_exception_declaration] = STATE(479), + [sym_function_specification] = STATE(1115), + [sym__generic_declaration] = STATE(479), + [sym_generic_formal_part] = STATE(925), + [sym_generic_subprogram_declaration] = STATE(479), + [sym_generic_package_declaration] = STATE(479), + [sym_generic_instantiation] = STATE(479), + [sym_null_procedure_declaration] = STATE(479), + [sym_number_declaration] = STATE(479), + [sym_object_declaration] = STATE(479), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(419), + [sym_overriding_indicator] = STATE(976), + [sym_procedure_specification] = STATE(1142), + [sym_record_representation_clause] = STATE(479), + [sym__renaming_declaration] = STATE(479), + [sym_object_renaming_declaration] = STATE(479), + [sym_exception_renaming_declaration] = STATE(479), + [sym_package_renaming_declaration] = STATE(479), + [sym_subprogram_renaming_declaration] = STATE(479), + [sym_generic_renaming_declaration] = STATE(479), + [sym_subprogram_declaration] = STATE(479), + [sym_expression_function_declaration] = STATE(479), + [sym__subprogram_specification] = STATE(1043), + [sym_subtype_declaration] = STATE(479), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_with_clause_token2] = ACTIONS(413), + [aux_sym_with_clause_token2] = ACTIONS(415), [aux_sym_use_clause_token2] = ACTIONS(25), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), @@ -12112,19 +12116,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [33] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_handled_sequence_of_statements] = STATE(1695), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_handled_sequence_of_statements] = STATE(1703), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1340), + [sym__sequence_of_statements] = STATE(1349), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -12147,20 +12151,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -12181,19 +12185,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [34] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_handled_sequence_of_statements] = STATE(1560), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_handled_sequence_of_statements] = STATE(1562), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1340), + [sym__sequence_of_statements] = STATE(1349), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -12216,20 +12220,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -12250,19 +12254,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [35] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_handled_sequence_of_statements] = STATE(1594), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_handled_sequence_of_statements] = STATE(1596), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1340), + [sym__sequence_of_statements] = STATE(1349), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -12285,20 +12289,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -12319,19 +12323,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [36] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_handled_sequence_of_statements] = STATE(1663), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_handled_sequence_of_statements] = STATE(1623), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1340), + [sym__sequence_of_statements] = STATE(1349), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -12354,20 +12358,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -12388,19 +12392,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [37] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_handled_sequence_of_statements] = STATE(1613), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_handled_sequence_of_statements] = STATE(1615), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1340), + [sym__sequence_of_statements] = STATE(1349), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -12423,20 +12427,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -12457,15 +12461,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [38] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_loop_label] = STATE(950), - [sym_label] = STATE(72), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(73), [sym_null_statement] = STATE(25), [sym_pragma_g] = STATE(25), [sym__simple_statement] = STATE(25), @@ -12490,29 +12494,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(25), [sym_extended_return_statement] = STATE(25), [sym_procedure_call_statement] = STATE(25), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(25), [sym_loop_statement] = STATE(25), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(72), - [sym_identifier] = ACTIONS(329), + [aux_sym__sequence_of_statements_repeat2] = STATE(73), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), - [aux_sym_iterator_filter_token1] = ACTIONS(333), - [aux_sym_package_specification_token3] = ACTIONS(333), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), + [aux_sym_iterator_filter_token1] = ACTIONS(335), + [aux_sym_package_specification_token3] = ACTIONS(335), [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(333), + [aux_sym_pragma_g_token1] = ACTIONS(335), [aux_sym_if_expression_token1] = ACTIONS(59), [aux_sym_result_profile_token1] = ACTIONS(61), [aux_sym_asynchronous_select_token1] = ACTIONS(63), @@ -12526,19 +12530,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [39] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_handled_sequence_of_statements] = STATE(1930), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_handled_sequence_of_statements] = STATE(1932), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1340), + [sym__sequence_of_statements] = STATE(1349), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -12561,20 +12565,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -12595,19 +12599,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [40] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_handled_sequence_of_statements] = STATE(1929), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_handled_sequence_of_statements] = STATE(1786), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1340), + [sym__sequence_of_statements] = STATE(1349), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -12630,20 +12634,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -12664,19 +12668,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [41] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_handled_sequence_of_statements] = STATE(1870), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_handled_sequence_of_statements] = STATE(1645), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1340), + [sym__sequence_of_statements] = STATE(1349), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -12699,20 +12703,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -12733,19 +12737,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [42] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_handled_sequence_of_statements] = STATE(1918), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_handled_sequence_of_statements] = STATE(1920), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1340), + [sym__sequence_of_statements] = STATE(1349), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -12768,20 +12772,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -12802,19 +12806,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [43] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_handled_sequence_of_statements] = STATE(1815), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_handled_sequence_of_statements] = STATE(1577), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1340), + [sym__sequence_of_statements] = STATE(1349), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -12837,20 +12841,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -12871,19 +12875,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [44] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_handled_sequence_of_statements] = STATE(1828), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_handled_sequence_of_statements] = STATE(1617), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1340), + [sym__sequence_of_statements] = STATE(1349), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -12906,20 +12910,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -12940,19 +12944,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [45] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_handled_sequence_of_statements] = STATE(1593), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_handled_sequence_of_statements] = STATE(1681), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1340), + [sym__sequence_of_statements] = STATE(1349), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -12975,20 +12979,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13009,19 +13013,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [46] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_handled_sequence_of_statements] = STATE(1636), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_handled_sequence_of_statements] = STATE(1597), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1340), + [sym__sequence_of_statements] = STATE(1349), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13044,20 +13048,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13078,19 +13082,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [47] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_handled_sequence_of_statements] = STATE(1791), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_handled_sequence_of_statements] = STATE(1892), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1340), + [sym__sequence_of_statements] = STATE(1349), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13113,20 +13117,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13147,19 +13151,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [48] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_handled_sequence_of_statements] = STATE(1509), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_handled_sequence_of_statements] = STATE(1511), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1340), + [sym__sequence_of_statements] = STATE(1349), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13182,20 +13186,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13216,19 +13220,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [49] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_handled_sequence_of_statements] = STATE(1519), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_handled_sequence_of_statements] = STATE(1779), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1340), + [sym__sequence_of_statements] = STATE(1349), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13251,20 +13255,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13285,19 +13289,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [50] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_handled_sequence_of_statements] = STATE(1693), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_handled_sequence_of_statements] = STATE(1718), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1340), + [sym__sequence_of_statements] = STATE(1349), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13320,20 +13324,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13354,19 +13358,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [51] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_handled_sequence_of_statements] = STATE(1723), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_handled_sequence_of_statements] = STATE(1725), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1340), + [sym__sequence_of_statements] = STATE(1349), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13389,20 +13393,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13423,19 +13427,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [52] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_handled_sequence_of_statements] = STATE(1856), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_handled_sequence_of_statements] = STATE(1858), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1340), + [sym__sequence_of_statements] = STATE(1349), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13458,20 +13462,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13492,19 +13496,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [53] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_handled_sequence_of_statements] = STATE(1897), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_handled_sequence_of_statements] = STATE(1899), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1340), + [sym__sequence_of_statements] = STATE(1349), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13527,20 +13531,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13561,19 +13565,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [54] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_handled_sequence_of_statements] = STATE(1671), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_handled_sequence_of_statements] = STATE(1646), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1340), + [sym__sequence_of_statements] = STATE(1349), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13596,20 +13600,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13630,19 +13634,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [55] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_handled_sequence_of_statements] = STATE(1545), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_handled_sequence_of_statements] = STATE(1916), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1340), + [sym__sequence_of_statements] = STATE(1349), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13665,20 +13669,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13699,19 +13703,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [56] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_handled_sequence_of_statements] = STATE(1529), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_handled_sequence_of_statements] = STATE(1901), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1340), + [sym__sequence_of_statements] = STATE(1349), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13734,20 +13738,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13768,18 +13772,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [57] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1703), + [sym__sequence_of_statements] = STATE(1712), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13802,20 +13806,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13836,18 +13840,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [58] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1700), + [sym__sequence_of_statements] = STATE(1697), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13870,20 +13874,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13904,18 +13908,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [59] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1195), + [sym__sequence_of_statements] = STATE(1230), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13938,20 +13942,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13972,18 +13976,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [60] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1043), + [sym__sequence_of_statements] = STATE(1037), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -14006,20 +14010,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14040,18 +14044,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [61] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(38), [sym_pragma_g] = STATE(38), - [sym__sequence_of_statements] = STATE(1202), + [sym__sequence_of_statements] = STATE(1236), [sym__simple_statement] = STATE(38), [sym__statement] = STATE(38), [sym__compound_statement] = STATE(38), @@ -14074,20 +14078,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(38), [sym_extended_return_statement] = STATE(38), [sym_procedure_call_statement] = STATE(38), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(38), [sym_loop_statement] = STATE(38), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(38), [aux_sym__sequence_of_statements_repeat1] = STATE(38), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14108,18 +14112,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [62] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1551), + [sym__sequence_of_statements] = STATE(1553), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -14142,20 +14146,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14176,18 +14180,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [63] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1480), + [sym__sequence_of_statements] = STATE(1485), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -14210,20 +14214,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14244,18 +14248,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [64] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1825), + [sym__sequence_of_statements] = STATE(1630), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -14278,20 +14282,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14312,18 +14316,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [65] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(38), [sym_pragma_g] = STATE(38), - [sym__sequence_of_statements] = STATE(1253), + [sym__sequence_of_statements] = STATE(1169), [sym__simple_statement] = STATE(38), [sym__statement] = STATE(38), [sym__compound_statement] = STATE(38), @@ -14346,20 +14350,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(38), [sym_extended_return_statement] = STATE(38), [sym_procedure_call_statement] = STATE(38), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(38), [sym_loop_statement] = STATE(38), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(38), [aux_sym__sequence_of_statements_repeat1] = STATE(38), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14380,18 +14384,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [66] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1803), + [sym__sequence_of_statements] = STATE(1826), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -14414,20 +14418,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14448,18 +14452,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [67] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1565), + [sym__sequence_of_statements] = STATE(1830), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -14482,20 +14486,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14516,18 +14520,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [68] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1547), + [sym__sequence_of_statements] = STATE(1939), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -14550,20 +14554,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14584,18 +14588,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [69] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1822), + [sym__sequence_of_statements] = STATE(1670), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -14618,20 +14622,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14652,18 +14656,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [70] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1738), + [sym__sequence_of_statements] = STATE(1819), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -14686,20 +14690,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14720,18 +14724,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [71] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_loop_label] = STATE(950), + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_loop_label] = STATE(941), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1912), + [sym__sequence_of_statements] = STATE(1657), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -14754,20 +14758,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14788,14 +14792,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [72] = { - [sym__name] = STATE(936), - [sym_selected_component] = STATE(977), - [sym_slice] = STATE(977), - [sym__attribute_reference] = STATE(977), - [sym__reduction_attribute_reference] = STATE(977), - [sym_value_sequence] = STATE(1650), - [sym_qualified_expression] = STATE(977), - [sym_loop_label] = STATE(950), + [sym_unary_adding_operator] = STATE(498), + [sym__name] = STATE(484), + [sym_selected_component] = STATE(505), + [sym_slice] = STATE(515), + [sym__attribute_reference] = STATE(515), + [sym__reduction_attribute_reference] = STATE(515), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(515), + [sym__subtype_indication] = STATE(1382), + [sym_range_g] = STATE(1393), + [sym_expression] = STATE(1409), + [sym__relation] = STATE(558), + [sym_relation_membership] = STATE(558), + [sym_raise_expression] = STATE(558), + [sym__simple_expression] = STATE(598), + [sym_term] = STATE(509), + [sym__factor] = STATE(487), + [sym_factor_power] = STATE(487), + [sym_factor_abs] = STATE(487), + [sym_factor_not] = STATE(487), + [sym__parenthesized_expression] = STATE(491), + [sym__primary] = STATE(491), + [sym_primary_null] = STATE(491), + [sym_allocator] = STATE(491), + [sym_parameter_association] = STATE(1150), + [sym__conditional_expression] = STATE(1737), + [sym_quantified_expression] = STATE(1737), + [sym_declare_expression] = STATE(1737), + [sym_case_expression] = STATE(1737), + [sym_component_choice_list] = STATE(1735), + [sym__aggregate] = STATE(491), + [sym__delta_aggregate] = STATE(491), + [sym_extension_aggregate] = STATE(491), + [sym_record_delta_aggregate] = STATE(491), + [sym_array_delta_aggregate] = STATE(491), + [sym_record_aggregate] = STATE(491), + [sym_null_exclusion] = STATE(802), + [sym__discrete_range] = STATE(1202), + [sym__array_aggregate] = STATE(491), + [sym_positional_array_aggregate] = STATE(491), + [sym_null_array_aggregate] = STATE(491), + [sym_named_array_aggregate] = STATE(491), + [sym_if_expression] = STATE(1737), + [sym_function_call] = STATE(484), + [sym_identifier] = ACTIONS(417), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(419), + [sym_character_literal] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(223), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(227), + [sym_target_name] = ACTIONS(421), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [aux_sym_iterated_element_association_token1] = ACTIONS(423), + [aux_sym_relation_membership_token1] = ACTIONS(237), + [aux_sym_raise_expression_token1] = ACTIONS(239), + [aux_sym_factor_abs_token1] = ACTIONS(241), + [aux_sym_primary_null_token1] = ACTIONS(425), + [aux_sym_allocator_token1] = ACTIONS(245), + [anon_sym_LT_GT] = ACTIONS(427), + [aux_sym_declare_expression_token1] = ACTIONS(247), + [aux_sym_case_expression_token1] = ACTIONS(249), + [aux_sym_component_choice_list_token1] = ACTIONS(429), + [aux_sym_if_expression_token1] = ACTIONS(257), + }, + [73] = { + [sym__name] = STATE(947), + [sym_selected_component] = STATE(1042), + [sym_slice] = STATE(1042), + [sym__attribute_reference] = STATE(1042), + [sym__reduction_attribute_reference] = STATE(1042), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(1042), + [sym_loop_label] = STATE(941), [sym_label] = STATE(517), [sym_null_statement] = STATE(181), [sym_pragma_g] = STATE(181), @@ -14820,28 +14891,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(181), [sym_extended_return_statement] = STATE(181), [sym_procedure_call_statement] = STATE(181), - [sym_function_call] = STATE(936), + [sym_function_call] = STATE(947), [sym_raise_statement] = STATE(181), [sym_loop_statement] = STATE(181), - [sym_iteration_scheme] = STATE(1490), + [sym_iteration_scheme] = STATE(1576), [sym_assignment_statement] = STATE(181), [aux_sym__sequence_of_statements_repeat2] = STATE(517), - [sym_identifier] = ACTIONS(329), + [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(331), - [aux_sym_iterator_filter_token1] = ACTIONS(407), - [aux_sym_package_specification_token3] = ACTIONS(407), + [aux_sym_iterated_element_association_token1] = ACTIONS(333), + [aux_sym_iterator_filter_token1] = ACTIONS(409), + [aux_sym_package_specification_token3] = ACTIONS(409), [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(407), + [aux_sym_pragma_g_token1] = ACTIONS(409), [aux_sym_if_expression_token1] = ACTIONS(59), [aux_sym_result_profile_token1] = ACTIONS(61), [aux_sym_asynchronous_select_token1] = ACTIONS(63), @@ -14854,209 +14925,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_loop_statement_token1] = ACTIONS(77), [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, + [74] = { + [sym_unary_adding_operator] = STATE(498), + [sym__name] = STATE(484), + [sym_selected_component] = STATE(528), + [sym__defining_identifier_list] = STATE(1699), + [sym_slice] = STATE(484), + [sym__attribute_reference] = STATE(484), + [sym__reduction_attribute_reference] = STATE(484), + [sym_value_sequence] = STATE(1652), + [sym_qualified_expression] = STATE(484), + [sym_range_g] = STATE(1740), + [sym_expression] = STATE(1409), + [sym__relation] = STATE(558), + [sym_relation_membership] = STATE(558), + [sym_raise_expression] = STATE(558), + [sym__simple_expression] = STATE(598), + [sym_term] = STATE(509), + [sym__factor] = STATE(487), + [sym_factor_power] = STATE(487), + [sym_factor_abs] = STATE(487), + [sym_factor_not] = STATE(487), + [sym__parenthesized_expression] = STATE(491), + [sym__primary] = STATE(491), + [sym_primary_null] = STATE(491), + [sym_allocator] = STATE(491), + [sym_parameter_association] = STATE(1150), + [sym__conditional_expression] = STATE(1737), + [sym_quantified_expression] = STATE(1737), + [sym_declare_expression] = STATE(1737), + [sym_case_expression] = STATE(1737), + [sym_component_choice_list] = STATE(1735), + [sym__aggregate] = STATE(491), + [sym__delta_aggregate] = STATE(491), + [sym_extension_aggregate] = STATE(491), + [sym_record_delta_aggregate] = STATE(491), + [sym_array_delta_aggregate] = STATE(491), + [sym_record_aggregate] = STATE(491), + [sym__array_aggregate] = STATE(491), + [sym_positional_array_aggregate] = STATE(491), + [sym_null_array_aggregate] = STATE(491), + [sym_named_array_aggregate] = STATE(491), + [sym_parameter_specification] = STATE(1256), + [sym__parameter_specification_list] = STATE(1665), + [sym_if_expression] = STATE(1737), + [sym_function_call] = STATE(484), + [sym_identifier] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(433), + [sym_character_literal] = ACTIONS(435), + [sym_numeric_literal] = ACTIONS(223), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(227), + [sym_target_name] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [aux_sym_iterated_element_association_token1] = ACTIONS(423), + [aux_sym_relation_membership_token1] = ACTIONS(437), + [aux_sym_raise_expression_token1] = ACTIONS(239), + [aux_sym_factor_abs_token1] = ACTIONS(241), + [aux_sym_primary_null_token1] = ACTIONS(425), + [aux_sym_allocator_token1] = ACTIONS(245), + [anon_sym_LT_GT] = ACTIONS(427), + [aux_sym_declare_expression_token1] = ACTIONS(247), + [aux_sym_case_expression_token1] = ACTIONS(249), + [aux_sym_component_choice_list_token1] = ACTIONS(429), + [aux_sym_if_expression_token1] = ACTIONS(257), + }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 35, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(245), 1, - aux_sym_declare_expression_token1, - ACTIONS(247), 1, - aux_sym_case_expression_token1, - ACTIONS(255), 1, - aux_sym_if_expression_token1, - ACTIONS(415), 1, - sym_identifier, - ACTIONS(419), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(423), 1, - anon_sym_LT_GT, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(598), 1, - sym__simple_expression, - STATE(771), 1, - sym_null_exclusion, - STATE(1276), 1, - sym__discrete_range, - STATE(1299), 1, - sym_parameter_association, - STATE(1360), 1, - sym_expression, - STATE(1388), 1, - sym__subtype_indication, - STATE(1432), 1, - sym_range_g, - STATE(1650), 1, - sym_value_sequence, - STATE(1920), 1, - sym_component_choice_list, - STATE(478), 2, - sym__name, - sym_function_call, - ACTIONS(417), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(515), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(1921), 5, - sym__conditional_expression, - sym_quantified_expression, - sym_declare_expression, - sym_case_expression, - sym_if_expression, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [135] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(245), 1, - aux_sym_declare_expression_token1, - ACTIONS(247), 1, - aux_sym_case_expression_token1, - ACTIONS(255), 1, - aux_sym_if_expression_token1, - ACTIONS(419), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(423), 1, - anon_sym_LT_GT, - ACTIONS(425), 1, - sym_identifier, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(598), 1, - sym__simple_expression, - STATE(1196), 1, - sym_parameter_specification, - STATE(1299), 1, - sym_parameter_association, - STATE(1360), 1, - sym_expression, - STATE(1650), 1, - sym_value_sequence, - STATE(1871), 1, - sym__parameter_specification_list, - STATE(1872), 1, - sym__defining_identifier_list, - STATE(1920), 1, - sym_component_choice_list, - STATE(1922), 1, - sym_range_g, - ACTIONS(427), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(1921), 5, - sym__conditional_expression, - sym_quantified_expression, - sym_declare_expression, - sym_case_expression, - sym_if_expression, - STATE(478), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [268] = 30, + [0] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -15097,27 +15036,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, ACTIONS(79), 1, aux_sym_iteration_scheme_token1, - ACTIONS(329), 1, - sym_identifier, ACTIONS(331), 1, + sym_identifier, + ACTIONS(333), 1, aux_sym_iterated_element_association_token1, - STATE(950), 1, + STATE(941), 1, sym_loop_label, - STATE(1490), 1, + STATE(1576), 1, sym_iteration_scheme, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, STATE(517), 2, sym_label, aux_sym__sequence_of_statements_repeat2, - STATE(936), 2, + STATE(947), 2, sym__name, sym_function_call, ACTIONS(9), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(977), 5, + STATE(1042), 5, sym_selected_component, sym_slice, sym__attribute_reference, @@ -15150,7 +15089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_raise_statement, sym_loop_statement, sym_assignment_statement, - [392] = 28, + [124] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(15), 1, @@ -15175,487 +15114,128 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(431), 1, + ACTIONS(439), 1, aux_sym_compilation_unit_token1, - ACTIONS(433), 1, + ACTIONS(441), 1, aux_sym_package_specification_token1, - ACTIONS(435), 1, + ACTIONS(443), 1, aux_sym_package_specification_token3, - ACTIONS(437), 1, + ACTIONS(445), 1, aux_sym_allocator_token1, - ACTIONS(439), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(441), 1, - aux_sym_interface_type_definition_token1, - STATE(907), 1, - sym_generic_formal_part, - STATE(989), 1, - sym__subprogram_specification, - STATE(992), 1, - sym_overriding_indicator, - STATE(1058), 1, - sym_procedure_specification, - STATE(1078), 1, - sym_function_specification, - STATE(1625), 1, - sym_package_specification, - STATE(1662), 1, - sym__defining_identifier_list, - STATE(419), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(460), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(77), 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, - [512] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(433), 1, - aux_sym_package_specification_token1, - ACTIONS(439), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(441), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(443), 1, - aux_sym_compilation_unit_token1, - ACTIONS(445), 1, - aux_sym_package_specification_token3, - STATE(907), 1, - sym_generic_formal_part, - STATE(989), 1, - sym__subprogram_specification, - STATE(992), 1, - sym_overriding_indicator, - STATE(1058), 1, - sym_procedure_specification, - STATE(1078), 1, - sym_function_specification, - STATE(1625), 1, - sym_package_specification, - STATE(1662), 1, - sym__defining_identifier_list, - STATE(419), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(460), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(79), 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, - [629] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(431), 1, - aux_sym_compilation_unit_token1, - ACTIONS(433), 1, - aux_sym_package_specification_token1, - ACTIONS(435), 1, - aux_sym_package_specification_token3, - ACTIONS(439), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(441), 1, - aux_sym_interface_type_definition_token1, - STATE(907), 1, - sym_generic_formal_part, - STATE(989), 1, - sym__subprogram_specification, - STATE(992), 1, - sym_overriding_indicator, - STATE(1058), 1, - sym_procedure_specification, - STATE(1078), 1, - sym_function_specification, - STATE(1625), 1, - sym_package_specification, - STATE(1662), 1, - sym__defining_identifier_list, - STATE(419), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(460), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(77), 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, - [746] = 26, - ACTIONS(3), 1, - sym_comment, ACTIONS(447), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(449), 1, + aux_sym_interface_type_definition_token1, + STATE(925), 1, + sym_generic_formal_part, + STATE(997), 1, + sym__subprogram_specification, + STATE(1032), 1, + sym_overriding_indicator, + STATE(1115), 1, + sym_function_specification, + STATE(1142), 1, + sym_procedure_specification, + STATE(1627), 1, + sym_package_specification, + STATE(1664), 1, + sym__defining_identifier_list, + STATE(419), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(426), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(77), 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, + [244] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, sym_identifier, - ACTIONS(450), 1, + ACTIONS(203), 1, aux_sym_iterated_element_association_token1, + ACTIONS(441), 1, + aux_sym_package_specification_token1, + ACTIONS(447), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(449), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(451), 1, + aux_sym_compilation_unit_token1, ACTIONS(453), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(458), 1, - aux_sym_package_specification_token1, - ACTIONS(461), 1, - aux_sym_use_clause_token2, - ACTIONS(464), 1, - aux_sym_relation_membership_token1, - ACTIONS(467), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(470), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(473), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(476), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(479), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(482), 1, - aux_sym_global_mode_token1, - ACTIONS(485), 1, - aux_sym_pragma_g_token1, - ACTIONS(488), 1, - aux_sym_subtype_declaration_token1, - STATE(907), 1, - sym_generic_formal_part, - STATE(989), 1, - sym__subprogram_specification, - STATE(992), 1, - sym_overriding_indicator, - STATE(1058), 1, - sym_procedure_specification, - STATE(1078), 1, - sym_function_specification, - STATE(1625), 1, - sym_package_specification, - STATE(1662), 1, - sym__defining_identifier_list, - ACTIONS(456), 2, - aux_sym_compilation_unit_token1, aux_sym_package_specification_token3, - STATE(419), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(460), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(79), 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, - [861] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(433), 1, - aux_sym_package_specification_token1, - ACTIONS(439), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(441), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(491), 1, - aux_sym_compilation_unit_token1, - ACTIONS(493), 1, - aux_sym_package_specification_token3, - STATE(907), 1, + STATE(925), 1, sym_generic_formal_part, - STATE(989), 1, + STATE(997), 1, sym__subprogram_specification, - STATE(992), 1, + STATE(1032), 1, sym_overriding_indicator, - STATE(1058), 1, - sym_procedure_specification, - STATE(1078), 1, + STATE(1115), 1, sym_function_specification, - STATE(1625), 1, + STATE(1142), 1, + sym_procedure_specification, + STATE(1627), 1, sym_package_specification, - STATE(1662), 1, + STATE(1664), 1, sym__defining_identifier_list, STATE(419), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(460), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(79), 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, - [978] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(433), 1, - aux_sym_package_specification_token1, - ACTIONS(439), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(441), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(443), 1, - aux_sym_compilation_unit_token1, - ACTIONS(445), 1, - aux_sym_package_specification_token3, - STATE(907), 1, - sym_generic_formal_part, - STATE(989), 1, - sym__subprogram_specification, - STATE(992), 1, - sym_overriding_indicator, - STATE(1058), 1, - sym_procedure_specification, - STATE(1078), 1, - sym_function_specification, - STATE(1625), 1, - sym_package_specification, - STATE(1662), 1, - sym__defining_identifier_list, - STATE(419), 2, + STATE(426), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(460), 2, - sym_protected_type_declaration, - sym_task_type_declaration, STATE(80), 34, sym__basic_declarative_item, sym__basic_declaration, @@ -15691,7 +15271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym_package_specification_repeat1, - [1095] = 26, + [361] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(15), 1, @@ -15716,35 +15296,37 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(433), 1, - aux_sym_package_specification_token1, ACTIONS(439), 1, - aux_sym_access_to_subprogram_definition_token1, + aux_sym_compilation_unit_token1, ACTIONS(441), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(493), 1, + aux_sym_package_specification_token1, + ACTIONS(443), 1, aux_sym_package_specification_token3, - STATE(907), 1, + ACTIONS(447), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(449), 1, + aux_sym_interface_type_definition_token1, + STATE(925), 1, sym_generic_formal_part, - STATE(989), 1, + STATE(997), 1, sym__subprogram_specification, - STATE(992), 1, + STATE(1032), 1, sym_overriding_indicator, - STATE(1058), 1, - sym_procedure_specification, - STATE(1078), 1, + STATE(1115), 1, sym_function_specification, - STATE(1625), 1, + STATE(1142), 1, + sym_procedure_specification, + STATE(1627), 1, sym_package_specification, - STATE(1662), 1, + STATE(1664), 1, sym__defining_identifier_list, STATE(419), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(460), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(84), 34, + STATE(426), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(77), 34, sym__basic_declarative_item, sym__basic_declaration, sym__package_declaration, @@ -15779,60 +15361,158 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym_package_specification_repeat1, - [1209] = 26, + [478] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(247), 1, + aux_sym_declare_expression_token1, + ACTIONS(249), 1, + aux_sym_case_expression_token1, + ACTIONS(257), 1, + aux_sym_if_expression_token1, + ACTIONS(423), 1, aux_sym_iterated_element_association_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(427), 1, + anon_sym_LT_GT, + ACTIONS(429), 1, + aux_sym_component_choice_list_token1, ACTIONS(433), 1, + sym_string_literal, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(455), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(528), 1, + sym_selected_component, + STATE(598), 1, + sym__simple_expression, + STATE(1150), 1, + sym_parameter_association, + STATE(1409), 1, + sym_expression, + STATE(1652), 1, + sym_value_sequence, + STATE(1735), 1, + sym_component_choice_list, + STATE(1740), 1, + sym_range_g, + ACTIONS(435), 2, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(1737), 5, + sym__conditional_expression, + sym_quantified_expression, + sym_declare_expression, + sym_case_expression, + sym_if_expression, + STATE(484), 6, + sym__name, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [609] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + sym_identifier, + ACTIONS(460), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(463), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(468), 1, aux_sym_package_specification_token1, - ACTIONS(439), 1, + ACTIONS(471), 1, + aux_sym_use_clause_token2, + ACTIONS(474), 1, + aux_sym_relation_membership_token1, + ACTIONS(477), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(441), 1, + ACTIONS(480), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(483), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(486), 1, aux_sym_interface_type_definition_token1, + ACTIONS(489), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(492), 1, + aux_sym_global_mode_token1, ACTIONS(495), 1, - aux_sym_package_specification_token3, - STATE(907), 1, + aux_sym_pragma_g_token1, + ACTIONS(498), 1, + aux_sym_subtype_declaration_token1, + STATE(925), 1, sym_generic_formal_part, - STATE(989), 1, + STATE(997), 1, sym__subprogram_specification, - STATE(992), 1, + STATE(1032), 1, sym_overriding_indicator, - STATE(1058), 1, - sym_procedure_specification, - STATE(1078), 1, + STATE(1115), 1, sym_function_specification, - STATE(1625), 1, + STATE(1142), 1, + sym_procedure_specification, + STATE(1627), 1, sym_package_specification, - STATE(1662), 1, + STATE(1664), 1, sym__defining_identifier_list, + ACTIONS(466), 2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token3, STATE(419), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(460), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(79), 34, + STATE(426), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(80), 34, sym__basic_declarative_item, sym__basic_declaration, sym__package_declaration, @@ -15867,7 +15547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym_package_specification_repeat1, - [1323] = 26, + [724] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(15), 1, @@ -15892,35 +15572,37 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(433), 1, - aux_sym_package_specification_token1, - ACTIONS(439), 1, - aux_sym_access_to_subprogram_definition_token1, ACTIONS(441), 1, + aux_sym_package_specification_token1, + ACTIONS(447), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(449), 1, aux_sym_interface_type_definition_token1, - ACTIONS(497), 1, + ACTIONS(501), 1, + aux_sym_compilation_unit_token1, + ACTIONS(503), 1, aux_sym_package_specification_token3, - STATE(907), 1, + STATE(925), 1, sym_generic_formal_part, - STATE(989), 1, + STATE(997), 1, sym__subprogram_specification, - STATE(992), 1, + STATE(1032), 1, sym_overriding_indicator, - STATE(1058), 1, - sym_procedure_specification, - STATE(1078), 1, + STATE(1115), 1, sym_function_specification, - STATE(1625), 1, + STATE(1142), 1, + sym_procedure_specification, + STATE(1627), 1, sym_package_specification, - STATE(1662), 1, + STATE(1664), 1, sym__defining_identifier_list, STATE(419), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(460), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(79), 34, + STATE(426), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(80), 34, sym__basic_declarative_item, sym__basic_declaration, sym__package_declaration, @@ -15955,7 +15637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym_package_specification_repeat1, - [1437] = 26, + [841] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(15), 1, @@ -15980,34 +15662,388 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(433), 1, - aux_sym_package_specification_token1, - ACTIONS(439), 1, - aux_sym_access_to_subprogram_definition_token1, ACTIONS(441), 1, + aux_sym_package_specification_token1, + ACTIONS(447), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(449), 1, aux_sym_interface_type_definition_token1, - ACTIONS(445), 1, + ACTIONS(451), 1, + aux_sym_compilation_unit_token1, + ACTIONS(453), 1, aux_sym_package_specification_token3, - STATE(907), 1, + STATE(925), 1, sym_generic_formal_part, - STATE(989), 1, + STATE(997), 1, sym__subprogram_specification, - STATE(992), 1, + STATE(1032), 1, sym_overriding_indicator, - STATE(1058), 1, - sym_procedure_specification, - STATE(1078), 1, + STATE(1115), 1, sym_function_specification, - STATE(1625), 1, + STATE(1142), 1, + sym_procedure_specification, + STATE(1627), 1, sym_package_specification, - STATE(1662), 1, + STATE(1664), 1, sym__defining_identifier_list, STATE(419), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(460), 2, sym_protected_type_declaration, sym_task_type_declaration, + STATE(426), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(81), 34, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym__type_declaration, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_exception_declaration, + sym__generic_declaration, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_record_representation_clause, + sym__renaming_declaration, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [958] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(441), 1, + aux_sym_package_specification_token1, + ACTIONS(447), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(449), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(503), 1, + aux_sym_package_specification_token3, + STATE(925), 1, + sym_generic_formal_part, + STATE(997), 1, + sym__subprogram_specification, + STATE(1032), 1, + sym_overriding_indicator, + STATE(1115), 1, + sym_function_specification, + STATE(1142), 1, + sym_procedure_specification, + STATE(1627), 1, + sym_package_specification, + STATE(1664), 1, + sym__defining_identifier_list, + STATE(419), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(426), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(85), 34, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym__type_declaration, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_exception_declaration, + sym__generic_declaration, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_record_representation_clause, + sym__renaming_declaration, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [1072] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(441), 1, + aux_sym_package_specification_token1, + ACTIONS(447), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(449), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(505), 1, + aux_sym_package_specification_token3, + STATE(925), 1, + sym_generic_formal_part, + STATE(997), 1, + sym__subprogram_specification, + STATE(1032), 1, + sym_overriding_indicator, + STATE(1115), 1, + sym_function_specification, + STATE(1142), 1, + sym_procedure_specification, + STATE(1627), 1, + sym_package_specification, + STATE(1664), 1, + sym__defining_identifier_list, + STATE(419), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(426), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(80), 34, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym__type_declaration, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_exception_declaration, + sym__generic_declaration, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_record_representation_clause, + sym__renaming_declaration, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [1186] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(441), 1, + aux_sym_package_specification_token1, + ACTIONS(447), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(449), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(507), 1, + aux_sym_package_specification_token3, + STATE(925), 1, + sym_generic_formal_part, + STATE(997), 1, + sym__subprogram_specification, + STATE(1032), 1, + sym_overriding_indicator, + STATE(1115), 1, + sym_function_specification, + STATE(1142), 1, + sym_procedure_specification, + STATE(1627), 1, + sym_package_specification, + STATE(1664), 1, + sym__defining_identifier_list, + STATE(419), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(426), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(80), 34, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym__type_declaration, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_exception_declaration, + sym__generic_declaration, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_record_representation_clause, + sym__renaming_declaration, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [1300] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(441), 1, + aux_sym_package_specification_token1, + ACTIONS(447), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(449), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(453), 1, + aux_sym_package_specification_token3, + STATE(925), 1, + sym_generic_formal_part, + STATE(997), 1, + sym__subprogram_specification, + STATE(1032), 1, + sym_overriding_indicator, + STATE(1115), 1, + sym_function_specification, + STATE(1142), 1, + sym_procedure_specification, + STATE(1627), 1, + sym_package_specification, + STATE(1664), 1, + sym__defining_identifier_list, + STATE(419), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(426), 2, + sym_single_protected_declaration, + sym_single_task_declaration, STATE(89), 34, sym__basic_declarative_item, sym__basic_declaration, @@ -16043,271 +16079,92 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym_package_specification_repeat1, - [1551] = 36, + [1414] = 38, ACTIONS(3), 1, sym_comment, ACTIONS(217), 1, sym_identifier, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(241), 1, - aux_sym_primary_null_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(249), 1, - aux_sym_positional_array_aggregate_token1, - ACTIONS(499), 1, - aux_sym_iterated_element_association_token1, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(598), 1, - sym__simple_expression, - STATE(771), 1, - sym_null_exclusion, - STATE(1054), 1, - sym_array_component_association, - STATE(1142), 1, - sym_expression, - STATE(1149), 1, - sym_discrete_choice, - STATE(1210), 1, - sym__named_record_component_association, - STATE(1261), 1, - sym_iterated_element_association, - STATE(1386), 1, - sym_range_g, - STATE(1409), 1, - sym__subtype_indication, - STATE(1605), 1, - sym__array_component_association_list, - STATE(1606), 1, - sym_record_component_association_list, - STATE(1650), 1, - sym_value_sequence, - STATE(1939), 1, - sym_component_choice_list, - STATE(1945), 1, - sym_discrete_choice_list, - STATE(478), 2, - sym__name, - sym_function_call, - ACTIONS(219), 3, + ACTIONS(219), 1, sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(266), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [1685] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(433), 1, - aux_sym_package_specification_token1, - ACTIONS(439), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(441), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(497), 1, - aux_sym_package_specification_token3, - STATE(907), 1, - sym_generic_formal_part, - STATE(989), 1, - sym__subprogram_specification, - STATE(992), 1, - sym_overriding_indicator, - STATE(1058), 1, - sym_procedure_specification, - STATE(1078), 1, - sym_function_specification, - STATE(1625), 1, - sym_package_specification, - STATE(1662), 1, - sym__defining_identifier_list, - STATE(419), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(460), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(83), 34, - sym__basic_declarative_item, - sym__basic_declaration, - sym__package_declaration, - sym_use_clause, - sym__basic_declarative_item_pragma, - sym__type_declaration, - sym_full_type_declaration, - sym_private_type_declaration, - sym_private_extension_declaration, - sym_incomplete_type_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_exception_declaration, - sym__generic_declaration, - sym_generic_subprogram_declaration, - sym_generic_package_declaration, - sym_generic_instantiation, - sym_null_procedure_declaration, - sym_number_declaration, - sym_object_declaration, - sym_pragma_g, - sym_record_representation_clause, - sym__renaming_declaration, - sym_object_renaming_declaration, - sym_exception_renaming_declaration, - sym_package_renaming_declaration, - sym_subprogram_renaming_declaration, - sym_generic_renaming_declaration, - sym_subprogram_declaration, - sym_expression_function_declaration, - sym_subtype_declaration, - aux_sym_package_specification_repeat1, - [1799] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, ACTIONS(237), 1, - aux_sym_raise_expression_token1, + aux_sym_relation_membership_token1, ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, ACTIONS(243), 1, - aux_sym_allocator_token1, + aux_sym_primary_null_token1, ACTIONS(245), 1, - aux_sym_declare_expression_token1, - ACTIONS(247), 1, - aux_sym_case_expression_token1, - ACTIONS(255), 1, - aux_sym_if_expression_token1, - ACTIONS(419), 1, + aux_sym_allocator_token1, + ACTIONS(251), 1, + aux_sym_component_choice_list_token1, + ACTIONS(509), 1, aux_sym_iterated_element_association_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(423), 1, - anon_sym_LT_GT, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(501), 1, - sym_identifier, - STATE(500), 1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(501), 1, + sym_selected_component, + STATE(509), 1, sym_term, STATE(598), 1, sym__simple_expression, - STATE(1299), 1, - sym_parameter_association, - STATE(1360), 1, + STATE(802), 1, + sym_null_exclusion, + STATE(1073), 1, + sym_array_component_association, + STATE(1171), 1, + sym_discrete_choice, + STATE(1226), 1, + sym_iterated_element_association, + STATE(1227), 1, sym_expression, - STATE(1650), 1, - sym_value_sequence, - STATE(1920), 1, - sym_component_choice_list, - STATE(1922), 1, + STATE(1290), 1, + sym__named_record_component_association, + STATE(1375), 1, sym_range_g, - ACTIONS(427), 3, - sym_string_literal, + STATE(1377), 1, + sym__subtype_indication, + STATE(1570), 1, + sym_record_component_association_list, + STATE(1574), 1, + sym__array_component_association_list, + STATE(1652), 1, + sym_value_sequence, + STATE(1877), 1, + sym_component_choice_list, + STATE(1926), 1, + sym_discrete_choice_list, + ACTIONS(221), 2, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(484), 2, + sym__name, + sym_function_call, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(1921), 5, - sym__conditional_expression, - sym_quantified_expression, - sym_declare_expression, - sym_case_expression, - sym_if_expression, - STATE(478), 7, - sym__name, - sym_selected_component, + STATE(264), 4, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - sym_function_call, - STATE(488), 14, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16322,7 +16179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [1923] = 26, + [1552] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(15), 1, @@ -16347,35 +16204,35 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(433), 1, - aux_sym_package_specification_token1, - ACTIONS(439), 1, - aux_sym_access_to_subprogram_definition_token1, ACTIONS(441), 1, + aux_sym_package_specification_token1, + ACTIONS(447), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(449), 1, aux_sym_interface_type_definition_token1, - ACTIONS(493), 1, + ACTIONS(507), 1, aux_sym_package_specification_token3, - STATE(907), 1, + STATE(925), 1, sym_generic_formal_part, - STATE(989), 1, + STATE(997), 1, sym__subprogram_specification, - STATE(992), 1, + STATE(1032), 1, sym_overriding_indicator, - STATE(1058), 1, - sym_procedure_specification, - STATE(1078), 1, + STATE(1115), 1, sym_function_specification, - STATE(1625), 1, + STATE(1142), 1, + sym_procedure_specification, + STATE(1627), 1, sym_package_specification, - STATE(1662), 1, + STATE(1664), 1, sym__defining_identifier_list, STATE(419), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(460), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(79), 34, + STATE(426), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(84), 34, sym__basic_declarative_item, sym__basic_declaration, sym__package_declaration, @@ -16410,724 +16267,725 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym_package_specification_repeat1, - [2037] = 36, + [1666] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(441), 1, + aux_sym_package_specification_token1, + ACTIONS(447), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(449), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(503), 1, + aux_sym_package_specification_token3, + STATE(925), 1, + sym_generic_formal_part, + STATE(997), 1, + sym__subprogram_specification, + STATE(1032), 1, + sym_overriding_indicator, + STATE(1115), 1, + sym_function_specification, + STATE(1142), 1, + sym_procedure_specification, + STATE(1627), 1, + sym_package_specification, + STATE(1664), 1, + sym__defining_identifier_list, + STATE(419), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(426), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(80), 34, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym__type_declaration, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_exception_declaration, + sym__generic_declaration, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_record_representation_clause, + sym__renaming_declaration, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [1780] = 38, ACTIONS(3), 1, sym_comment, ACTIONS(217), 1, sym_identifier, - ACTIONS(221), 1, - sym_numeric_literal, + ACTIONS(219), 1, + sym_string_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, ACTIONS(237), 1, - aux_sym_raise_expression_token1, + aux_sym_relation_membership_token1, ACTIONS(239), 1, - aux_sym_factor_abs_token1, + aux_sym_raise_expression_token1, ACTIONS(241), 1, - aux_sym_primary_null_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(249), 1, - aux_sym_positional_array_aggregate_token1, - ACTIONS(499), 1, - aux_sym_iterated_element_association_token1, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(598), 1, - sym__simple_expression, - STATE(771), 1, - sym_null_exclusion, - STATE(937), 1, - sym_expression, - STATE(1054), 1, - sym_array_component_association, - STATE(1149), 1, - sym_discrete_choice, - STATE(1210), 1, - sym__named_record_component_association, - STATE(1261), 1, - sym_iterated_element_association, - STATE(1386), 1, - sym_range_g, - STATE(1409), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1939), 1, - sym_component_choice_list, - STATE(1940), 1, - sym_record_component_association_list, - STATE(1944), 1, - sym__array_component_association_list, - STATE(1945), 1, - sym_discrete_choice_list, - STATE(478), 2, - sym__name, - sym_function_call, - ACTIONS(219), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(266), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [2171] = 35, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, aux_sym_factor_abs_token1, ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(249), 1, - aux_sym_positional_array_aggregate_token1, - ACTIONS(421), 1, aux_sym_primary_null_token1, - ACTIONS(499), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(503), 1, - sym_identifier, - ACTIONS(505), 1, - aux_sym_value_sequence_token1, - ACTIONS(507), 1, - anon_sym_RBRACK, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(598), 1, - sym__simple_expression, - STATE(771), 1, - sym_null_exclusion, - STATE(928), 1, - sym_expression, - STATE(1054), 1, - sym_array_component_association, - STATE(1149), 1, - sym_discrete_choice, - STATE(1386), 1, - sym_range_g, - STATE(1409), 1, - sym__subtype_indication, - STATE(1447), 1, - sym_iterated_element_association, - STATE(1650), 1, - sym_value_sequence, - STATE(1909), 1, - sym__array_component_association_list, - STATE(1945), 1, - sym_discrete_choice_list, - STATE(478), 2, - sym__name, - sym_function_call, - ACTIONS(219), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(266), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [2302] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(249), 1, - aux_sym_positional_array_aggregate_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(499), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(503), 1, - sym_identifier, - ACTIONS(507), 1, - anon_sym_RBRACK, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(598), 1, - sym__simple_expression, - STATE(771), 1, - sym_null_exclusion, - STATE(928), 1, - sym_expression, - STATE(1054), 1, - sym_array_component_association, - STATE(1149), 1, - sym_discrete_choice, - STATE(1261), 1, - sym_iterated_element_association, - STATE(1386), 1, - sym_range_g, - STATE(1409), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1909), 1, - sym__array_component_association_list, - STATE(1945), 1, - sym_discrete_choice_list, - STATE(478), 2, - sym__name, - sym_function_call, - ACTIONS(219), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(266), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [2430] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(249), 1, - aux_sym_positional_array_aggregate_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(499), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(503), 1, - sym_identifier, - ACTIONS(507), 1, - anon_sym_RBRACK, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(598), 1, - sym__simple_expression, - STATE(771), 1, - sym_null_exclusion, - STATE(965), 1, - sym_expression, - STATE(1054), 1, - sym_array_component_association, - STATE(1149), 1, - sym_discrete_choice, - STATE(1261), 1, - sym_iterated_element_association, - STATE(1386), 1, - sym_range_g, - STATE(1409), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1909), 1, - sym__array_component_association_list, - STATE(1945), 1, - sym_discrete_choice_list, - STATE(478), 2, - sym__name, - sym_function_call, - ACTIONS(219), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(266), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [2558] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(249), 1, - aux_sym_positional_array_aggregate_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(499), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(503), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(598), 1, - sym__simple_expression, - STATE(771), 1, - sym_null_exclusion, - STATE(1054), 1, - sym_array_component_association, - STATE(1149), 1, - sym_discrete_choice, - STATE(1261), 1, - sym_iterated_element_association, - STATE(1409), 1, - sym__subtype_indication, - STATE(1602), 1, - sym__array_component_association_list, - STATE(1650), 1, - sym_value_sequence, - STATE(1945), 1, - sym_discrete_choice_list, - STATE(478), 2, - sym__name, - sym_function_call, - STATE(1386), 2, - sym_range_g, - sym_expression, - ACTIONS(219), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(266), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [2681] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(249), 1, - aux_sym_positional_array_aggregate_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(499), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(503), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(598), 1, - sym__simple_expression, - STATE(771), 1, - sym_null_exclusion, - STATE(1054), 1, - sym_array_component_association, - STATE(1128), 1, - sym_expression, - STATE(1149), 1, - sym_discrete_choice, - STATE(1261), 1, - sym_iterated_element_association, - STATE(1386), 1, - sym_range_g, - STATE(1409), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1944), 1, - sym__array_component_association_list, - STATE(1945), 1, - sym_discrete_choice_list, - STATE(478), 2, - sym__name, - sym_function_call, - ACTIONS(219), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(266), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [2806] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(249), 1, - aux_sym_positional_array_aggregate_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(499), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(503), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(598), 1, - sym__simple_expression, - STATE(771), 1, - sym_null_exclusion, - STATE(1149), 1, - sym_discrete_choice, - STATE(1197), 1, - sym_array_component_association, - STATE(1261), 1, - sym_iterated_element_association, - STATE(1409), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1945), 1, - sym_discrete_choice_list, - STATE(478), 2, - sym__name, - sym_function_call, - STATE(1386), 2, - sym_range_g, - sym_expression, - ACTIONS(219), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(266), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [2926] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(247), 1, - aux_sym_case_expression_token1, - ACTIONS(255), 1, - aux_sym_if_expression_token1, - ACTIONS(419), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, + ACTIONS(251), 1, + aux_sym_component_choice_list_token1, ACTIONS(509), 1, - sym_identifier, - STATE(500), 1, + aux_sym_iterated_element_association_token1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(501), 1, + sym_selected_component, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(598), 1, sym__simple_expression, - STATE(1306), 1, - sym_pragma_argument_association, - STATE(1382), 1, + STATE(802), 1, + sym_null_exclusion, + STATE(939), 1, sym_expression, - STATE(1650), 1, + STATE(1073), 1, + sym_array_component_association, + STATE(1171), 1, + sym_discrete_choice, + STATE(1226), 1, + sym_iterated_element_association, + STATE(1290), 1, + sym__named_record_component_association, + STATE(1375), 1, + sym_range_g, + STATE(1377), 1, + sym__subtype_indication, + STATE(1652), 1, sym_value_sequence, - STATE(1829), 1, - sym__aspect_mark, - ACTIONS(511), 3, - sym_string_literal, + STATE(1877), 1, + sym_component_choice_list, + STATE(1880), 1, + sym_record_component_association_list, + STATE(1923), 1, + sym__array_component_association_list, + STATE(1926), 1, + sym_discrete_choice_list, + ACTIONS(221), 2, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(484), 2, + sym__name, + sym_function_call, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(264), 4, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(1830), 4, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [1918] = 35, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(237), 1, + aux_sym_relation_membership_token1, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(509), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(511), 1, + sym_identifier, + ACTIONS(513), 1, + aux_sym_value_sequence_token1, + ACTIONS(515), 1, + anon_sym_RBRACK, + ACTIONS(517), 1, + aux_sym_component_choice_list_token1, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(598), 1, + sym__simple_expression, + STATE(802), 1, + sym_null_exclusion, + STATE(933), 1, + sym_expression, + STATE(1073), 1, + sym_array_component_association, + STATE(1171), 1, + sym_discrete_choice, + STATE(1375), 1, + sym_range_g, + STATE(1377), 1, + sym__subtype_indication, + STATE(1383), 1, + sym_iterated_element_association, + STATE(1652), 1, + sym_value_sequence, + STATE(1926), 1, + sym_discrete_choice_list, + STATE(1946), 1, + sym__array_component_association_list, + STATE(484), 2, + sym__name, + sym_function_call, + ACTIONS(221), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(264), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [2049] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(237), 1, + aux_sym_relation_membership_token1, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(509), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(511), 1, + sym_identifier, + ACTIONS(515), 1, + anon_sym_RBRACK, + ACTIONS(517), 1, + aux_sym_component_choice_list_token1, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(598), 1, + sym__simple_expression, + STATE(802), 1, + sym_null_exclusion, + STATE(933), 1, + sym_expression, + STATE(1073), 1, + sym_array_component_association, + STATE(1171), 1, + sym_discrete_choice, + STATE(1226), 1, + sym_iterated_element_association, + STATE(1375), 1, + sym_range_g, + STATE(1377), 1, + sym__subtype_indication, + STATE(1652), 1, + sym_value_sequence, + STATE(1926), 1, + sym_discrete_choice_list, + STATE(1946), 1, + sym__array_component_association_list, + STATE(484), 2, + sym__name, + sym_function_call, + ACTIONS(221), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(264), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [2177] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(237), 1, + aux_sym_relation_membership_token1, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(509), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(511), 1, + sym_identifier, + ACTIONS(515), 1, + anon_sym_RBRACK, + ACTIONS(517), 1, + aux_sym_component_choice_list_token1, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(598), 1, + sym__simple_expression, + STATE(802), 1, + sym_null_exclusion, + STATE(1020), 1, + sym_expression, + STATE(1073), 1, + sym_array_component_association, + STATE(1171), 1, + sym_discrete_choice, + STATE(1226), 1, + sym_iterated_element_association, + STATE(1375), 1, + sym_range_g, + STATE(1377), 1, + sym__subtype_indication, + STATE(1652), 1, + sym_value_sequence, + STATE(1926), 1, + sym_discrete_choice_list, + STATE(1946), 1, + sym__array_component_association_list, + STATE(484), 2, + sym__name, + sym_function_call, + ACTIONS(221), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(264), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [2305] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(237), 1, + aux_sym_relation_membership_token1, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(509), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(511), 1, + sym_identifier, + ACTIONS(517), 1, + aux_sym_component_choice_list_token1, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(598), 1, + sym__simple_expression, + STATE(802), 1, + sym_null_exclusion, + STATE(1073), 1, + sym_array_component_association, + STATE(1171), 1, + sym_discrete_choice, + STATE(1226), 1, + sym_iterated_element_association, + STATE(1377), 1, + sym__subtype_indication, + STATE(1619), 1, + sym__array_component_association_list, + STATE(1652), 1, + sym_value_sequence, + STATE(1926), 1, + sym_discrete_choice_list, + STATE(484), 2, + sym__name, + sym_function_call, + STATE(1375), 2, + sym_range_g, + sym_expression, + ACTIONS(221), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(264), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [2428] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(237), 1, + aux_sym_relation_membership_token1, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(509), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(511), 1, + sym_identifier, + ACTIONS(517), 1, + aux_sym_component_choice_list_token1, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(598), 1, + sym__simple_expression, + STATE(802), 1, + sym_null_exclusion, + STATE(1063), 1, + sym_expression, + STATE(1073), 1, + sym_array_component_association, + STATE(1171), 1, + sym_discrete_choice, + STATE(1226), 1, + sym_iterated_element_association, + STATE(1375), 1, + sym_range_g, + STATE(1377), 1, + sym__subtype_indication, + STATE(1652), 1, + sym_value_sequence, + STATE(1923), 1, + sym__array_component_association_list, + STATE(1926), 1, + sym_discrete_choice_list, + STATE(484), 2, + sym__name, + sym_function_call, + ACTIONS(221), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(264), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [2553] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(249), 1, + aux_sym_case_expression_token1, + ACTIONS(257), 1, + aux_sym_if_expression_token1, + ACTIONS(423), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(519), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1284), 1, + sym_pragma_argument_association, + STATE(1453), 1, + sym_expression, + STATE(1611), 1, + sym__aspect_mark, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(1608), 4, sym__conditional_quantified_expression, sym_quantified_expression, sym_case_expression, sym_if_expression, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -17135,7 +16993,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17150,67 +17008,156 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [3040] = 27, + [2667] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, anon_sym_DASH, ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(231), 1, - aux_sym_chunk_specification_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(251), 1, - aux_sym_global_mode_token1, - ACTIONS(253), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - ACTIONS(515), 1, anon_sym_LPAREN, - STATE(500), 1, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(237), 1, + aux_sym_relation_membership_token1, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(509), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(511), 1, + sym_identifier, + ACTIONS(517), 1, + aux_sym_component_choice_list_token1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(598), 1, sym__simple_expression, - STATE(825), 1, - sym_non_empty_mode, - STATE(1025), 1, - sym_global_mode, - STATE(1650), 1, + STATE(802), 1, + sym_null_exclusion, + STATE(1171), 1, + sym_discrete_choice, + STATE(1181), 1, + sym_array_component_association, + STATE(1226), 1, + sym_iterated_element_association, + STATE(1377), 1, + sym__subtype_indication, + STATE(1652), 1, sym_value_sequence, - ACTIONS(511), 3, + STATE(1926), 1, + sym_discrete_choice_list, + STATE(484), 2, + sym__name, + sym_function_call, + STATE(1375), 2, + sym_range_g, + sym_expression, + ACTIONS(221), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(1028), 3, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(264), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [2787] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_chunk_specification_token1, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(253), 1, + aux_sym_global_mode_token1, + ACTIONS(255), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + ACTIONS(525), 1, + anon_sym_LPAREN, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(831), 1, + sym_non_empty_mode, + STATE(1050), 1, + sym_global_mode, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(1049), 3, sym_expression, sym__aspect_definition, sym_global_aspect_definition, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -17218,7 +17165,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17233,401 +17180,75 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [3150] = 28, + [2897] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(235), 1, + ACTIONS(237), 1, aux_sym_relation_membership_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(249), 1, - aux_sym_positional_array_aggregate_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(503), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(598), 1, - sym__simple_expression, - STATE(771), 1, - sym_null_exclusion, - STATE(1149), 1, - sym_discrete_choice, - STATE(1409), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1731), 1, - sym_discrete_choice_list, - STATE(478), 2, - sym__name, - sym_function_call, - STATE(1386), 2, - sym_range_g, - sym_expression, - ACTIONS(219), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(266), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [3261] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(237), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(249), 1, - aux_sym_positional_array_aggregate_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(503), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(598), 1, - sym__simple_expression, - STATE(771), 1, - sym_null_exclusion, - STATE(1149), 1, - sym_discrete_choice, - STATE(1409), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1758), 1, - sym_discrete_choice_list, - STATE(478), 2, - sym__name, - sym_function_call, - STATE(1386), 2, - sym_range_g, - sym_expression, - ACTIONS(219), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(266), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [3372] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(249), 1, - aux_sym_positional_array_aggregate_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(503), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(598), 1, - sym__simple_expression, - STATE(771), 1, - sym_null_exclusion, - STATE(1149), 1, - sym_discrete_choice, - STATE(1409), 1, - sym__subtype_indication, - STATE(1497), 1, - sym_discrete_choice_list, - STATE(1650), 1, - sym_value_sequence, - STATE(478), 2, - sym__name, - sym_function_call, - STATE(1386), 2, - sym_range_g, - sym_expression, - ACTIONS(219), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(266), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [3483] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(249), 1, - aux_sym_positional_array_aggregate_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(503), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(598), 1, - sym__simple_expression, - STATE(771), 1, - sym_null_exclusion, - STATE(1409), 1, - sym__subtype_indication, - STATE(1449), 1, - sym_discrete_choice, - STATE(1650), 1, - sym_value_sequence, - STATE(478), 2, - sym__name, - sym_function_call, - STATE(1386), 2, - sym_range_g, - sym_expression, - ACTIONS(219), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(266), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [3591] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(241), 1, - aux_sym_primary_null_token1, - ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(501), 1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(511), 1, sym_identifier, ACTIONS(517), 1, - aux_sym_attribute_designator_token2, - STATE(500), 1, + aux_sym_component_choice_list_token1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(598), 1, sym__simple_expression, - STATE(1210), 1, - sym__named_record_component_association, - STATE(1650), 1, + STATE(802), 1, + sym_null_exclusion, + STATE(1171), 1, + sym_discrete_choice, + STATE(1377), 1, + sym__subtype_indication, + STATE(1652), 1, sym_value_sequence, - STATE(1733), 1, - sym_record_component_association_list, - STATE(1735), 1, + STATE(1785), 1, + sym_discrete_choice_list, + STATE(484), 2, + sym__name, + sym_function_call, + STATE(1375), 2, + sym_range_g, sym_expression, - STATE(1939), 1, - sym_component_choice_list, - ACTIONS(511), 3, + ACTIONS(221), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, - sym__name, + STATE(264), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17642,69 +17263,403 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [3696] = 25, + [3008] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, ACTIONS(237), 1, - aux_sym_raise_expression_token1, + aux_sym_relation_membership_token1, ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(511), 1, + sym_identifier, + ACTIONS(517), 1, + aux_sym_component_choice_list_token1, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(598), 1, + sym__simple_expression, + STATE(802), 1, + sym_null_exclusion, + STATE(1171), 1, + sym_discrete_choice, + STATE(1377), 1, + sym__subtype_indication, + STATE(1652), 1, + sym_value_sequence, + STATE(1760), 1, + sym_discrete_choice_list, + STATE(484), 2, + sym__name, + sym_function_call, + STATE(1375), 2, + sym_range_g, + sym_expression, + ACTIONS(221), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(264), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [3119] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(237), 1, + aux_sym_relation_membership_token1, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(511), 1, + sym_identifier, + ACTIONS(517), 1, + aux_sym_component_choice_list_token1, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(598), 1, + sym__simple_expression, + STATE(802), 1, + sym_null_exclusion, + STATE(1171), 1, + sym_discrete_choice, + STATE(1377), 1, + sym__subtype_indication, + STATE(1504), 1, + sym_discrete_choice_list, + STATE(1652), 1, + sym_value_sequence, + STATE(484), 2, + sym__name, + sym_function_call, + STATE(1375), 2, + sym_range_g, + sym_expression, + ACTIONS(221), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(264), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_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] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(237), 1, + aux_sym_relation_membership_token1, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(511), 1, + sym_identifier, + ACTIONS(517), 1, + aux_sym_component_choice_list_token1, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(598), 1, + sym__simple_expression, + STATE(802), 1, + sym_null_exclusion, + STATE(1377), 1, + sym__subtype_indication, + STATE(1391), 1, + sym_discrete_choice, + STATE(1652), 1, + sym_value_sequence, + STATE(484), 2, + sym__name, + sym_function_call, + STATE(1375), 2, + sym_range_g, + sym_expression, + ACTIONS(221), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(264), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [3338] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, aux_sym_primary_null_token1, - ACTIONS(423), 1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(429), 1, + aux_sym_component_choice_list_token1, + ACTIONS(433), 1, + sym_string_literal, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(455), 1, + sym_identifier, + ACTIONS(527), 1, + aux_sym_attribute_designator_token2, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(528), 1, + sym_selected_component, + STATE(1290), 1, + sym__named_record_component_association, + STATE(1652), 1, + sym_value_sequence, + STATE(1811), 1, + sym_record_component_association_list, + STATE(1812), 1, + sym_expression, + STATE(1877), 1, + sym_component_choice_list, + ACTIONS(521), 2, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 6, + sym__name, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [3450] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(427), 1, anon_sym_LT_GT, ACTIONS(429), 1, + aux_sym_component_choice_list_token1, + ACTIONS(433), 1, + sym_string_literal, + ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(501), 1, + ACTIONS(455), 1, sym_identifier, - STATE(500), 1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(526), 1, sym__simple_expression, - STATE(1360), 1, + STATE(528), 1, + sym_selected_component, + STATE(1409), 1, sym_expression, - STATE(1393), 1, + STATE(1425), 1, sym_parameter_association, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - STATE(1920), 1, + STATE(1735), 1, sym_component_choice_list, - ACTIONS(511), 3, - sym_string_literal, + ACTIONS(521), 2, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 6, sym__name, - sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17719,220 +17674,70 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [3798] = 25, + [3559] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(519), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1196), 1, - sym_parameter_specification, - STATE(1650), 1, - sym_value_sequence, - STATE(1820), 1, - sym_expression, - STATE(1871), 1, - sym__parameter_specification_list, - STATE(1872), 1, - sym__defining_identifier_list, - ACTIONS(511), 3, + aux_sym_component_choice_list_token1, + ACTIONS(433), 1, sym_string_literal, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(455), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(528), 1, + sym_selected_component, + STATE(1652), 1, + sym_value_sequence, + STATE(1877), 1, + sym_component_choice_list, + ACTIONS(521), 2, sym_character_literal, sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [3900] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(501), 1, - sym_identifier, - ACTIONS(521), 1, - aux_sym_positional_array_aggregate_token1, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1097), 1, - sym_expression, - STATE(1221), 1, - sym__named_record_component_association, - STATE(1650), 1, - sym_value_sequence, - STATE(1939), 1, - sym_component_choice_list, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [4002] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(501), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - STATE(1939), 1, - sym_component_choice_list, - STATE(1475), 2, + STATE(1488), 2, sym_expression, sym__named_record_component_association, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 6, sym__name, - sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17947,67 +17752,71 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [4099] = 24, + [3663] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, ACTIONS(429), 1, + aux_sym_component_choice_list_token1, + ACTIONS(433), 1, + sym_string_literal, + ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(501), 1, + ACTIONS(455), 1, sym_identifier, - STATE(500), 1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(526), 1, sym__simple_expression, - STATE(1474), 1, - sym_expression, - STATE(1475), 1, + STATE(528), 1, + sym_selected_component, + STATE(1488), 1, sym__named_record_component_association, - STATE(1650), 1, + STATE(1489), 1, + sym_expression, + STATE(1652), 1, sym_value_sequence, - STATE(1939), 1, + STATE(1877), 1, sym_component_choice_list, - ACTIONS(511), 3, - sym_string_literal, + ACTIONS(521), 2, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 6, sym__name, - sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18022,66 +17831,70 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [4198] = 23, + [3769] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, ACTIONS(429), 1, + aux_sym_component_choice_list_token1, + ACTIONS(433), 1, + sym_string_literal, + ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(501), 1, + ACTIONS(455), 1, sym_identifier, - STATE(500), 1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(526), 1, sym__simple_expression, - STATE(1650), 1, + STATE(528), 1, + sym_selected_component, + STATE(1652), 1, sym_value_sequence, - STATE(1939), 1, + STATE(1877), 1, sym_component_choice_list, - STATE(1221), 2, + ACTIONS(521), 2, + sym_character_literal, + sym_target_name, + STATE(1188), 2, sym_expression, sym__named_record_component_association, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 6, sym__name, - sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18096,136 +17909,61 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [4295] = 26, + [3873] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(771), 1, - sym_null_exclusion, - STATE(956), 1, - sym__subtype_indication, - STATE(1196), 1, - sym_parameter_specification, - STATE(1650), 1, - sym_value_sequence, - STATE(1871), 1, - sym__parameter_specification_list, - STATE(1872), 1, - sym__defining_identifier_list, - STATE(1903), 1, - sym__simple_expression, - STATE(478), 2, - sym__name, - sym_function_call, - STATE(1669), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(525), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(524), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [4398] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(429), 1, + ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(527), 1, - sym_identifier, ACTIONS(529), 1, - anon_sym_SEMI, - STATE(500), 1, + sym_identifier, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(526), 1, sym__simple_expression, - STATE(1418), 1, - sym_extended_return_object_declaration, - STATE(1650), 1, + STATE(1256), 1, + sym_parameter_specification, + STATE(1652), 1, sym_value_sequence, - STATE(1697), 1, + STATE(1665), 1, + sym__parameter_specification_list, + STATE(1680), 1, sym_expression, - ACTIONS(511), 3, + STATE(1699), 1, + sym__defining_identifier_list, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -18233,7 +17971,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18248,58 +17986,289 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [4497] = 26, + [3975] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(531), 1, + ACTIONS(433), 1, + sym_string_literal, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(455), 1, sym_identifier, - STATE(500), 1, + ACTIONS(531), 1, + aux_sym_component_choice_list_token1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(771), 1, - sym_null_exclusion, - STATE(956), 1, - sym__subtype_indication, - STATE(1310), 1, - sym_index_subtype_definition, - STATE(1650), 1, - sym_value_sequence, - STATE(1678), 1, - sym__index_subtype_definition_list, - STATE(1679), 1, - sym__discrete_subtype_definition_list, - STATE(1903), 1, + STATE(526), 1, sym__simple_expression, - STATE(675), 2, + STATE(528), 1, + sym_selected_component, + STATE(1125), 1, + sym_expression, + STATE(1188), 1, + sym__named_record_component_association, + STATE(1652), 1, + sym_value_sequence, + STATE(1877), 1, + sym_component_choice_list, + ACTIONS(521), 2, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 6, + sym__name, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [4081] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(237), 1, + aux_sym_relation_membership_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(533), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(802), 1, + sym_null_exclusion, + STATE(954), 1, + sym__subtype_indication, + STATE(1256), 1, + sym_parameter_specification, + STATE(1513), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + STATE(1665), 1, + sym__parameter_specification_list, + STATE(1699), 1, + sym__defining_identifier_list, + STATE(484), 2, sym__name, sym_function_call, - STATE(1301), 2, + STATE(1642), 2, sym__discrete_subtype_definition, sym_range_g, - ACTIONS(533), 3, + ACTIONS(535), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(486), 4, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [4184] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(537), 1, + sym_identifier, + ACTIONS(539), 1, + anon_sym_SEMI, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1420), 1, + sym_extended_return_object_declaration, + STATE(1652), 1, + sym_value_sequence, + STATE(1707), 1, + sym_expression, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [4283] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(237), 1, + aux_sym_relation_membership_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(541), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(802), 1, + sym_null_exclusion, + STATE(954), 1, + sym__subtype_indication, + STATE(1339), 1, + sym_index_subtype_definition, + STATE(1513), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + STATE(1653), 1, + sym__index_subtype_definition_list, + STATE(1669), 1, + sym__discrete_subtype_definition_list, + STATE(688), 2, + sym__name, + sym_function_call, + STATE(1212), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(543), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -18310,7 +18279,7 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18325,69 +18294,69 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [4600] = 26, + [4386] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(235), 1, + ACTIONS(237), 1, aux_sym_relation_membership_token1, - ACTIONS(239), 1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(523), 1, + ACTIONS(533), 1, sym_identifier, - STATE(500), 1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(771), 1, + STATE(802), 1, sym_null_exclusion, - STATE(956), 1, + STATE(954), 1, sym__subtype_indication, - STATE(1196), 1, + STATE(1256), 1, sym_parameter_specification, - STATE(1650), 1, - sym_value_sequence, - STATE(1871), 1, - sym__parameter_specification_list, - STATE(1872), 1, - sym__defining_identifier_list, - STATE(1903), 1, + STATE(1513), 1, sym__simple_expression, - STATE(478), 2, + STATE(1652), 1, + sym_value_sequence, + STATE(1665), 1, + sym__parameter_specification_list, + STATE(1699), 1, + sym__defining_identifier_list, + STATE(484), 2, sym__name, sym_function_call, - STATE(1837), 2, + STATE(1567), 2, sym__discrete_subtype_definition, sym_range_g, - ACTIONS(525), 3, + ACTIONS(535), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(524), 5, + STATE(525), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18402,238 +18371,59 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [4703] = 24, + [4489] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(429), 1, + ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(509), 1, + ACTIONS(519), 1, sym_identifier, - STATE(500), 1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(526), 1, sym__simple_expression, - STATE(1373), 1, + STATE(1386), 1, sym_pragma_argument_association, - STATE(1382), 1, + STATE(1453), 1, sym_expression, - STATE(1650), 1, - sym_value_sequence, - STATE(1829), 1, + STATE(1611), 1, sym__aspect_mark, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [4802] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(537), 1, - sym_identifier, - ACTIONS(535), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [4858] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(541), 1, - sym_identifier, - ACTIONS(539), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [4914] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - ACTIONS(543), 1, - anon_sym_LT_GT, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1508), 1, - sym_expression, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(511), 3, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -18641,7 +18431,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18656,85 +18446,12 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [5010] = 23, + [4588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, + ACTIONS(547), 1, sym_identifier, - ACTIONS(545), 1, - anon_sym_LT_GT, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1495), 1, - sym_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [5106] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(549), 1, - sym_identifier, - ACTIONS(547), 47, + ACTIONS(545), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -18782,269 +18499,110 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5162] = 3, + [4644] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(551), 1, + sym_identifier, + ACTIONS(549), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [4700] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, ACTIONS(553), 1, - sym_identifier, - ACTIONS(551), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [5218] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(557), 1, - sym_identifier, - ACTIONS(555), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [5274] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(561), 1, - sym_identifier, - ACTIONS(559), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [5330] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(563), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [5386] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - ACTIONS(521), 1, - aux_sym_positional_array_aggregate_token1, - STATE(500), 1, + anon_sym_LT_GT, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(526), 1, sym__simple_expression, - STATE(1281), 1, - sym_expression, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(511), 3, + STATE(1695), 1, + sym_expression, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -19052,7 +18610,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -19067,12 +18625,85 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [5482] = 3, + [4796] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(569), 1, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, sym_identifier, - ACTIONS(567), 47, + ACTIONS(555), 1, + anon_sym_LT_GT, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1497), 1, + sym_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [4892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(559), 1, + sym_identifier, + ACTIONS(557), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -19120,12 +18751,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5538] = 3, + [4948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(563), 1, sym_identifier, - ACTIONS(571), 47, + ACTIONS(561), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -19173,60 +18804,239 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5594] = 3, + [5004] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(567), 1, + sym_identifier, + ACTIONS(565), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [5060] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(571), 1, + sym_identifier, + ACTIONS(569), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [5116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(575), 1, + sym_identifier, + ACTIONS(573), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [5172] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, ACTIONS(577), 1, - sym_identifier, - ACTIONS(575), 47, - ts_builtin_sym_end, + aux_sym_component_choice_list_token1, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1302), 1, + sym_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [5650] = 3, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [5268] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(581), 1, @@ -19279,7 +19089,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5706] = 3, + [5324] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(585), 1, @@ -19332,7 +19142,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5762] = 3, + [5380] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(589), 1, @@ -19385,7 +19195,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5818] = 3, + [5436] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(593), 1, @@ -19438,7 +19248,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5874] = 3, + [5492] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(597), 1, @@ -19491,7 +19301,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5930] = 3, + [5548] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(601), 1, @@ -19544,7 +19354,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5986] = 3, + [5604] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(605), 1, @@ -19597,7 +19407,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6042] = 3, + [5660] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(609), 1, @@ -19650,7 +19460,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6098] = 3, + [5716] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(613), 1, @@ -19703,7 +19513,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6154] = 3, + [5772] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(617), 1, @@ -19756,7 +19566,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6210] = 3, + [5828] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(621), 1, @@ -19809,7 +19619,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6266] = 3, + [5884] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(625), 1, @@ -19862,7 +19672,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6322] = 3, + [5940] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(629), 1, @@ -19915,7 +19725,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6378] = 3, + [5996] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(633), 1, @@ -19968,203 +19778,216 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6434] = 23, + [6052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - ACTIONS(635), 1, - anon_sym_LT_GT, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - STATE(1681), 1, - sym_expression, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [6530] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, ACTIONS(637), 1, - anon_sym_LT_GT, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - STATE(1682), 1, - sym_expression, - ACTIONS(511), 3, + sym_identifier, + ACTIONS(635), 47, + ts_builtin_sym_end, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [6626] = 23, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6108] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(641), 1, + sym_identifier, + ACTIONS(639), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(645), 1, + sym_identifier, + ACTIONS(643), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6220] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(429), 1, + ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(513), 1, + ACTIONS(523), 1, sym_identifier, - ACTIONS(639), 1, + ACTIONS(647), 1, anon_sym_LT_GT, - STATE(500), 1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(526), 1, sym__simple_expression, - STATE(1440), 1, - sym_expression, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(511), 3, + STATE(1683), 1, + sym_expression, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -20172,7 +19995,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -20187,166 +20010,153 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [6722] = 3, + [6316] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(643), 1, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, sym_identifier, - ACTIONS(641), 47, - ts_builtin_sym_end, + ACTIONS(649), 1, + anon_sym_LT_GT, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + STATE(1684), 1, + sym_expression, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [6778] = 3, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [6412] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(647), 1, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, sym_identifier, - ACTIONS(645), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [6834] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(651), 1, - sym_identifier, - ACTIONS(649), 47, - ts_builtin_sym_end, + anon_sym_LT_GT, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1388), 1, + sym_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [6890] = 3, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [6508] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(655), 1, @@ -20399,85 +20209,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6946] = 23, + [6564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, + ACTIONS(659), 1, sym_identifier, - ACTIONS(657), 1, - aux_sym_positional_array_aggregate_token1, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1166), 1, - sym_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [7042] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(661), 1, - sym_identifier, - ACTIONS(659), 47, + ACTIONS(657), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -20525,80 +20262,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7098] = 23, + [6620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, ACTIONS(663), 1, - aux_sym_positional_array_aggregate_token1, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1166), 1, - sym_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, + sym_identifier, + ACTIONS(661), 47, + ts_builtin_sym_end, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [7194] = 3, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6676] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(667), 1, @@ -20651,12 +20368,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7250] = 3, + [6732] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(671), 1, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, sym_identifier, - ACTIONS(669), 47, + ACTIONS(669), 1, + aux_sym_component_choice_list_token1, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1175), 1, + sym_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [6828] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(673), 1, + sym_identifier, + ACTIONS(671), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -20704,60 +20494,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7306] = 3, + [6884] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, ACTIONS(675), 1, - sym_identifier, - ACTIONS(673), 47, - ts_builtin_sym_end, + aux_sym_component_choice_list_token1, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1175), 1, + sym_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [7362] = 3, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [6980] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(679), 1, @@ -20810,7 +20620,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7418] = 3, + [7036] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(683), 1, @@ -20863,7 +20673,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7474] = 3, + [7092] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(687), 1, @@ -20916,7 +20726,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7530] = 3, + [7148] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(691), 1, @@ -20969,7 +20779,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7586] = 3, + [7204] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(695), 1, @@ -21022,7 +20832,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7642] = 3, + [7260] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(699), 1, @@ -21075,7 +20885,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7698] = 3, + [7316] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(703), 1, @@ -21128,289 +20938,216 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7754] = 23, + [7372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(707), 1, + sym_identifier, + ACTIONS(705), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7428] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(709), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7484] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(715), 1, + sym_identifier, + ACTIONS(713), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7540] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(429), 1, + ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(513), 1, + ACTIONS(523), 1, sym_identifier, - ACTIONS(705), 1, - anon_sym_LT_GT, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1194), 1, - sym_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [7850] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(709), 1, - sym_identifier, - ACTIONS(707), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [7906] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(713), 1, - sym_identifier, - ACTIONS(711), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [7962] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(717), 1, - sym_identifier, - ACTIONS(715), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [8018] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - ACTIONS(719), 1, - aux_sym_delay_until_statement_token2, - STATE(500), 1, + anon_sym_LT_GT, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(526), 1, sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - STATE(1737), 1, + STATE(1180), 1, sym_expression, - ACTIONS(511), 3, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -21418,7 +21155,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -21433,12 +21170,12 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [8114] = 3, + [7636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(723), 1, + ACTIONS(721), 1, sym_identifier, - ACTIONS(721), 47, + ACTIONS(719), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -21486,12 +21223,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8170] = 3, + [7692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(727), 1, + ACTIONS(725), 1, sym_identifier, - ACTIONS(725), 47, + ACTIONS(723), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -21539,60 +21276,133 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8226] = 3, + [7748] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(729), 1, + sym_identifier, + ACTIONS(727), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7804] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, ACTIONS(731), 1, - sym_identifier, - ACTIONS(729), 47, - ts_builtin_sym_end, + aux_sym_delay_until_statement_token2, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + STATE(1816), 1, + sym_expression, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [8282] = 3, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [7900] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(735), 1, @@ -21645,7 +21455,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8338] = 3, + [7956] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(739), 1, @@ -21698,57 +21508,216 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8394] = 23, + [8012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, + ACTIONS(743), 1, sym_identifier, - ACTIONS(741), 1, - anon_sym_LT_GT, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1390), 1, - sym_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, + ACTIONS(741), 47, + ts_builtin_sym_end, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [8068] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(747), 1, + sym_identifier, + ACTIONS(745), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [8124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(751), 1, + sym_identifier, + ACTIONS(749), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [8180] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + ACTIONS(753), 1, + anon_sym_LT_GT, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1426), 1, + sym_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -21756,7 +21725,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -21771,166 +21740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [8490] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(745), 1, - sym_identifier, - ACTIONS(743), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [8546] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(749), 1, - sym_identifier, - ACTIONS(747), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [8602] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(753), 1, - sym_identifier, - ACTIONS(751), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [8658] = 3, + [8276] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(757), 1, @@ -21983,7 +21793,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8714] = 3, + [8332] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(761), 1, @@ -22036,7 +21846,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8770] = 3, + [8388] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(765), 1, @@ -22089,7 +21899,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8826] = 3, + [8444] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(769), 1, @@ -22142,7 +21952,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8882] = 3, + [8500] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(773), 1, @@ -22195,7 +22005,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8938] = 3, + [8556] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(777), 1, @@ -22248,7 +22058,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8994] = 3, + [8612] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(781), 1, @@ -22301,7 +22111,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [9050] = 3, + [8668] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(785), 1, @@ -22354,7 +22164,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [9106] = 3, + [8724] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(789), 1, @@ -22407,7 +22217,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [9162] = 3, + [8780] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(793), 1, @@ -22460,7 +22270,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [9218] = 3, + [8836] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(797), 1, @@ -22513,85 +22323,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [9274] = 23, + [8892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, + ACTIONS(801), 1, sym_identifier, - ACTIONS(799), 1, - aux_sym_positional_array_aggregate_token1, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1166), 1, - sym_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9370] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(803), 1, - sym_identifier, - ACTIONS(801), 47, + ACTIONS(799), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -22639,1619 +22376,163 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [9426] = 22, + [8948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - STATE(1675), 1, - sym_expression, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9519] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1087), 1, - sym_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9612] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, ACTIONS(805), 1, - aux_sym_expression_token4, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, + sym_identifier, + ACTIONS(803), 47, + ts_builtin_sym_end, sym_string_literal, sym_character_literal, sym_target_name, - STATE(604), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9705] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(972), 1, - sym_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9798] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1607), 1, - sym_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9891] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1066), 1, - sym_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9984] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1178), 1, - sym_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10077] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - STATE(1694), 1, - sym_expression, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10170] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - STATE(1751), 1, - sym_expression, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10263] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - STATE(1853), 1, - sym_expression, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10356] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - STATE(1928), 1, - sym_expression, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10449] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - STATE(1794), 1, - sym_expression, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10542] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1608), 1, - sym_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10635] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - STATE(1858), 1, - sym_expression, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10728] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1394), 1, - sym_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10821] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - STATE(1931), 1, - sym_expression, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10914] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - STATE(1676), 1, - sym_expression, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11007] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1643), 1, - sym_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11100] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - STATE(1774), 1, - sym_expression, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11193] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(503), 1, - sym_identifier, - ACTIONS(807), 1, - aux_sym_loop_parameter_specification_token1, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(771), 1, - sym_null_exclusion, - STATE(956), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1903), 1, - sym__simple_expression, - STATE(613), 2, - sym__name, - sym_function_call, - STATE(1002), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(219), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(266), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11290] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - ACTIONS(809), 1, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, aux_sym_expression_token2, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [9004] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(807), 47, + ts_builtin_sym_end, sym_string_literal, sym_character_literal, sym_target_name, - STATE(606), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11383] = 22, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [9060] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(429), 1, + ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(513), 1, + ACTIONS(523), 1, sym_identifier, - STATE(500), 1, + ACTIONS(811), 1, + aux_sym_component_choice_list_token1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(526), 1, sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - STATE(1660), 1, + STATE(1175), 1, sym_expression, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11476] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1249), 1, - sym_expression, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(511), 3, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -24259,7 +22540,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24274,55 +22555,108 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11569] = 22, + [9156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, + ACTIONS(815), 1, sym_identifier, - STATE(500), 1, + ACTIONS(813), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [9212] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(526), 1, sym__simple_expression, - STATE(1581), 1, - sym_expression, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(511), 3, + STATE(1677), 1, + sym_expression, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -24330,7 +22664,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24345,55 +22679,55 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11662] = 22, + [9305] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(429), 1, + ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(513), 1, + ACTIONS(523), 1, sym_identifier, - STATE(500), 1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(526), 1, sym__simple_expression, - STATE(1374), 1, + STATE(1082), 1, sym_expression, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(511), 3, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -24401,7 +22735,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24416,55 +22750,55 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11755] = 22, + [9398] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(429), 1, + ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(513), 1, + ACTIONS(523), 1, sym_identifier, - STATE(500), 1, + ACTIONS(817), 1, + aux_sym_expression_token2, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(526), 1, sym__simple_expression, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - STATE(1880), 1, - sym_expression, - ACTIONS(511), 3, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(609), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -24472,7 +22806,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24487,55 +22821,55 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11848] = 22, + [9491] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(429), 1, + ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(513), 1, + ACTIONS(523), 1, sym_identifier, - STATE(500), 1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(526), 1, sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - STATE(1739), 1, + STATE(966), 1, sym_expression, - ACTIONS(511), 3, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -24543,7 +22877,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24558,55 +22892,55 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11941] = 22, + [9584] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(429), 1, + ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(513), 1, + ACTIONS(523), 1, sym_identifier, - STATE(500), 1, + ACTIONS(819), 1, + aux_sym_expression_token4, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(526), 1, sym__simple_expression, - STATE(1166), 1, - sym_expression, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(511), 3, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(612), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -24614,7 +22948,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24629,55 +22963,55 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12034] = 22, + [9677] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(429), 1, + ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(513), 1, + ACTIONS(523), 1, sym_identifier, - STATE(500), 1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(526), 1, sym__simple_expression, - STATE(1507), 1, + STATE(1122), 1, sym_expression, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(511), 3, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -24685,7 +23019,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24700,55 +23034,55 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12127] = 22, + [9770] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(429), 1, + ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(513), 1, + ACTIONS(523), 1, sym_identifier, - STATE(500), 1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(526), 1, sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - STATE(1937), 1, + STATE(1548), 1, sym_expression, - ACTIONS(511), 3, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -24756,7 +23090,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24771,55 +23105,55 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12220] = 22, + [9863] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(429), 1, + ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(513), 1, + ACTIONS(523), 1, sym_identifier, - STATE(500), 1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(526), 1, sym__simple_expression, - STATE(1352), 1, + STATE(1250), 1, sym_expression, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(511), 3, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -24827,7 +23161,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24842,55 +23176,55 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12313] = 22, + [9956] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(429), 1, + ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(513), 1, + ACTIONS(523), 1, sym_identifier, - STATE(500), 1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(526), 1, sym__simple_expression, - STATE(1062), 1, - sym_expression, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(511), 3, + STATE(1702), 1, + sym_expression, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -24898,7 +23232,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24913,55 +23247,55 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12406] = 22, + [10049] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(429), 1, + ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(513), 1, + ACTIONS(523), 1, sym_identifier, - STATE(500), 1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(526), 1, sym__simple_expression, - STATE(1334), 1, - sym_expression, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(511), 3, + STATE(1869), 1, + sym_expression, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -24969,7 +23303,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24984,55 +23318,55 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12499] = 22, + [10142] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(429), 1, + ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(513), 1, + ACTIONS(523), 1, sym_identifier, - STATE(500), 1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(526), 1, sym__simple_expression, - STATE(1563), 1, - sym_expression, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(511), 3, + STATE(1780), 1, + sym_expression, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -25040,7 +23374,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25055,55 +23389,55 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12592] = 22, + [10235] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(429), 1, + ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(513), 1, + ACTIONS(523), 1, sym_identifier, - STATE(500), 1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(526), 1, sym__simple_expression, STATE(1496), 1, sym_expression, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(511), 3, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(558), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -25111,7 +23445,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25126,642 +23460,562 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12685] = 22, + [10328] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1541), 1, + sym_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10421] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + STATE(1796), 1, + sym_expression, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10514] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1502), 1, + sym_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10607] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + STATE(1789), 1, + sym_expression, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10700] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1341), 1, + sym_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10793] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1602), 1, + sym_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10886] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + STATE(1678), 1, + sym_expression, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10979] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, + aux_sym_relation_membership_token1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, + ACTIONS(511), 1, sym_identifier, - STATE(500), 1, + ACTIONS(821), 1, + aux_sym_loop_parameter_specification_token1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1258), 1, - sym_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12778] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1287), 1, - sym_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12871] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - STATE(1787), 1, - sym_expression, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12964] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1524), 1, - sym_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13057] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1523), 1, - sym_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13150] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - STATE(1784), 1, - sym_expression, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13243] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(811), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(813), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [13297] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(815), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(817), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [13351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(819), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(821), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [13405] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(503), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(771), 1, + STATE(802), 1, sym_null_exclusion, - STATE(956), 1, + STATE(954), 1, sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1903), 1, + STATE(1513), 1, sym__simple_expression, - STATE(617), 2, + STATE(1652), 1, + sym_value_sequence, + STATE(610), 2, sym__name, sym_function_call, - STATE(998), 2, + STATE(993), 2, sym__discrete_subtype_definition, sym_range_g, - ACTIONS(219), 3, + ACTIONS(221), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(266), 5, + STATE(264), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25776,63 +24030,1778 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [13499] = 23, + [11076] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(823), 1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, sym_identifier, - STATE(500), 1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(771), 1, - sym_null_exclusion, - STATE(1388), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1903), 1, + STATE(526), 1, sym__simple_expression, - STATE(478), 2, + STATE(1652), 1, + sym_value_sequence, + STATE(1733), 1, + sym_expression, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11169] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + STATE(1662), 1, + sym_expression, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11262] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1268), 1, + sym_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11355] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1583), 1, + sym_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11448] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1387), 1, + sym_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11541] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + STATE(1947), 1, + sym_expression, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11634] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + STATE(1710), 1, + sym_expression, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11727] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1175), 1, + sym_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11820] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + STATE(1719), 1, + sym_expression, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11913] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + STATE(1852), 1, + sym_expression, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12006] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1351), 1, + sym_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12099] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1074), 1, + sym_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12192] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1301), 1, + sym_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12285] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + STATE(1838), 1, + sym_expression, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12378] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1507), 1, + sym_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12471] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1338), 1, + sym_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12564] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1317), 1, + sym_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12657] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + STATE(1944), 1, + sym_expression, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12750] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + STATE(1806), 1, + sym_expression, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12843] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + STATE(1805), 1, + sym_expression, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12936] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + STATE(1943), 1, + sym_expression, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(558), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13029] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(823), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(825), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [13083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(827), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(829), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [13137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(831), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(833), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [13191] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(237), 1, + aux_sym_relation_membership_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(511), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(802), 1, + sym_null_exclusion, + STATE(954), 1, + sym__subtype_indication, + STATE(1513), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + STATE(616), 2, sym__name, sym_function_call, - STATE(1467), 2, + STATE(1035), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(221), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(264), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13285] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(237), 1, + aux_sym_relation_membership_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(835), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(802), 1, + sym_null_exclusion, + STATE(1382), 1, + sym__subtype_indication, + STATE(1513), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + STATE(484), 2, + sym__name, + sym_function_call, + STATE(1478), 2, sym_range_g, sym__discrete_range, - ACTIONS(525), 3, + ACTIONS(535), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(524), 5, + STATE(525), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25847,124 +25816,124 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [13593] = 23, + [13379] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(823), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(771), 1, - sym_null_exclusion, - STATE(956), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1903), 1, - sym__simple_expression, - STATE(478), 2, - sym__name, - sym_function_call, - STATE(1645), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(525), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(524), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13687] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, aux_sym_relation_membership_token1, - ACTIONS(513), 1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(835), 1, sym_identifier, - STATE(500), 1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(527), 1, + STATE(802), 1, + sym_null_exclusion, + STATE(954), 1, + sym__subtype_indication, + STATE(1513), 1, sym__simple_expression, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(511), 3, + STATE(484), 2, + sym__name, + sym_function_call, + STATE(1604), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(535), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(607), 3, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13473] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(614), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -25972,7 +25941,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25987,160 +25956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [13777] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(825), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(827), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [13831] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(829), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(831), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [13885] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(833), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(835), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [13939] = 3, + [13563] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(837), 7, @@ -26191,218 +26007,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [13993] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(823), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(771), 1, - sym_null_exclusion, - STATE(1388), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1903), 1, - sym__simple_expression, - STATE(478), 2, - sym__name, - sym_function_call, - STATE(1276), 2, - sym_range_g, - sym__discrete_range, - ACTIONS(525), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(524), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14087] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(823), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(771), 1, - sym_null_exclusion, - STATE(956), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1903), 1, - sym__simple_expression, - STATE(478), 2, - sym__name, - sym_function_call, - STATE(1377), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(525), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(524), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14181] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(612), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14271] = 3, + [13617] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(841), 7, @@ -26453,7 +26058,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14325] = 3, + [13671] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(845), 7, @@ -26504,7 +26109,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14379] = 3, + [13725] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(849), 7, @@ -26555,7 +26160,149 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14433] = 3, + [13779] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(237), 1, + aux_sym_relation_membership_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(835), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(802), 1, + sym_null_exclusion, + STATE(1382), 1, + sym__subtype_indication, + STATE(1513), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + STATE(484), 2, + sym__name, + sym_function_call, + STATE(1202), 2, + sym_range_g, + sym__discrete_range, + ACTIONS(535), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13873] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(237), 1, + aux_sym_relation_membership_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(835), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(802), 1, + sym_null_exclusion, + STATE(954), 1, + sym__subtype_indication, + STATE(1513), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + STATE(484), 2, + sym__name, + sym_function_call, + STATE(1464), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(535), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13967] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(853), 7, @@ -26606,7 +26353,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14487] = 3, + [14021] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(857), 7, @@ -26657,7 +26404,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14541] = 3, + [14075] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(861), 7, @@ -26708,7 +26455,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14595] = 3, + [14129] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(865), 7, @@ -26759,63 +26506,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14649] = 23, + [14183] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, ACTIONS(223), 1, - anon_sym_PLUS, + sym_numeric_literal, ACTIONS(225), 1, - anon_sym_DASH, + anon_sym_PLUS, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_DASH, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(823), 1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, sym_identifier, - STATE(500), 1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(771), 1, - sym_null_exclusion, - STATE(956), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1903), 1, + STATE(526), 1, sym__simple_expression, - STATE(478), 2, - sym__name, - sym_function_call, - STATE(1896), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(525), 3, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(486), 4, + STATE(606), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(524), 5, + STATE(276), 7, + sym__name, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(488), 14, + sym_function_call, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26830,7 +26575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [14743] = 3, + [14273] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(869), 7, @@ -26881,7 +26626,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14797] = 3, + [14327] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(526), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14417] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(873), 7, @@ -26932,7 +26746,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14851] = 3, + [14471] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(877), 7, @@ -26983,7 +26797,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14905] = 3, + [14525] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(237), 1, + aux_sym_relation_membership_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(835), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(802), 1, + sym_null_exclusion, + STATE(954), 1, + sym__subtype_indication, + STATE(1513), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + STATE(484), 2, + sym__name, + sym_function_call, + STATE(1898), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(535), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14619] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(881), 7, @@ -27034,7 +26919,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14959] = 3, + [14673] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(885), 7, @@ -27085,7 +26970,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [15013] = 3, + [14727] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(889), 7, @@ -27136,76 +27021,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [15067] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(616), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [15157] = 3, + [14781] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(893), 7, @@ -27216,7 +27032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(895), 38, + ACTIONS(895), 39, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -27234,412 +27050,445 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, aux_sym_iterator_filter_token1, aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [15210] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(897), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(574), 1, - sym__simple_expression, - STATE(587), 1, - sym_membership_choice_list, - STATE(1650), 1, - sym_value_sequence, - STATE(577), 2, - sym_range_g, - sym__membership_choice, - ACTIONS(427), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(478), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [15299] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(899), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(901), 38, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [15352] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(903), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(905), 38, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [15405] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(897), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(574), 1, - sym__simple_expression, - STATE(588), 1, - sym_membership_choice_list, - STATE(1650), 1, - sym_value_sequence, - STATE(577), 2, - sym_range_g, - sym__membership_choice, - ACTIONS(427), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(478), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [15494] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(897), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(574), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - STATE(589), 2, - sym_range_g, - sym__membership_choice, - ACTIONS(427), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(478), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [15580] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(913), 1, - anon_sym_DOT, - ACTIONS(915), 1, - anon_sym_LPAREN, - STATE(259), 1, - sym_actual_parameter_part, - STATE(489), 1, - sym_index_constraint, - ACTIONS(907), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(909), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [15642] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(921), 1, - anon_sym_LPAREN, - ACTIONS(927), 1, aux_sym_attribute_designator_token2, - ACTIONS(929), 1, aux_sym_attribute_designator_token3, - ACTIONS(933), 1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, aux_sym_range_attribute_designator_token1, - ACTIONS(931), 3, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [14835] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(897), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(899), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [14889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(901), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(903), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [14943] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(907), 38, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [14996] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(909), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(574), 1, + sym__simple_expression, + STATE(585), 1, + sym_membership_choice_list, + STATE(1652), 1, + sym_value_sequence, + STATE(572), 2, + sym_range_g, + sym__membership_choice, + ACTIONS(435), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(484), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [15085] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(909), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(574), 1, + sym__simple_expression, + STATE(583), 1, + sym_membership_choice_list, + STATE(1652), 1, + sym_value_sequence, + STATE(572), 2, + sym_range_g, + sym__membership_choice, + ACTIONS(435), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(484), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [15174] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(913), 38, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [15227] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(917), 38, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [15280] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(923), 1, + anon_sym_LPAREN, + ACTIONS(929), 1, + aux_sym_attribute_designator_token2, + ACTIONS(931), 1, + aux_sym_attribute_designator_token3, + ACTIONS(935), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(933), 3, anon_sym_SEMI, anon_sym_COLON_EQ, aux_sym_accept_statement_token2, - ACTIONS(924), 5, + ACTIONS(926), 5, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_iterator_filter_token1, anon_sym_PIPE, aux_sym_loop_statement_token1, - STATE(653), 6, + STATE(656), 6, sym__constraint, sym__scalar_constraint, sym_range_constraint, sym_index_constraint, sym_digits_constraint, sym_delta_constraint, - ACTIONS(917), 7, + ACTIONS(919), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -27647,7 +27496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(919), 19, + ACTIONS(921), 19, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -27667,27 +27516,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [15708] = 8, + [15346] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(941), 1, sym_tick, - ACTIONS(913), 1, + ACTIONS(943), 1, anon_sym_DOT, - ACTIONS(915), 1, + ACTIONS(945), 1, anon_sym_LPAREN, - STATE(259), 1, + STATE(262), 1, sym_actual_parameter_part, - STATE(496), 1, + STATE(494), 1, sym_index_constraint, - ACTIONS(935), 6, + ACTIONS(937), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(937), 33, + ACTIONS(939), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -27721,151 +27570,127 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [15770] = 3, + [15408] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(909), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(574), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + STATE(587), 2, + sym_range_g, + sym__membership_choice, + ACTIONS(435), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(484), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [15494] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(941), 1, - sym_identifier, - ACTIONS(939), 42, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [15821] = 3, - ACTIONS(3), 1, - sym_comment, + sym_tick, + ACTIONS(943), 1, + anon_sym_DOT, ACTIONS(945), 1, - sym_identifier, - ACTIONS(943), 42, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, + anon_sym_LPAREN, + STATE(262), 1, + sym_actual_parameter_part, + STATE(488), 1, + sym_index_constraint, + ACTIONS(947), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(949), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [15872] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_identifier, - ACTIONS(947), 42, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [15923] = 3, + [15556] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(953), 1, @@ -27913,7 +27738,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15974] = 3, + [15607] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(957), 1, @@ -27961,49 +27786,193 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16025] = 20, + [15658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(959), 1, + ACTIONS(961), 1, sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(1650), 1, - sym_value_sequence, - STATE(1906), 1, - sym__simple_expression, - STATE(1907), 1, - sym_chunk_specification, - ACTIONS(511), 3, + ACTIONS(959), 42, + ts_builtin_sym_end, sym_string_literal, sym_character_literal, sym_target_name, - STATE(486), 4, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15709] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(965), 1, + sym_identifier, + ACTIONS(963), 42, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15760] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(969), 1, + sym_identifier, + ACTIONS(967), 42, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15811] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(909), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(648), 1, + sym_range_g, + STATE(1513), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(435), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(484), 7, sym__name, sym_selected_component, sym_slice, @@ -28011,7 +27980,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -28026,12 +27995,12 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [16110] = 3, + [15896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 1, + ACTIONS(973), 1, sym_identifier, - ACTIONS(961), 42, + ACTIONS(971), 42, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -28074,193 +28043,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16161] = 3, + [15947] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(967), 1, - sym_identifier, - ACTIONS(965), 42, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [16212] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(971), 1, - sym_identifier, - ACTIONS(969), 42, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, + ACTIONS(437), 1, aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [16263] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(975), 1, sym_identifier, - ACTIONS(973), 42, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [16314] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(897), 1, - sym_identifier, - STATE(500), 1, + STATE(498), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(509), 1, sym_term, - STATE(662), 1, - sym_range_g, - STATE(1650), 1, - sym_value_sequence, - STATE(1903), 1, + STATE(1539), 1, sym__simple_expression, - ACTIONS(427), 3, + STATE(1555), 1, + sym_chunk_specification, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(486), 4, + STATE(487), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(478), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -28268,7 +28093,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -28283,16 +28108,16 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [16399] = 7, + [16032] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(941), 1, sym_tick, - ACTIONS(913), 1, + ACTIONS(943), 1, anon_sym_DOT, ACTIONS(981), 1, anon_sym_LPAREN, - STATE(259), 1, + STATE(262), 1, sym_actual_parameter_part, ACTIONS(977), 6, anon_sym_EQ, @@ -28335,12 +28160,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [16458] = 3, + [16091] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(985), 1, sym_identifier, - ACTIONS(983), 41, + ACTIONS(983), 42, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -28348,6 +28173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, aux_sym_iterated_element_association_token1, aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, aux_sym_compilation_unit_token1, aux_sym_package_specification_token1, aux_sym_package_specification_token3, @@ -28382,12 +28208,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16508] = 3, + [16142] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, sym_identifier, - ACTIONS(987), 41, + ACTIONS(987), 42, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -28395,6 +28221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, aux_sym_iterated_element_association_token1, aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, aux_sym_compilation_unit_token1, aux_sym_package_specification_token1, aux_sym_package_specification_token3, @@ -28429,12 +28256,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16558] = 3, + [16193] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(993), 1, sym_identifier, - ACTIONS(991), 41, + ACTIONS(991), 42, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -28442,6 +28269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, aux_sym_iterated_element_association_token1, aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, aux_sym_compilation_unit_token1, aux_sym_package_specification_token1, aux_sym_package_specification_token3, @@ -28476,7 +28304,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16608] = 3, + [16244] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(997), 1, @@ -28523,7 +28351,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16658] = 3, + [16294] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1001), 1, @@ -28570,7 +28398,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16708] = 3, + [16344] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1005), 1, @@ -28617,7 +28445,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16758] = 3, + [16394] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1009), 1, @@ -28664,7 +28492,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16808] = 3, + [16444] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1013), 1, @@ -28711,54 +28539,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16858] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1013), 1, - sym_identifier, - ACTIONS(1011), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [16908] = 3, + [16494] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1017), 1, @@ -28805,7 +28586,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16958] = 3, + [16544] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1021), 1, @@ -28852,7 +28633,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17008] = 3, + [16594] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1025), 1, @@ -28899,7 +28680,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17058] = 3, + [16644] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(624), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [16726] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1029), 1, @@ -28946,7 +28790,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17108] = 3, + [16776] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1033), 1, @@ -28993,7 +28837,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17158] = 3, + [16826] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1037), 1, @@ -29040,7 +28884,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17208] = 3, + [16876] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1041), 1, @@ -29087,7 +28931,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17258] = 3, + [16926] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1045), 1, @@ -29134,7 +28978,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17308] = 3, + [16976] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1049), 1, @@ -29181,7 +29025,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17358] = 3, + [17026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1049), 1, + sym_identifier, + ACTIONS(1047), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17076] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1053), 1, @@ -29228,7 +29119,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17408] = 3, + [17126] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1057), 1, @@ -29275,7 +29166,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17458] = 3, + [17176] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1061), 1, @@ -29322,7 +29213,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17508] = 3, + [17226] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(626), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [17308] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1065), 1, @@ -29369,7 +29323,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17558] = 3, + [17358] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1069), 1, @@ -29416,70 +29370,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17608] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(591), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [17690] = 3, + [17408] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1073), 1, @@ -29526,7 +29417,164 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17740] = 3, + [17458] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1073), 1, + sym_identifier, + ACTIONS(1071), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17508] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(588), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [17590] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1069), 1, + sym_identifier, + ACTIONS(1067), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17640] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1077), 1, @@ -29573,6 +29621,100 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, + [17690] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1081), 1, + sym_identifier, + ACTIONS(1079), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1085), 1, + sym_identifier, + ACTIONS(1083), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, [17790] = 3, ACTIONS(3), 1, sym_comment, @@ -29621,53 +29763,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, [17840] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(1083), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [17890] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, @@ -29714,7 +29809,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17940] = 3, + [17890] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1093), 1, @@ -29761,7 +29856,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17990] = 3, + [17940] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1097), 1, @@ -29808,7 +29903,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18040] = 3, + [17990] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1101), 1, @@ -29855,7 +29950,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18090] = 3, + [18040] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1105), 1, @@ -29902,7 +29997,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18140] = 3, + [18090] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1109), 1, @@ -29949,7 +30044,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18190] = 3, + [18140] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1113), 1, @@ -29996,7 +30091,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18240] = 3, + [18190] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1117), 1, @@ -30043,7 +30138,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18290] = 3, + [18240] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1121), 1, @@ -30090,7 +30185,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18340] = 3, + [18290] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1125), 1, @@ -30137,7 +30232,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18390] = 3, + [18340] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1129), 1, @@ -30184,6 +30279,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, + [18390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1133), 1, + sym_identifier, + ACTIONS(1131), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, [18440] = 3, ACTIONS(3), 1, sym_comment, @@ -30279,6 +30421,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, [18540] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1127), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18590] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1141), 1, @@ -30325,7 +30514,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18590] = 3, + [18640] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1145), 1, @@ -30372,7 +30561,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18640] = 3, + [18690] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1149), 1, @@ -30419,7 +30608,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18690] = 3, + [18740] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1153), 1, @@ -30466,7 +30655,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18740] = 3, + [18790] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1157), 1, @@ -30513,7 +30702,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18790] = 3, + [18840] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1081), 1, + sym_identifier, + ACTIONS(1079), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18890] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1161), 1, @@ -30560,7 +30796,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18840] = 3, + [18940] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1165), 1, @@ -30607,7 +30843,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18890] = 3, + [18990] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1169), 1, @@ -30654,7 +30890,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18940] = 3, + [19040] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1173), 1, @@ -30701,7 +30937,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18990] = 3, + [19090] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1177), 1, @@ -30748,7 +30984,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19040] = 3, + [19140] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1181), 1, @@ -30795,7 +31031,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19090] = 3, + [19190] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1185), 1, @@ -30842,7 +31078,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19140] = 3, + [19240] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1189), 1, @@ -30889,7 +31125,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19190] = 3, + [19290] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1193), 1, @@ -30936,7 +31172,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19240] = 3, + [19340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1193), 1, + sym_identifier, + ACTIONS(1191), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19390] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1197), 1, @@ -30983,7 +31266,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19290] = 3, + [19440] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1201), 1, @@ -31030,7 +31313,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19340] = 3, + [19490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1189), 1, + sym_identifier, + ACTIONS(1187), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19540] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1205), 1, @@ -31077,7 +31407,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19390] = 3, + [19590] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1209), 1, @@ -31124,7 +31454,117 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19440] = 3, + [19640] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1081), 1, + sym_identifier, + ACTIONS(1079), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19690] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(1652), 1, + sym_value_sequence, + STATE(1881), 1, + sym__simple_expression, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [19772] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1213), 1, @@ -31171,7 +31611,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19490] = 3, + [19822] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1217), 1, @@ -31218,7 +31658,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19540] = 3, + [19872] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1221), 1, @@ -31265,7 +31705,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19590] = 3, + [19922] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1225), 1, @@ -31312,54 +31752,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19640] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(987), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [19690] = 3, + [19972] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1229), 1, @@ -31406,7 +31799,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19740] = 3, + [20022] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1233), 1, @@ -31453,7 +31846,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19790] = 3, + [20072] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1237), 1, @@ -31500,7 +31893,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19840] = 3, + [20122] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1241), 1, @@ -31547,7 +31940,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19890] = 3, + [20172] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1245), 1, @@ -31594,54 +31987,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1233), 1, - sym_identifier, - ACTIONS(1231), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [19990] = 3, + [20222] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1249), 1, @@ -31688,7 +32034,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20040] = 3, + [20272] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1253), 1, @@ -31735,7 +32081,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20090] = 3, + [20322] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1257), 1, @@ -31782,7 +32128,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20140] = 3, + [20372] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1261), 1, @@ -31829,7 +32175,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20190] = 3, + [20422] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1265), 1, @@ -31876,7 +32222,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20240] = 3, + [20472] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1269), 1, @@ -31923,7 +32269,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20290] = 3, + [20522] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1273), 1, @@ -31970,7 +32316,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20340] = 3, + [20572] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1277), 1, @@ -32017,7 +32363,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20390] = 3, + [20622] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1281), 1, @@ -32064,7 +32410,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20440] = 3, + [20672] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1285), 1, @@ -32111,7 +32457,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20490] = 3, + [20722] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1289), 1, @@ -32158,7 +32504,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20540] = 3, + [20772] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, @@ -32205,7 +32551,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20590] = 3, + [20822] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1297), 1, @@ -32252,7 +32598,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20640] = 3, + [20872] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1301), 1, @@ -32299,7 +32645,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20690] = 3, + [20922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1293), 1, + sym_identifier, + ACTIONS(1291), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20972] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1305), 1, @@ -32346,7 +32739,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20740] = 3, + [21022] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1309), 1, @@ -32393,7 +32786,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20790] = 3, + [21072] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1313), 1, @@ -32440,7 +32833,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20840] = 3, + [21122] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1317), 1, @@ -32487,54 +32880,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20890] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1305), 1, - sym_identifier, - ACTIONS(1303), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [20940] = 3, + [21172] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1321), 1, @@ -32581,7 +32927,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20990] = 3, + [21222] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1325), 1, @@ -32628,7 +32974,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21040] = 3, + [21272] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1329), 1, @@ -32675,70 +33021,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21090] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(1650), 1, - sym_value_sequence, - STATE(1879), 1, - sym__simple_expression, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [21172] = 3, + [21322] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1333), 1, @@ -32785,7 +33068,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21222] = 3, + [21372] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1337), 1, @@ -32832,7 +33115,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21272] = 3, + [21422] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1341), 1, @@ -32879,7 +33162,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21322] = 3, + [21472] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1345), 1, @@ -32926,7 +33209,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21372] = 3, + [21522] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1349), 1, @@ -32973,7 +33256,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21422] = 3, + [21572] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1353), 1, @@ -33020,7 +33303,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21472] = 3, + [21622] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1357), 1, @@ -33067,7 +33350,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21522] = 3, + [21672] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1361), 1, @@ -33114,7 +33397,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21572] = 3, + [21722] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1365), 1, @@ -33161,7 +33444,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21622] = 3, + [21772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1321), 1, + sym_identifier, + ACTIONS(1319), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21822] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1369), 1, @@ -33208,54 +33538,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21672] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1365), 1, - sym_identifier, - ACTIONS(1363), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21722] = 3, + [21872] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1373), 1, @@ -33302,7 +33585,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21772] = 3, + [21922] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1377), 1, @@ -33349,7 +33632,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21822] = 3, + [21972] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1381), 1, @@ -33396,7 +33679,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21872] = 3, + [22022] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1385), 1, @@ -33443,7 +33726,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21922] = 3, + [22072] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1377), 1, + sym_identifier, + ACTIONS(1375), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22122] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1389), 1, @@ -33490,7 +33820,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21972] = 3, + [22172] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1393), 1, @@ -33537,7 +33867,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22022] = 3, + [22222] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1397), 1, @@ -33584,7 +33914,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22072] = 3, + [22272] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1401), 1, @@ -33631,101 +33961,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22122] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1365), 1, - sym_identifier, - ACTIONS(1363), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22172] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1365), 1, - sym_identifier, - ACTIONS(1363), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22222] = 3, + [22322] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1405), 1, @@ -33772,7 +34008,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22272] = 3, + [22372] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1409), 1, @@ -33819,7 +34055,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22322] = 3, + [22422] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, @@ -33866,7 +34102,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22372] = 3, + [22472] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1417), 1, @@ -33913,7 +34149,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22422] = 3, + [22522] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1421), 1, @@ -33960,101 +34196,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22472] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 1, - sym_identifier, - ACTIONS(1423), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22522] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 1, - sym_identifier, - ACTIONS(1423), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, [22572] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + sym_identifier, + ACTIONS(1423), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22622] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1429), 1, @@ -34101,7 +34290,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22622] = 3, + [22672] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1433), 1, @@ -34148,7 +34337,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22672] = 3, + [22722] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1437), 1, @@ -34195,7 +34384,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22722] = 3, + [22772] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1441), 1, @@ -34242,7 +34431,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22772] = 3, + [22822] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1445), 1, @@ -34289,53 +34478,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22822] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1421), 1, - sym_identifier, - ACTIONS(1419), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, [22872] = 3, ACTIONS(3), 1, sym_comment, @@ -34383,7 +34525,133 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22922] = 3, + [22922] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(1405), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [23004] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(563), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [23086] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1453), 1, @@ -34430,7 +34698,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22972] = 3, + [23136] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1457), 1, @@ -34477,7 +34745,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23022] = 3, + [23186] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1461), 1, @@ -34524,7 +34792,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23072] = 3, + [23236] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1465), 1, @@ -34571,7 +34839,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23122] = 3, + [23286] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1469), 1, @@ -34618,7 +34886,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23172] = 3, + [23336] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(1652), 1, + sym_value_sequence, + STATE(1744), 1, + sym__simple_expression, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [23418] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1473), 1, @@ -34665,7 +34996,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23222] = 3, + [23468] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1477), 1, @@ -34712,7 +35043,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23272] = 3, + [23518] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1481), 1, @@ -34759,148 +35090,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23322] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1481), 1, - sym_identifier, - ACTIONS(1479), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23372] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1461), 1, - sym_identifier, - ACTIONS(1459), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23422] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1441), 1, - sym_identifier, - ACTIONS(1439), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23472] = 3, + [23568] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1485), 1, @@ -34947,54 +35137,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23522] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1427), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23572] = 3, + [23618] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1489), 1, @@ -35041,7 +35184,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23622] = 3, + [23668] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1493), 1, @@ -35088,7 +35231,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23672] = 3, + [23718] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1497), 1, @@ -35135,7 +35278,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23722] = 3, + [23768] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1501), 1, @@ -35182,70 +35325,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23772] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(583), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [23854] = 3, + [23818] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1505), 1, @@ -35292,7 +35372,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23904] = 3, + [23868] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1509), 1, @@ -35339,7 +35419,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23954] = 3, + [23918] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1513), 1, @@ -35386,7 +35466,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24004] = 3, + [23968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1513), 1, + sym_identifier, + ACTIONS(1511), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [24018] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1517), 1, @@ -35433,7 +35560,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24054] = 3, + [24068] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1521), 1, @@ -35480,7 +35607,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24104] = 3, + [24118] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1525), 1, @@ -35527,7 +35654,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24154] = 3, + [24168] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1529), 1, @@ -35574,7 +35701,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24204] = 3, + [24218] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1533), 1, @@ -35621,7 +35748,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24254] = 3, + [24268] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1505), 1, + sym_identifier, + ACTIONS(1503), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [24318] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1537), 1, @@ -35668,133 +35842,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24304] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(1518), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [24386] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(561), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [24468] = 3, + [24368] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1541), 1, @@ -35841,7 +35889,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24518] = 3, + [24418] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1545), 1, @@ -35888,7 +35936,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24568] = 3, + [24468] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(1652), 1, + sym_value_sequence, + STATE(1917), 1, + sym__simple_expression, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [24550] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1549), 1, @@ -35935,7 +36046,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24618] = 3, + [24600] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1553), 1, @@ -35982,70 +36093,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24668] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(1414), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [24750] = 3, + [24650] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 1, @@ -36092,7 +36140,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24800] = 3, + [24700] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1561), 1, @@ -36139,7 +36187,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24850] = 3, + [24750] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1565), 1, @@ -36186,7 +36234,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24900] = 3, + [24800] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1569), 1, @@ -36233,7 +36281,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24950] = 3, + [24850] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1573), 1, @@ -36280,7 +36328,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25000] = 3, + [24900] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1577), 1, @@ -36327,7 +36375,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25050] = 3, + [24950] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1581), 1, @@ -36374,7 +36422,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25100] = 3, + [25000] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1585), 1, @@ -36421,7 +36469,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25150] = 3, + [25050] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(1652), 1, + sym_value_sequence, + STATE(1741), 1, + sym__simple_expression, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [25132] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1589), 1, @@ -36468,196 +36579,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25200] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(623), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [25282] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(620), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [25364] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(1375), 1, - sym__simple_expression, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [25446] = 3, + [25182] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1593), 1, @@ -36704,7 +36626,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25496] = 3, + [25232] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1597), 1, @@ -36751,7 +36673,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25546] = 3, + [25282] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1601), 1, @@ -36798,7 +36720,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25596] = 3, + [25332] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(1416), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [25414] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1605), 1, @@ -36845,7 +36830,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25646] = 3, + [25464] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1609), 1, @@ -36892,7 +36877,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25696] = 3, + [25514] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1613), 1, @@ -36939,7 +36924,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25746] = 3, + [25564] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1617), 1, @@ -36986,7 +36971,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25796] = 3, + [25614] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1621), 1, @@ -37033,7 +37018,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25846] = 3, + [25664] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1625), 1, @@ -37080,7 +37065,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25896] = 3, + [25714] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1629), 1, @@ -37127,7 +37112,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25946] = 3, + [25764] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1633), 1, @@ -37174,7 +37159,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25996] = 3, + [25814] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1637), 1, @@ -37221,7 +37206,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26046] = 3, + [25864] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1641), 1, @@ -37268,7 +37253,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26096] = 3, + [25914] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1645), 1, @@ -37315,7 +37300,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26146] = 3, + [25964] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1649), 1, @@ -37362,70 +37347,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26196] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(1650), 1, - sym_value_sequence, - STATE(1742), 1, - sym__simple_expression, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [26278] = 3, + [26014] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1653), 1, @@ -37472,54 +37394,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26328] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 1, - sym_identifier, - ACTIONS(1627), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26378] = 3, + [26064] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1657), 1, @@ -37566,70 +37441,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26428] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(500), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(1650), 1, - sym_value_sequence, - STATE(1772), 1, - sym__simple_expression, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [26510] = 3, + [26114] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1661), 1, @@ -37676,7 +37488,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26560] = 3, + [26164] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1665), 1, @@ -37723,12 +37535,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26610] = 3, + [26214] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1661), 1, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(225), 1, + anon_sym_PLUS, + ACTIONS(227), 1, + anon_sym_DASH, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, sym_identifier, - ACTIONS(1659), 41, + STATE(498), 1, + sym_unary_adding_operator, + STATE(509), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [26296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1669), 1, + sym_identifier, + ACTIONS(1667), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -37770,12 +37645,106 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26660] = 3, + [26346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1669), 1, + ACTIONS(1673), 1, sym_identifier, - ACTIONS(1667), 40, + ACTIONS(1671), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [26396] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1677), 1, + sym_identifier, + ACTIONS(1675), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [26446] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1681), 1, + sym_identifier, + ACTIONS(1679), 40, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -37816,16 +37785,292 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26709] = 7, + [26495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(913), 1, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(1683), 40, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [26544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1689), 1, + sym_identifier, + ACTIONS(1687), 40, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [26593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1693), 1, + sym_identifier, + ACTIONS(1691), 40, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [26642] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1697), 1, + sym_identifier, + ACTIONS(1695), 40, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [26691] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1701), 1, + sym_identifier, + ACTIONS(1699), 40, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [26740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1705), 1, + sym_identifier, + ACTIONS(1703), 40, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [26789] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(943), 1, anon_sym_DOT, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1671), 1, + ACTIONS(1707), 1, sym_tick, - STATE(259), 1, + STATE(262), 1, sym_actual_parameter_part, ACTIONS(977), 6, anon_sym_EQ, @@ -37866,301 +38111,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [26766] = 3, + [26846] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1675), 1, - sym_identifier, - ACTIONS(1673), 40, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26815] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1679), 1, - sym_identifier, - ACTIONS(1677), 40, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26864] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1683), 1, - sym_identifier, - ACTIONS(1681), 40, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26913] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1687), 1, - sym_identifier, - ACTIONS(1685), 40, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26962] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - sym_identifier, - ACTIONS(1689), 40, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [27011] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1695), 1, - sym_identifier, - ACTIONS(1693), 40, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [27060] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1704), 1, + ACTIONS(1716), 1, anon_sym_SLASH, STATE(485), 1, aux_sym_term_repeat1, STATE(507), 1, sym_multiplying_operator, - ACTIONS(1701), 3, + ACTIONS(1713), 3, anon_sym_STAR, anon_sym_mod, anon_sym_rem, - ACTIONS(1697), 4, + ACTIONS(1709), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, - ACTIONS(1699), 30, + ACTIONS(1711), 30, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38191,74 +38160,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27116] = 7, + [26902] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1713), 1, - anon_sym_SLASH, - STATE(487), 1, - aux_sym_term_repeat1, - STATE(507), 1, - sym_multiplying_operator, - ACTIONS(1711), 3, - anon_sym_STAR, - anon_sym_mod, - anon_sym_rem, - ACTIONS(1707), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - ACTIONS(1709), 30, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [27172] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1713), 1, + ACTIONS(1725), 1, anon_sym_SLASH, STATE(485), 1, aux_sym_term_repeat1, STATE(507), 1, sym_multiplying_operator, - ACTIONS(1711), 3, + ACTIONS(1723), 3, anon_sym_STAR, anon_sym_mod, anon_sym_rem, - ACTIONS(1715), 4, + ACTIONS(1719), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, - ACTIONS(1717), 30, + ACTIONS(1721), 30, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38289,26 +38209,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27228] = 4, + [26958] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1723), 1, - anon_sym_STAR_STAR, - ACTIONS(1719), 6, + ACTIONS(1725), 1, + anon_sym_SLASH, + STATE(486), 1, + aux_sym_term_repeat1, + STATE(507), 1, + sym_multiplying_operator, + ACTIONS(1723), 3, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + ACTIONS(1727), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1721), 32, + ACTIONS(1729), 30, 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, @@ -38334,17 +38258,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27277] = 3, + [27014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1725), 6, + ACTIONS(1731), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1727), 33, + ACTIONS(1733), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38378,17 +38302,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27324] = 3, + [27061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1729), 6, + ACTIONS(1735), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1731), 33, + ACTIONS(1737), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38422,17 +38346,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27371] = 3, + [27108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1733), 6, + ACTIONS(1739), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1735), 33, + ACTIONS(1741), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38466,17 +38390,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27418] = 3, + [27155] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 6, + ACTIONS(1747), 1, + anon_sym_STAR_STAR, + ACTIONS(1743), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1739), 33, + ACTIONS(1745), 32, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38505,100 +38431,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_PIPE, - anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27465] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1741), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1743), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [27512] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1745), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1747), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [27559] = 3, + [27204] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1749), 6, @@ -38642,17 +38479,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27606] = 3, + [27251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(907), 6, + ACTIONS(1753), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(909), 33, + ACTIONS(1755), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38686,22 +38523,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27653] = 3, + [27298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 5, + ACTIONS(947), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1755), 33, + ACTIONS(949), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_AMP, - anon_sym_STAR, anon_sym_mod, anon_sym_rem, anon_sym_COMMA, @@ -38725,18 +38562,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_PIPE, + anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27699] = 3, + [27345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1757), 5, + ACTIONS(1757), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, ACTIONS(1759), 33, anon_sym_SLASH_EQ, @@ -38744,7 +38583,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_AMP, - anon_sym_STAR, anon_sym_mod, anon_sym_rem, anon_sym_COMMA, @@ -38768,128 +38606,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_PIPE, + anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27745] = 15, + [27392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(516), 1, - sym_term, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [27815] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_relation_membership_token1, - ACTIONS(513), 1, - sym_identifier, - STATE(509), 1, - sym_term, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(486), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(488), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [27885] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1761), 5, + ACTIONS(1761), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, ACTIONS(1763), 33, anon_sym_SLASH_EQ, @@ -38897,7 +38627,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_AMP, - anon_sym_STAR, anon_sym_mod, anon_sym_rem, anon_sym_COMMA, @@ -38921,11 +38650,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_PIPE, + anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27931] = 22, + [27439] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(1765), 1, @@ -38962,14 +38692,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_array_type_definition_token1, ACTIONS(1799), 1, aux_sym_interface_type_definition_token2, - STATE(1209), 1, + STATE(1329), 1, sym_null_exclusion, - STATE(1441), 1, + STATE(1358), 1, sym_record_definition, ACTIONS(1787), 2, aux_sym_access_to_subprogram_definition_token1, aux_sym_interface_type_definition_token1, - STATE(1208), 17, + STATE(1328), 17, sym__access_type_definition, sym_access_to_subprogram_definition, sym_access_to_object_definition, @@ -38987,7 +38717,62 @@ static const uint16_t ts_small_parse_table[] = { sym_derived_type_definition, sym_interface_type_definition, sym_record_type_definition, - [28015] = 3, + [27523] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_term, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [27593] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1801), 5, @@ -39030,31 +38815,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [28061] = 11, + [27639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 1, - anon_sym_LPAREN, - ACTIONS(927), 1, - aux_sym_attribute_designator_token2, - ACTIONS(929), 1, - aux_sym_attribute_designator_token3, - ACTIONS(933), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1805), 1, + ACTIONS(1805), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1807), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, - ACTIONS(1809), 1, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, anon_sym_PIPE, - STATE(1181), 1, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [27685] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(923), 1, + anon_sym_LPAREN, + ACTIONS(929), 1, + aux_sym_attribute_designator_token2, + ACTIONS(931), 1, + aux_sym_attribute_designator_token3, + ACTIONS(935), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1809), 1, + anon_sym_EQ_GT, + ACTIONS(1813), 1, + anon_sym_PIPE, + STATE(1239), 1, aux_sym_component_choice_list_repeat1, - STATE(653), 6, + STATE(656), 6, sym__constraint, sym__scalar_constraint, sym_range_constraint, sym_index_constraint, sym_digits_constraint, sym_delta_constraint, - ACTIONS(917), 7, + ACTIONS(919), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -39062,7 +38890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(919), 18, + ACTIONS(921), 18, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -39081,7 +38909,199 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [28123] = 20, + [27747] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1819), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [27793] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_numeric_literal, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(516), 1, + sym_term, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(487), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [27863] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1821), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1823), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [27909] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(923), 1, + anon_sym_LPAREN, + ACTIONS(929), 1, + aux_sym_attribute_designator_token2, + ACTIONS(931), 1, + aux_sym_attribute_designator_token3, + ACTIONS(935), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1825), 1, + anon_sym_EQ_GT, + ACTIONS(1827), 1, + anon_sym_PIPE, + STATE(1239), 1, + aux_sym_component_choice_list_repeat1, + ACTIONS(926), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(656), 6, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(919), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(921), 15, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + aux_sym_chunk_specification_token1, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + [27972] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(1765), 1, @@ -39106,23 +39126,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_array_type_definition_token1, ACTIONS(1799), 1, aux_sym_interface_type_definition_token2, - ACTIONS(1813), 1, + ACTIONS(1829), 1, aux_sym_with_clause_token1, - ACTIONS(1815), 1, + ACTIONS(1831), 1, aux_sym_allocator_token1, - ACTIONS(1817), 1, + ACTIONS(1833), 1, aux_sym_private_type_declaration_token1, - ACTIONS(1819), 1, + ACTIONS(1835), 1, aux_sym_private_type_declaration_token2, - STATE(1209), 1, + STATE(1329), 1, sym_null_exclusion, - STATE(1441), 1, + STATE(1358), 1, sym_record_definition, ACTIONS(1787), 3, aux_sym_access_to_subprogram_definition_token1, aux_sym_private_extension_declaration_token1, aux_sym_interface_type_definition_token1, - STATE(1225), 17, + STATE(1267), 17, sym__access_type_definition, sym_access_to_subprogram_definition, sym_access_to_object_definition, @@ -39140,88 +39160,37 @@ static const uint16_t ts_small_parse_table[] = { sym_derived_type_definition, sym_interface_type_definition, sym_record_type_definition, - [28202] = 12, + [28051] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 1, - anon_sym_LPAREN, - ACTIONS(927), 1, - aux_sym_attribute_designator_token2, - ACTIONS(929), 1, - aux_sym_attribute_designator_token3, - ACTIONS(933), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1821), 1, - anon_sym_EQ_GT, - ACTIONS(1823), 1, - anon_sym_PIPE, - STATE(1181), 1, - aux_sym_component_choice_list_repeat1, - ACTIONS(924), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(653), 6, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(917), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(919), 15, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - aux_sym_chunk_specification_token1, - anon_sym_DOT_DOT, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [28265] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, + ACTIONS(223), 1, sym_numeric_literal, - ACTIONS(227), 1, - anon_sym_LPAREN, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(241), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(429), 1, + ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(513), 1, + ACTIONS(523), 1, sym_identifier, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(511), 3, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(503), 4, + STATE(502), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -39229,7 +39198,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(488), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -39244,102 +39213,12 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [28332] = 7, + [28118] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1831), 1, + ACTIONS(1843), 1, anon_sym_DASH, - STATE(499), 1, - sym_binary_adding_operator, - STATE(510), 1, - aux_sym__simple_expression_repeat1, - ACTIONS(1829), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1825), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1827), 28, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [28384] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1831), 1, - anon_sym_DASH, - STATE(499), 1, - sym_binary_adding_operator, - STATE(508), 1, - aux_sym__simple_expression_repeat1, - ACTIONS(1829), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1833), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1835), 28, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [28436] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1844), 1, - anon_sym_DASH, - STATE(499), 1, + STATE(503), 1, sym_binary_adding_operator, STATE(510), 1, aux_sym__simple_expression_repeat1, @@ -39379,23 +39258,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [28488] = 7, + [28170] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1831), 1, + ACTIONS(1843), 1, anon_sym_DASH, - STATE(499), 1, + STATE(503), 1, + sym_binary_adding_operator, + STATE(511), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(1841), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1845), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1847), 28, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [28222] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1843), 1, + anon_sym_DASH, + STATE(503), 1, sym_binary_adding_operator, STATE(512), 1, aux_sym__simple_expression_repeat1, - ACTIONS(1829), 2, + ACTIONS(1841), 2, anon_sym_PLUS, anon_sym_AMP, - ACTIONS(1847), 3, + ACTIONS(1849), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1849), 28, + ACTIONS(1851), 28, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -39424,23 +39348,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [28540] = 7, + [28274] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1831), 1, + ACTIONS(1843), 1, anon_sym_DASH, - STATE(499), 1, + STATE(503), 1, sym_binary_adding_operator, - STATE(510), 1, + STATE(512), 1, aux_sym__simple_expression_repeat1, - ACTIONS(1829), 2, + ACTIONS(1841), 2, anon_sym_PLUS, anon_sym_AMP, - ACTIONS(1833), 3, + ACTIONS(1837), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1835), 28, + ACTIONS(1839), 28, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -39469,153 +39393,198 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [28592] = 22, + [28326] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, - aux_sym_attribute_designator_token1, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - ACTIONS(1797), 1, - aux_sym_array_type_definition_token1, - ACTIONS(1799), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(1851), 1, - anon_sym_LPAREN, - ACTIONS(1853), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1855), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1857), 1, - aux_sym_attribute_designator_token4, - ACTIONS(1859), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1861), 1, - aux_sym_with_clause_token1, - ACTIONS(1863), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1865), 1, - aux_sym_allocator_token1, - ACTIONS(1867), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(1869), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(1871), 1, - aux_sym_private_extension_declaration_token1, - STATE(1154), 1, - sym_array_type_definition, - STATE(1156), 1, - sym_interface_type_definition, - STATE(1209), 1, - sym_null_exclusion, - ACTIONS(1787), 2, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_interface_type_definition_token1, - STATE(1152), 3, - sym__access_type_definition, - sym_access_to_subprogram_definition, - sym_access_to_object_definition, - STATE(1063), 12, - sym__formal_type_definition, - sym_formal_private_type_definition, - sym_formal_derived_type_definition, - sym_formal_discrete_type_definition, - sym_formal_signed_integer_type_definition, - sym_formal_modular_type_definition, - sym_formal_floating_point_definition, - sym_formal_ordinary_fixed_point_definition, - sym_formal_decimal_fixed_point_definition, - sym_formal_array_type_definition, - sym_formal_access_type_definition, - sym_formal_interface_type_definition, - [28673] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - aux_sym_attribute_designator_token1, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - ACTIONS(1797), 1, - aux_sym_array_type_definition_token1, - ACTIONS(1799), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(1851), 1, - anon_sym_LPAREN, - ACTIONS(1853), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1855), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1857), 1, - aux_sym_attribute_designator_token4, - ACTIONS(1859), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1861), 1, - aux_sym_with_clause_token1, - ACTIONS(1863), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1865), 1, - aux_sym_allocator_token1, - ACTIONS(1867), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(1871), 1, - aux_sym_private_extension_declaration_token1, - ACTIONS(1873), 1, - aux_sym_private_type_declaration_token2, - STATE(1154), 1, - sym_array_type_definition, - STATE(1156), 1, - sym_interface_type_definition, - STATE(1209), 1, - sym_null_exclusion, - ACTIONS(1787), 2, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_interface_type_definition_token1, - STATE(1152), 3, - sym__access_type_definition, - sym_access_to_subprogram_definition, - sym_access_to_object_definition, - STATE(1131), 12, - sym__formal_type_definition, - sym_formal_private_type_definition, - sym_formal_derived_type_definition, - sym_formal_discrete_type_definition, - sym_formal_signed_integer_type_definition, - sym_formal_modular_type_definition, - sym_formal_floating_point_definition, - sym_formal_ordinary_fixed_point_definition, - sym_formal_decimal_fixed_point_definition, - sym_formal_array_type_definition, - sym_formal_access_type_definition, - sym_formal_interface_type_definition, - [28754] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(921), 1, - anon_sym_LPAREN, - ACTIONS(927), 1, - aux_sym_attribute_designator_token2, - ACTIONS(929), 1, - aux_sym_attribute_designator_token3, - ACTIONS(933), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(924), 2, + ACTIONS(1860), 1, + anon_sym_DASH, + STATE(503), 1, + sym_binary_adding_operator, + STATE(512), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(1857), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1853), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1855), 28, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(917), 6, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [28378] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1767), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + ACTIONS(1797), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1799), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(1863), 1, + anon_sym_LPAREN, + ACTIONS(1865), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1867), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1869), 1, + aux_sym_attribute_designator_token4, + ACTIONS(1871), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1873), 1, + aux_sym_with_clause_token1, + ACTIONS(1875), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1877), 1, + aux_sym_allocator_token1, + ACTIONS(1879), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(1881), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(1883), 1, + aux_sym_private_extension_declaration_token1, + STATE(1186), 1, + sym_interface_type_definition, + STATE(1207), 1, + sym_array_type_definition, + STATE(1329), 1, + sym_null_exclusion, + ACTIONS(1787), 2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_interface_type_definition_token1, + STATE(1201), 3, + sym__access_type_definition, + sym_access_to_subprogram_definition, + sym_access_to_object_definition, + STATE(1079), 12, + sym__formal_type_definition, + sym_formal_private_type_definition, + sym_formal_derived_type_definition, + sym_formal_discrete_type_definition, + sym_formal_signed_integer_type_definition, + sym_formal_modular_type_definition, + sym_formal_floating_point_definition, + sym_formal_ordinary_fixed_point_definition, + sym_formal_decimal_fixed_point_definition, + sym_formal_array_type_definition, + sym_formal_access_type_definition, + sym_formal_interface_type_definition, + [28459] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1767), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + ACTIONS(1797), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1799), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(1863), 1, + anon_sym_LPAREN, + ACTIONS(1865), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1867), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1869), 1, + aux_sym_attribute_designator_token4, + ACTIONS(1871), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1873), 1, + aux_sym_with_clause_token1, + ACTIONS(1875), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1877), 1, + aux_sym_allocator_token1, + ACTIONS(1879), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(1883), 1, + aux_sym_private_extension_declaration_token1, + ACTIONS(1885), 1, + aux_sym_private_type_declaration_token2, + STATE(1186), 1, + sym_interface_type_definition, + STATE(1207), 1, + sym_array_type_definition, + STATE(1329), 1, + sym_null_exclusion, + ACTIONS(1787), 2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_interface_type_definition_token1, + STATE(1201), 3, + sym__access_type_definition, + sym_access_to_subprogram_definition, + sym_access_to_object_definition, + STATE(1114), 12, + sym__formal_type_definition, + sym_formal_private_type_definition, + sym_formal_derived_type_definition, + sym_formal_discrete_type_definition, + sym_formal_signed_integer_type_definition, + sym_formal_modular_type_definition, + sym_formal_floating_point_definition, + sym_formal_ordinary_fixed_point_definition, + sym_formal_decimal_fixed_point_definition, + sym_formal_array_type_definition, + sym_formal_access_type_definition, + sym_formal_interface_type_definition, + [28540] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(923), 1, + anon_sym_LPAREN, + ACTIONS(929), 1, + aux_sym_attribute_designator_token2, + ACTIONS(931), 1, + aux_sym_attribute_designator_token3, + ACTIONS(935), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(926), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(919), 6, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - STATE(653), 6, + STATE(656), 6, sym__constraint, sym__scalar_constraint, sym_range_constraint, sym_index_constraint, sym_digits_constraint, sym_delta_constraint, - ACTIONS(919), 16, + ACTIONS(921), 16, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_LT_EQ, @@ -39632,15 +39601,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [28808] = 3, + [28594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1837), 4, + ACTIONS(1853), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, - ACTIONS(1839), 30, + ACTIONS(1855), 30, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -39671,17 +39640,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [28850] = 5, + [28636] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 1, + ACTIONS(1887), 1, sym_identifier, - ACTIONS(1879), 1, + ACTIONS(1891), 1, anon_sym_LT_LT, STATE(517), 2, sym_label, aux_sym__sequence_of_statements_repeat2, - ACTIONS(1877), 29, + ACTIONS(1889), 29, sym_string_literal, sym_character_literal, sym_target_name, @@ -39711,28 +39680,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_delay_until_statement_token1, aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, - [28895] = 11, + [28681] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, - anon_sym_LPAREN, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(513), 1, + ACTIONS(523), 1, sym_identifier, - ACTIONS(1882), 1, + ACTIONS(1894), 1, sym_numeric_literal, - STATE(1650), 1, + ACTIONS(1896), 1, + aux_sym_primary_null_token1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(511), 3, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -39740,7 +39709,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(498), 14, + STATE(499), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -39755,12 +39724,100 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [28950] = 3, + [28736] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1884), 1, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(523), 1, sym_identifier, - ACTIONS(1886), 30, + ACTIONS(1894), 1, + sym_numeric_literal, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(499), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28791] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, + anon_sym_LBRACK, + ACTIONS(245), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(523), 1, + sym_identifier, + ACTIONS(1898), 1, + sym_numeric_literal, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(276), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(500), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28846] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1900), 1, + sym_identifier, + ACTIONS(1902), 30, sym_string_literal, sym_character_literal, sym_target_name, @@ -39791,28 +39848,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_delay_until_statement_token1, aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, - [28989] = 11, + [28885] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, - anon_sym_LPAREN, ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(243), 1, + ACTIONS(245), 1, aux_sym_allocator_token1, - ACTIONS(421), 1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(513), 1, + ACTIONS(523), 1, sym_identifier, - ACTIONS(1888), 1, + ACTIONS(1904), 1, sym_numeric_literal, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(511), 3, + ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(279), 7, + STATE(276), 7, sym__name, sym_selected_component, sym_slice, @@ -39820,7 +39877,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(501), 14, + STATE(504), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -39835,110 +39892,22 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [29044] = 11, + [28940] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(421), 1, - aux_sym_primary_null_token1, - ACTIONS(513), 1, - sym_identifier, - ACTIONS(1890), 1, - sym_numeric_literal, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(497), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [29099] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(513), 1, - sym_identifier, - ACTIONS(1890), 1, - sym_numeric_literal, - ACTIONS(1892), 1, - aux_sym_primary_null_token1, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(279), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(497), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [29154] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1821), 1, + ACTIONS(1825), 1, anon_sym_EQ_GT, - ACTIONS(1823), 1, + ACTIONS(1827), 1, anon_sym_PIPE, - ACTIONS(1894), 1, + ACTIONS(1906), 1, anon_sym_COMMA, - ACTIONS(1897), 1, + ACTIONS(1909), 1, anon_sym_COLON, - STATE(1181), 1, - aux_sym_component_choice_list_repeat1, - STATE(1319), 1, + STATE(1160), 1, aux_sym__defining_identifier_list_repeat1, - ACTIONS(917), 7, + STATE(1239), 1, + aux_sym_component_choice_list_repeat1, + ACTIONS(919), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -39946,7 +39915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(919), 17, + ACTIONS(921), 17, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -39964,53 +39933,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [29204] = 9, + [28990] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 1, - anon_sym_LPAREN, - ACTIONS(927), 1, - aux_sym_attribute_designator_token2, - ACTIONS(929), 1, - aux_sym_attribute_designator_token3, - ACTIONS(933), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(917), 3, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_DOT, - STATE(653), 6, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(919), 8, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - ACTIONS(931), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [29254] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1899), 1, + ACTIONS(1911), 1, sym_identifier, - ACTIONS(1901), 4, + ACTIONS(1913), 4, sym_string_literal, sym_character_literal, sym_target_name, @@ -40042,74 +39970,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_PIPE, - [29296] = 19, + [29032] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(1903), 1, - sym_identifier, - ACTIONS(1905), 1, - aux_sym_iterator_filter_token1, - ACTIONS(1907), 1, - aux_sym_terminate_alternative_token1, - STATE(28), 1, - sym_procedure_call_statement, - STATE(29), 1, - sym_accept_statement, - STATE(812), 1, - sym_guard, - STATE(1079), 1, - sym_select_alternative, - STATE(1451), 1, - sym_entry_call_alternative, - STATE(1650), 1, - sym_value_sequence, - STATE(1709), 1, - sym_triggering_alternative, - STATE(1105), 2, - sym__name, - sym_function_call, - ACTIONS(9), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(26), 3, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - STATE(1312), 3, - sym_delay_alternative, - sym_accept_alternative, - sym_terminate_alternative, - STATE(977), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [29365] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1915), 1, + ACTIONS(923), 1, + anon_sym_LPAREN, + ACTIONS(929), 1, + aux_sym_attribute_designator_token2, + ACTIONS(931), 1, + aux_sym_attribute_designator_token3, + ACTIONS(935), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(919), 3, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_DOT, + STATE(656), 6, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(921), 8, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + ACTIONS(933), 9, + anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_chunk_specification_token1, - ACTIONS(1917), 1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [29082] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1921), 1, + aux_sym_chunk_specification_token1, + ACTIONS(1923), 1, aux_sym_relation_membership_token1, - STATE(303), 1, + STATE(304), 1, sym_relational_operator, - ACTIONS(1909), 3, + ACTIONS(1915), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1911), 3, + ACTIONS(1917), 3, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1913), 20, + ACTIONS(1919), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -40130,16 +40049,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [29410] = 6, + [29127] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1821), 1, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(1925), 1, + sym_identifier, + ACTIONS(1927), 1, + aux_sym_iterator_filter_token1, + ACTIONS(1929), 1, + aux_sym_terminate_alternative_token1, + STATE(28), 1, + sym_procedure_call_statement, + STATE(29), 1, + sym_accept_statement, + STATE(821), 1, + sym_guard, + STATE(1088), 1, + sym_select_alternative, + STATE(1413), 1, + sym_entry_call_alternative, + STATE(1652), 1, + sym_value_sequence, + STATE(1727), 1, + sym_triggering_alternative, + STATE(1102), 2, + sym__name, + sym_function_call, + ACTIONS(9), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(26), 3, + sym__delay_statement, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(1157), 3, + sym_delay_alternative, + sym_accept_alternative, + sym_terminate_alternative, + STATE(1042), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [29196] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1825), 1, anon_sym_EQ_GT, - ACTIONS(1823), 1, + ACTIONS(1827), 1, anon_sym_PIPE, - STATE(1181), 1, + STATE(1239), 1, aux_sym_component_choice_list_repeat1, - ACTIONS(917), 7, + ACTIONS(919), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -40147,7 +40116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(919), 18, + ACTIONS(921), 18, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -40166,28 +40135,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [29452] = 8, + [29238] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 1, + ACTIONS(923), 1, anon_sym_LPAREN, - ACTIONS(927), 1, - aux_sym_attribute_designator_token2, ACTIONS(929), 1, + aux_sym_attribute_designator_token2, + ACTIONS(931), 1, aux_sym_attribute_designator_token3, - ACTIONS(933), 1, + ACTIONS(935), 1, aux_sym_range_attribute_designator_token1, - ACTIONS(919), 2, + ACTIONS(921), 2, sym_tick, anon_sym_DOT, - STATE(652), 6, + STATE(657), 6, sym__constraint, sym__scalar_constraint, sym_range_constraint, sym_index_constraint, sym_digits_constraint, sym_delta_constraint, - ACTIONS(1919), 15, + ACTIONS(1931), 15, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_chunk_specification_token1, @@ -40203,7 +40172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [29497] = 14, + [29283] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40216,65 +40185,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1921), 1, + ACTIONS(1933), 1, sym_identifier, - ACTIONS(1923), 1, - aux_sym_package_specification_token3, - ACTIONS(1925), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(960), 1, - sym_overriding_indicator, - STATE(1765), 1, - sym__defining_identifier_list, - STATE(1137), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(531), 12, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym__protected_element_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat2, - [29553] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1929), 1, - sym_identifier, - ACTIONS(1932), 1, - aux_sym_iterated_element_association_token1, ACTIONS(1935), 1, aux_sym_package_specification_token3, ACTIONS(1937), 1, - aux_sym_relation_membership_token1, - ACTIONS(1940), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1943), 1, + ACTIONS(1939), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1946), 1, - aux_sym_entry_declaration_token1, - ACTIONS(1949), 1, - aux_sym_global_mode_token1, - ACTIONS(1952), 1, - aux_sym_pragma_g_token1, - STATE(960), 1, + STATE(963), 1, sym_overriding_indicator, - STATE(1765), 1, + STATE(1910), 1, sym__defining_identifier_list, - STATE(1137), 3, + STATE(1065), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(531), 12, + STATE(533), 12, sym_component_declaration, sym__aspect_clause, sym_at_clause, @@ -40287,106 +40214,22 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat2, - [29609] = 14, + [29339] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1921), 1, - sym_identifier, - ACTIONS(1925), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1955), 1, - aux_sym_package_specification_token3, - STATE(960), 1, - sym_overriding_indicator, - STATE(1765), 1, - sym__defining_identifier_list, - STATE(1137), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(531), 12, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym__protected_element_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat2, - [29665] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1921), 1, - sym_identifier, - ACTIONS(1923), 1, - aux_sym_package_specification_token3, - ACTIONS(1925), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(960), 1, - sym_overriding_indicator, - STATE(1765), 1, - sym__defining_identifier_list, - STATE(1137), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(532), 12, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym__protected_element_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat2, - [29721] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1897), 1, + ACTIONS(1909), 1, anon_sym_COLON, - ACTIONS(1957), 1, + ACTIONS(1941), 1, anon_sym_COMMA, - STATE(1319), 1, + STATE(1160), 1, aux_sym__defining_identifier_list_repeat1, - ACTIONS(917), 5, + ACTIONS(919), 5, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(919), 18, + ACTIONS(921), 18, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_LT_EQ, @@ -40405,7 +40248,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [29761] = 14, + [29379] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40418,23 +40261,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1921), 1, + ACTIONS(1933), 1, sym_identifier, - ACTIONS(1925), 1, + ACTIONS(1937), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, + ACTIONS(1939), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1959), 1, + ACTIONS(1943), 1, aux_sym_package_specification_token3, - STATE(960), 1, + STATE(963), 1, sym_overriding_indicator, - STATE(1765), 1, + STATE(1910), 1, sym__defining_identifier_list, - STATE(1137), 3, + STATE(1065), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(530), 12, + STATE(535), 12, sym_component_declaration, sym__aspect_clause, sym_at_clause, @@ -40447,10 +40290,52 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat2, - [29817] = 4, + [29435] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1961), 1, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1933), 1, + sym_identifier, + ACTIONS(1937), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1939), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1943), 1, + aux_sym_package_specification_token3, + STATE(963), 1, + sym_overriding_indicator, + STATE(1910), 1, + sym__defining_identifier_list, + STATE(1065), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(536), 12, + sym_component_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym__protected_element_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat2, + [29491] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1945), 1, aux_sym_record_component_association_list_token1, ACTIONS(1749), 6, anon_sym_EQ, @@ -40479,7 +40364,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, anon_sym_PIPE, anon_sym_STAR_STAR, - [29853] = 15, + [29527] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40492,108 +40377,150 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1925), 1, + ACTIONS(1933), 1, + sym_identifier, + ACTIONS(1937), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, + ACTIONS(1939), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1963), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1965), 1, + ACTIONS(1947), 1, aux_sym_package_specification_token3, - ACTIONS(1967), 1, - aux_sym_allocator_token1, - STATE(960), 1, + STATE(963), 1, sym_overriding_indicator, - STATE(1747), 1, - sym_protected_definition, - STATE(1137), 3, + STATE(1910), 1, + sym__defining_identifier_list, + STATE(1065), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(556), 10, + STATE(536), 12, + sym_component_declaration, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, sym__protected_operation_declaration, + sym__protected_element_declaration, sym_entry_declaration, sym_enumeration_representation_clause, sym_pragma_g, sym_record_representation_clause, sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [29910] = 15, + aux_sym_protected_definition_repeat2, + [29583] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(203), 1, + ACTIONS(1949), 1, + sym_identifier, + ACTIONS(1952), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1925), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1963), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1965), 1, + ACTIONS(1955), 1, aux_sym_package_specification_token3, - ACTIONS(1969), 1, - aux_sym_allocator_token1, - STATE(960), 1, - sym_overriding_indicator, - STATE(1612), 1, - sym_protected_definition, - STATE(1137), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(556), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [29967] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(921), 1, - anon_sym_LPAREN, - ACTIONS(927), 1, - aux_sym_attribute_designator_token2, - ACTIONS(929), 1, - aux_sym_attribute_designator_token3, - ACTIONS(931), 1, - anon_sym_RPAREN, - ACTIONS(933), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1897), 1, - anon_sym_COLON, ACTIONS(1957), 1, + aux_sym_relation_membership_token1, + ACTIONS(1960), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1963), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1966), 1, + aux_sym_entry_declaration_token1, + ACTIONS(1969), 1, + aux_sym_global_mode_token1, + ACTIONS(1972), 1, + aux_sym_pragma_g_token1, + STATE(963), 1, + sym_overriding_indicator, + STATE(1910), 1, + sym__defining_identifier_list, + STATE(1065), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(536), 12, + sym_component_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym__protected_element_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat2, + [29639] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1937), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1939), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1975), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1977), 1, + aux_sym_package_specification_token3, + ACTIONS(1979), 1, + aux_sym_allocator_token1, + STATE(963), 1, + sym_overriding_indicator, + STATE(1579), 1, + sym_protected_definition, + STATE(1065), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(561), 10, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat1, + [29696] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(923), 1, + anon_sym_LPAREN, + ACTIONS(929), 1, + aux_sym_attribute_designator_token2, + ACTIONS(931), 1, + aux_sym_attribute_designator_token3, + ACTIONS(933), 1, + anon_sym_RPAREN, + ACTIONS(935), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1909), 1, + anon_sym_COLON, + ACTIONS(1941), 1, anon_sym_COMMA, - STATE(1319), 1, + STATE(1160), 1, aux_sym__defining_identifier_list_repeat1, - ACTIONS(917), 3, + ACTIONS(919), 3, anon_sym_DASH, anon_sym_STAR, anon_sym_DOT, - STATE(653), 6, + STATE(656), 6, sym__constraint, sym__scalar_constraint, sym_range_constraint, sym_index_constraint, sym_digits_constraint, sym_delta_constraint, - ACTIONS(919), 8, + ACTIONS(921), 8, anon_sym_PLUS, anon_sym_AMP, anon_sym_SLASH, @@ -40602,7 +40529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_tick, anon_sym_DOT_DOT, anon_sym_STAR_STAR, - [30018] = 15, + [29747] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40615,92 +40542,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1925), 1, + ACTIONS(1937), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, + ACTIONS(1939), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1963), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1965), 1, - aux_sym_package_specification_token3, - ACTIONS(1971), 1, - aux_sym_allocator_token1, - STATE(960), 1, - sym_overriding_indicator, - STATE(1748), 1, - sym_protected_definition, - STATE(1137), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(556), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [30075] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1925), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1963), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1965), 1, - aux_sym_package_specification_token3, - ACTIONS(1973), 1, - aux_sym_allocator_token1, - STATE(960), 1, - sym_overriding_indicator, - STATE(1505), 1, - sym_protected_definition, - STATE(1137), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(556), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [30132] = 5, - ACTIONS(3), 1, - sym_comment, ACTIONS(1975), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1977), 1, + aux_sym_package_specification_token3, + ACTIONS(1981), 1, + aux_sym_allocator_token1, + STATE(963), 1, + sym_overriding_indicator, + STATE(1846), 1, + sym_protected_definition, + STATE(1065), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(561), 10, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat1, + [29804] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1983), 1, sym_tick, - ACTIONS(1978), 1, + ACTIONS(1986), 1, anon_sym_EQ_GT, - ACTIONS(917), 6, + ACTIONS(919), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(919), 17, + ACTIONS(921), 17, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -40718,7 +40603,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [30169] = 15, + [29841] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40731,231 +40616,285 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1925), 1, + ACTIONS(1937), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, + ACTIONS(1939), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1963), 1, + ACTIONS(1975), 1, aux_sym_compilation_unit_token1, - ACTIONS(1965), 1, + ACTIONS(1977), 1, aux_sym_package_specification_token3, - ACTIONS(1980), 1, - aux_sym_allocator_token1, - STATE(960), 1, - sym_overriding_indicator, - STATE(1878), 1, - sym_protected_definition, - STATE(1137), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(556), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [30226] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1925), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1963), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1965), 1, - aux_sym_package_specification_token3, - STATE(960), 1, - sym_overriding_indicator, - STATE(1500), 1, - sym_protected_definition, - STATE(1137), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(556), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [30280] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1925), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1963), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1965), 1, - aux_sym_package_specification_token3, - STATE(960), 1, - sym_overriding_indicator, - STATE(1654), 1, - sym_protected_definition, - STATE(1137), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(556), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [30334] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1982), 1, - anon_sym_COLON, - ACTIONS(917), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(919), 18, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - aux_sym_chunk_specification_token1, - anon_sym_SEMI, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [30368] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1925), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1963), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1965), 1, - aux_sym_package_specification_token3, - STATE(960), 1, - sym_overriding_indicator, - STATE(1851), 1, - sym_protected_definition, - STATE(1137), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(556), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [30422] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1925), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1984), 1, - aux_sym_package_specification_token3, - ACTIONS(1986), 1, - aux_sym_subunit_token1, ACTIONS(1988), 1, - aux_sym_entry_declaration_token1, - STATE(964), 1, + aux_sym_allocator_token1, + STATE(963), 1, sym_overriding_indicator, - STATE(1058), 1, - sym_procedure_specification, - STATE(1060), 1, - sym__subprogram_specification, - STATE(1078), 1, + STATE(1516), 1, + sym_protected_definition, + STATE(1065), 3, sym_function_specification, - STATE(555), 12, - sym_subprogram_body, + sym_procedure_specification, + sym__subprogram_specification, + STATE(561), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, - sym__protected_operation_item, - sym_entry_body, + sym__protected_operation_declaration, + sym_entry_declaration, sym_enumeration_representation_clause, - sym_null_procedure_declaration, + sym_pragma_g, sym_record_representation_clause, sym_subprogram_declaration, - sym_expression_function_declaration, - aux_sym_protected_body_repeat1, - [30476] = 3, + aux_sym_protected_definition_repeat1, + [29898] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1937), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1939), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1975), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1977), 1, + aux_sym_package_specification_token3, + ACTIONS(1990), 1, + aux_sym_allocator_token1, + STATE(963), 1, + sym_overriding_indicator, + STATE(1847), 1, + sym_protected_definition, + STATE(1065), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(561), 10, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat1, + [29955] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1937), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1939), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1975), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1977), 1, + aux_sym_package_specification_token3, ACTIONS(1992), 1, + aux_sym_allocator_token1, + STATE(963), 1, + sym_overriding_indicator, + STATE(1879), 1, + sym_protected_definition, + STATE(1065), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(561), 10, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat1, + [30012] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1937), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1939), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1975), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1977), 1, + aux_sym_package_specification_token3, + STATE(963), 1, + sym_overriding_indicator, + STATE(1781), 1, + sym_protected_definition, + STATE(1065), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(561), 10, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat1, + [30066] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1937), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1939), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1975), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1977), 1, + aux_sym_package_specification_token3, + STATE(963), 1, + sym_overriding_indicator, + STATE(1613), 1, + sym_protected_definition, + STATE(1065), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(561), 10, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat1, + [30120] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1937), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1939), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1975), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1977), 1, + aux_sym_package_specification_token3, + STATE(963), 1, + sym_overriding_indicator, + STATE(1655), 1, + sym_protected_definition, + STATE(1065), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(561), 10, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat1, + [30174] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1937), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1939), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1975), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1977), 1, + aux_sym_package_specification_token3, + STATE(963), 1, + sym_overriding_indicator, + STATE(1656), 1, + sym_protected_definition, + STATE(1065), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(561), 10, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat1, + [30228] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1996), 1, anon_sym_LPAREN, - ACTIONS(1990), 23, + ACTIONS(1994), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -40979,313 +40918,139 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [30508] = 7, + [30260] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1937), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1939), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1998), 1, + aux_sym_package_specification_token3, + ACTIONS(2000), 1, + aux_sym_subunit_token1, + ACTIONS(2002), 1, + aux_sym_entry_declaration_token1, + STATE(1012), 1, + sym_overriding_indicator, + STATE(1107), 1, + sym__subprogram_specification, + STATE(1115), 1, + sym_function_specification, + STATE(1142), 1, + sym_procedure_specification, + STATE(556), 12, + sym_subprogram_body, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_item, + sym_entry_body, + sym_enumeration_representation_clause, + sym_null_procedure_declaration, + sym_record_representation_clause, + sym_subprogram_declaration, + sym_expression_function_declaration, + aux_sym_protected_body_repeat1, + [30314] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2004), 1, + anon_sym_COLON, + ACTIONS(919), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(921), 18, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + aux_sym_chunk_specification_token1, + anon_sym_SEMI, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + [30348] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1937), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1939), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1975), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1977), 1, + aux_sym_package_specification_token3, + STATE(963), 1, + sym_overriding_indicator, + STATE(1853), 1, + sym_protected_definition, + STATE(1065), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(561), 10, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat1, + [30402] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(1998), 1, - aux_sym_with_clause_token2, - STATE(259), 1, - sym_actual_parameter_part, - ACTIONS(1996), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [30548] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1925), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1963), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1965), 1, - aux_sym_package_specification_token3, - STATE(960), 1, - sym_overriding_indicator, - STATE(1653), 1, - sym_protected_definition, - STATE(1137), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(556), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [30602] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1925), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1963), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1965), 1, - aux_sym_package_specification_token3, - STATE(960), 1, - sym_overriding_indicator, - STATE(1779), 1, - sym_protected_definition, - STATE(1137), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(556), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [30656] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2000), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [30685] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1925), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1988), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2002), 1, - aux_sym_package_specification_token3, - STATE(964), 1, - sym_overriding_indicator, - STATE(1058), 1, - sym_procedure_specification, - STATE(1060), 1, - sym__subprogram_specification, - STATE(1078), 1, - sym_function_specification, - STATE(560), 12, - sym_subprogram_body, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_item, - sym_entry_body, - sym_enumeration_representation_clause, - sym_null_procedure_declaration, - sym_record_representation_clause, - sym_subprogram_declaration, - sym_expression_function_declaration, - aux_sym_protected_body_repeat1, - [30736] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1925), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1988), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2004), 1, - aux_sym_package_specification_token3, - STATE(964), 1, - sym_overriding_indicator, - STATE(1058), 1, - sym_procedure_specification, - STATE(1060), 1, - sym__subprogram_specification, - STATE(1078), 1, - sym_function_specification, - STATE(560), 12, - sym_subprogram_body, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_item, - sym_entry_body, - sym_enumeration_representation_clause, - sym_null_procedure_declaration, - sym_record_representation_clause, - sym_subprogram_declaration, - sym_expression_function_declaration, - aux_sym_protected_body_repeat1, - [30787] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1925), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1959), 1, - aux_sym_package_specification_token3, ACTIONS(2006), 1, - aux_sym_compilation_unit_token1, - STATE(960), 1, - sym_overriding_indicator, - STATE(1137), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(557), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [30838] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2008), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2013), 1, - aux_sym_relation_membership_token1, - ACTIONS(2016), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2019), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2022), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2025), 1, - aux_sym_global_mode_token1, - ACTIONS(2028), 1, - aux_sym_pragma_g_token1, - STATE(960), 1, - sym_overriding_indicator, - ACTIONS(2011), 2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token3, - STATE(1137), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(557), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [30887] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 23, + anon_sym_DOT, + ACTIONS(2010), 1, + aux_sym_with_clause_token2, + STATE(262), 1, + sym_actual_parameter_part, + ACTIONS(2008), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - aux_sym_chunk_specification_token1, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, aux_sym_attribute_designator_token3, anon_sym_SEMI, aux_sym_package_specification_token2, - aux_sym_with_clause_token2, aux_sym_range_attribute_designator_token1, aux_sym_expression_token1, aux_sym_expression_token2, @@ -41293,11 +41058,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, anon_sym_PIPE, - anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [30916] = 13, + [30442] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -41306,23 +41070,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1925), 1, + ACTIONS(1937), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, + ACTIONS(1939), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1988), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2004), 1, + ACTIONS(1998), 1, aux_sym_package_specification_token3, - STATE(964), 1, + ACTIONS(2002), 1, + aux_sym_entry_declaration_token1, + STATE(1012), 1, sym_overriding_indicator, - STATE(1058), 1, - sym_procedure_specification, - STATE(1060), 1, + STATE(1107), 1, sym__subprogram_specification, - STATE(1078), 1, + STATE(1115), 1, sym_function_specification, - STATE(554), 12, + STATE(1142), 1, + sym_procedure_specification, + STATE(556), 12, sym_subprogram_body, sym__aspect_clause, sym_at_clause, @@ -41335,142 +41099,452 @@ static const uint16_t ts_small_parse_table[] = { sym_subprogram_declaration, sym_expression_function_declaration, aux_sym_protected_body_repeat1, - [30967] = 13, + [30493] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2033), 1, + ACTIONS(2012), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2036), 1, - aux_sym_package_specification_token3, - ACTIONS(2038), 1, + ACTIONS(2017), 1, aux_sym_relation_membership_token1, - ACTIONS(2041), 1, + ACTIONS(2020), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2044), 1, + ACTIONS(2023), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2047), 1, + ACTIONS(2026), 1, aux_sym_entry_declaration_token1, - ACTIONS(2050), 1, + ACTIONS(2029), 1, aux_sym_global_mode_token1, - STATE(964), 1, + ACTIONS(2032), 1, + aux_sym_pragma_g_token1, + STATE(963), 1, sym_overriding_indicator, - STATE(1058), 1, - sym_procedure_specification, - STATE(1060), 1, - sym__subprogram_specification, - STATE(1078), 1, + ACTIONS(2015), 2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token3, + STATE(1065), 3, sym_function_specification, - STATE(560), 12, - sym_subprogram_body, + sym_procedure_specification, + sym__subprogram_specification, + STATE(554), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, - sym__protected_operation_item, - sym_entry_body, + sym__protected_operation_declaration, + sym_entry_declaration, sym_enumeration_representation_clause, - sym_null_procedure_declaration, + sym_pragma_g, sym_record_representation_clause, sym_subprogram_declaration, - sym_expression_function_declaration, - aux_sym_protected_body_repeat1, - [31018] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [31047] = 16, + aux_sym_protected_definition_repeat1, + [30542] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(823), 1, + ACTIONS(835), 1, sym_identifier, ACTIONS(1781), 1, aux_sym_relation_membership_token1, ACTIONS(1797), 1, aux_sym_array_type_definition_token1, - ACTIONS(2055), 1, + ACTIONS(2035), 1, aux_sym_attribute_designator_token1, - ACTIONS(2057), 1, + ACTIONS(2037), 1, aux_sym_general_access_modifier_token1, - ACTIONS(2059), 1, + ACTIONS(2039), 1, aux_sym_component_definition_token1, - ACTIONS(2061), 1, + ACTIONS(2041), 1, aux_sym_exception_declaration_token1, - STATE(707), 1, + STATE(691), 1, sym_null_exclusion, - STATE(1041), 1, + STATE(987), 1, sym__subtype_indication, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - STATE(1042), 2, + STATE(1007), 2, sym_access_definition, sym_array_type_definition, - STATE(1064), 2, + STATE(1112), 2, sym__name, sym_function_call, - ACTIONS(525), 3, + ACTIONS(535), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(524), 5, + STATE(525), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [31104] = 12, + [30599] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1937), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1939), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2002), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2043), 1, + aux_sym_package_specification_token3, + STATE(1012), 1, + sym_overriding_indicator, + STATE(1107), 1, + sym__subprogram_specification, + STATE(1115), 1, + sym_function_specification, + STATE(1142), 1, + sym_procedure_specification, + STATE(559), 12, + sym_subprogram_body, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_item, + sym_entry_body, + sym_enumeration_representation_clause, + sym_null_procedure_declaration, + sym_record_representation_clause, + sym_subprogram_declaration, + sym_expression_function_declaration, + aux_sym_protected_body_repeat1, + [30650] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1937), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1939), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2002), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2043), 1, + aux_sym_package_specification_token3, + STATE(1012), 1, + sym_overriding_indicator, + STATE(1107), 1, + sym__subprogram_specification, + STATE(1115), 1, + sym_function_specification, + STATE(1142), 1, + sym_procedure_specification, + STATE(564), 12, + sym_subprogram_body, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_item, + sym_entry_body, + sym_enumeration_representation_clause, + sym_null_procedure_declaration, + sym_record_representation_clause, + sym_subprogram_declaration, + sym_expression_function_declaration, + aux_sym_protected_body_repeat1, + [30701] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2047), 1, + aux_sym_expression_token1, + ACTIONS(2049), 1, + aux_sym_expression_token3, + ACTIONS(2051), 1, + aux_sym_expression_token5, + STATE(595), 1, + aux_sym_expression_repeat2, + STATE(597), 1, + aux_sym_expression_repeat3, + STATE(602), 1, + aux_sym_expression_repeat1, + ACTIONS(2045), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [30742] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2053), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2056), 1, + aux_sym_package_specification_token3, + ACTIONS(2058), 1, + aux_sym_relation_membership_token1, + ACTIONS(2061), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2064), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2067), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2070), 1, + aux_sym_global_mode_token1, + STATE(1012), 1, + sym_overriding_indicator, + STATE(1107), 1, + sym__subprogram_specification, + STATE(1115), 1, + sym_function_specification, + STATE(1142), 1, + sym_procedure_specification, + STATE(559), 12, + sym_subprogram_body, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_item, + sym_entry_body, + sym_enumeration_representation_clause, + sym_null_procedure_declaration, + sym_record_representation_clause, + sym_subprogram_declaration, + sym_expression_function_declaration, + aux_sym_protected_body_repeat1, + [30793] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2073), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [30822] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1935), 1, + aux_sym_package_specification_token3, + ACTIONS(1937), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1939), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2075), 1, + aux_sym_compilation_unit_token1, + STATE(963), 1, + sym_overriding_indicator, + STATE(1065), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(554), 10, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat1, + [30873] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2077), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [30902] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2079), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [30931] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1937), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1939), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2002), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2081), 1, + aux_sym_package_specification_token3, + STATE(1012), 1, + sym_overriding_indicator, + STATE(1107), 1, + sym__subprogram_specification, + STATE(1115), 1, + sym_function_specification, + STATE(1142), 1, + sym_procedure_specification, + STATE(559), 12, + sym_subprogram_body, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_item, + sym_entry_body, + sym_enumeration_representation_clause, + sym_null_procedure_declaration, + sym_record_representation_clause, + sym_subprogram_declaration, + sym_expression_function_declaration, + aux_sym_protected_body_repeat1, + [30982] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(923), 1, + anon_sym_LPAREN, + ACTIONS(929), 1, + aux_sym_attribute_designator_token2, + ACTIONS(931), 1, + aux_sym_attribute_designator_token3, + ACTIONS(2083), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(933), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(919), 3, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_DOT, + STATE(656), 6, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(921), 8, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [31025] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(1781), 1, aux_sym_relation_membership_token1, - ACTIONS(2055), 1, + ACTIONS(2035), 1, aux_sym_attribute_designator_token1, - ACTIONS(2063), 1, + ACTIONS(2086), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2092), 1, aux_sym_exception_declaration_token1, - STATE(734), 1, + STATE(679), 1, sym_null_exclusion, - STATE(1650), 1, - sym_value_sequence, - STATE(1846), 1, + STATE(1526), 1, sym_access_definition, - ACTIONS(2065), 3, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2088), 3, sym_string_literal, sym_character_literal, sym_target_name, - ACTIONS(2067), 5, + ACTIONS(2090), 5, aux_sym_iterated_element_association_token1, aux_sym_subprogram_body_token1, aux_sym_declare_expression_token1, aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, - STATE(994), 7, + STATE(968), 7, sym__name, sym_selected_component, sym_slice, @@ -41478,273 +41552,201 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [31153] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1925), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1984), 1, - aux_sym_package_specification_token3, - ACTIONS(1988), 1, - aux_sym_entry_declaration_token1, - STATE(964), 1, - sym_overriding_indicator, - STATE(1058), 1, - sym_procedure_specification, - STATE(1060), 1, - sym__subprogram_specification, - STATE(1078), 1, - sym_function_specification, - STATE(555), 12, - sym_subprogram_body, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_item, - sym_entry_body, - sym_enumeration_representation_clause, - sym_null_procedure_declaration, - sym_record_representation_clause, - sym_subprogram_declaration, - sym_expression_function_declaration, - aux_sym_protected_body_repeat1, - [31204] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(921), 1, - anon_sym_LPAREN, - ACTIONS(927), 1, - aux_sym_attribute_designator_token2, - ACTIONS(929), 1, - aux_sym_attribute_designator_token3, - ACTIONS(2071), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(931), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(917), 3, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_DOT, - STATE(653), 6, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(919), 8, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - [31247] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2076), 1, - aux_sym_expression_token1, - ACTIONS(2078), 1, - aux_sym_expression_token3, - ACTIONS(2080), 1, - aux_sym_expression_token5, - STATE(595), 1, - aux_sym_expression_repeat1, - STATE(599), 1, - aux_sym_expression_repeat2, - STATE(603), 1, - aux_sym_expression_repeat3, - ACTIONS(2074), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [31288] = 15, + [31074] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(823), 1, + ACTIONS(835), 1, sym_identifier, ACTIONS(1781), 1, aux_sym_relation_membership_token1, - ACTIONS(2084), 1, + ACTIONS(2096), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2086), 1, + ACTIONS(2098), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2088), 1, + ACTIONS(2100), 1, aux_sym_access_to_subprogram_definition_token3, - STATE(646), 1, + STATE(637), 1, sym_general_access_modifier, - STATE(771), 1, + STATE(802), 1, sym_null_exclusion, - STATE(1333), 1, + STATE(1305), 1, sym__subtype_indication, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(2082), 2, + ACTIONS(2094), 2, aux_sym_use_clause_token1, aux_sym_general_access_modifier_token1, - STATE(1064), 2, + STATE(1112), 2, sym__name, sym_function_call, - ACTIONS(525), 3, + ACTIONS(535), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(524), 5, + STATE(525), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [31342] = 15, + [31128] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(823), 1, + ACTIONS(835), 1, sym_identifier, ACTIONS(1781), 1, aux_sym_relation_membership_token1, ACTIONS(1797), 1, aux_sym_array_type_definition_token1, - ACTIONS(2055), 1, + ACTIONS(2035), 1, aux_sym_attribute_designator_token1, - ACTIONS(2090), 1, + ACTIONS(2102), 1, anon_sym_COLON_EQ, - STATE(707), 1, + STATE(691), 1, sym_null_exclusion, - STATE(1018), 1, + STATE(1044), 1, sym__subtype_indication, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - STATE(1813), 1, + STATE(1774), 1, sym__assign_value, - STATE(1017), 2, + STATE(967), 2, sym_access_definition, sym_array_type_definition, - STATE(1064), 2, + STATE(1112), 2, sym__name, sym_function_call, - ACTIONS(525), 3, + ACTIONS(535), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(524), 5, + STATE(525), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [31396] = 15, + [31182] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(823), 1, + ACTIONS(835), 1, sym_identifier, ACTIONS(1781), 1, aux_sym_relation_membership_token1, ACTIONS(1797), 1, aux_sym_array_type_definition_token1, - ACTIONS(2055), 1, + ACTIONS(2035), 1, aux_sym_attribute_designator_token1, - ACTIONS(2059), 1, + ACTIONS(2039), 1, aux_sym_component_definition_token1, - ACTIONS(2092), 1, + ACTIONS(2104), 1, aux_sym_general_access_modifier_token1, - STATE(707), 1, + STATE(691), 1, sym_null_exclusion, - STATE(1041), 1, + STATE(987), 1, sym__subtype_indication, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - STATE(1042), 2, + STATE(1007), 2, sym_access_definition, sym_array_type_definition, - STATE(1064), 2, + STATE(1112), 2, sym__name, sym_function_call, - ACTIONS(525), 3, + ACTIONS(535), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(524), 5, + STATE(525), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [31450] = 14, + [31236] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2106), 1, + sym_identifier, + ACTIONS(2109), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(2114), 1, + aux_sym_with_clause_token2, + ACTIONS(2117), 1, + aux_sym_use_clause_token2, + ACTIONS(2120), 1, + aux_sym_pragma_g_token1, + STATE(1612), 1, + sym__defining_identifier_list, + STATE(860), 2, + sym_formal_concrete_subprogram_declaration, + sym_formal_abstract_subprogram_declaration, + ACTIONS(2112), 3, + aux_sym_package_specification_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + STATE(570), 10, + sym_use_clause, + sym__generic_formal_parameter_declaration, + sym_formal_object_declaration, + sym__formal_type_declaration, + sym_formal_complete_type_declaration, + sym_formal_incomplete_type_declaration, + sym_formal_subprogram_declaration, + sym_formal_package_declaration, + sym_pragma_g, + aux_sym_generic_formal_part_repeat1, + [31279] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(823), 1, + ACTIONS(511), 1, sym_identifier, ACTIONS(1781), 1, aux_sym_relation_membership_token1, - ACTIONS(1797), 1, - aux_sym_array_type_definition_token1, - ACTIONS(2055), 1, + ACTIONS(2035), 1, aux_sym_attribute_designator_token1, - ACTIONS(2094), 1, + ACTIONS(2123), 1, aux_sym_general_access_modifier_token1, - STATE(707), 1, + ACTIONS(2125), 1, + aux_sym_component_definition_token1, + STATE(691), 1, sym_null_exclusion, - STATE(1010), 1, + STATE(1288), 1, sym__subtype_indication, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - STATE(1017), 2, + STATE(1077), 2, sym_access_definition, - sym_array_type_definition, - STATE(1064), 2, + sym__return_subtype_indication, + STATE(1112), 2, sym__name, sym_function_call, - ACTIONS(525), 3, + ACTIONS(221), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(524), 5, + STATE(264), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [31501] = 4, + [31330] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2098), 1, + ACTIONS(2129), 1, anon_sym_PIPE, STATE(576), 1, aux_sym_membership_choice_list_repeat1, - ACTIONS(2096), 19, + ACTIONS(2127), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -41764,214 +41766,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [31532] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2100), 1, - sym_identifier, - ACTIONS(2103), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(2108), 1, - aux_sym_with_clause_token2, - ACTIONS(2111), 1, - aux_sym_use_clause_token2, - ACTIONS(2114), 1, - aux_sym_pragma_g_token1, - STATE(1649), 1, - sym__defining_identifier_list, - STATE(877), 2, - sym_formal_concrete_subprogram_declaration, - sym_formal_abstract_subprogram_declaration, - ACTIONS(2106), 3, - aux_sym_package_specification_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - STATE(572), 10, - sym_use_clause, - sym__generic_formal_parameter_declaration, - sym_formal_object_declaration, - sym__formal_type_declaration, - sym_formal_complete_type_declaration, - sym_formal_incomplete_type_declaration, - sym_formal_subprogram_declaration, - sym_formal_package_declaration, - sym_pragma_g, - aux_sym_generic_formal_part_repeat1, - [31575] = 10, + [31361] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(15), 1, aux_sym_iterated_element_association_token2, ACTIONS(57), 1, aux_sym_pragma_g_token1, - ACTIONS(1921), 1, - sym_identifier, - ACTIONS(2119), 1, - aux_sym_with_clause_token2, - ACTIONS(2121), 1, - aux_sym_use_clause_token2, - STATE(1649), 1, - sym__defining_identifier_list, - STATE(877), 2, - sym_formal_concrete_subprogram_declaration, - sym_formal_abstract_subprogram_declaration, - ACTIONS(2117), 3, - aux_sym_package_specification_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - STATE(572), 10, - sym_use_clause, - sym__generic_formal_parameter_declaration, - sym_formal_object_declaration, - sym__formal_type_declaration, - sym_formal_complete_type_declaration, - sym_formal_incomplete_type_declaration, - sym_formal_subprogram_declaration, - sym_formal_package_declaration, - sym_pragma_g, - aux_sym_generic_formal_part_repeat1, - [31618] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2125), 1, - anon_sym_DOT_DOT, - ACTIONS(2123), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [31647] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(231), 1, - aux_sym_chunk_specification_token1, - ACTIONS(253), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - ACTIONS(2055), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2127), 1, + ACTIONS(1933), 1, sym_identifier, ACTIONS(2131), 1, - aux_sym_component_definition_token1, - STATE(648), 1, - sym_non_empty_mode, - STATE(668), 1, - sym_null_exclusion, - STATE(927), 1, - sym_access_definition, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2129), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(820), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [31698] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2135), 1, - anon_sym_PIPE, - STATE(576), 1, - aux_sym_membership_choice_list_repeat1, - ACTIONS(2133), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [31729] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_PIPE, - STATE(571), 1, - aux_sym_membership_choice_list_repeat1, - ACTIONS(2138), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [31760] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(1921), 1, - sym_identifier, - ACTIONS(2119), 1, - aux_sym_with_clause_token2, - ACTIONS(2121), 1, - aux_sym_use_clause_token2, - ACTIONS(2140), 1, aux_sym_package_specification_token1, - ACTIONS(2143), 1, + ACTIONS(2134), 1, + aux_sym_with_clause_token2, + ACTIONS(2136), 1, + aux_sym_use_clause_token2, + ACTIONS(2138), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2146), 1, + ACTIONS(2141), 1, aux_sym_access_to_subprogram_definition_token3, - STATE(1649), 1, + STATE(1612), 1, sym__defining_identifier_list, - STATE(877), 2, + STATE(860), 2, sym_formal_concrete_subprogram_declaration, sym_formal_abstract_subprogram_declaration, - STATE(573), 10, + STATE(575), 10, sym_use_clause, sym__generic_formal_parameter_declaration, sym_formal_object_declaration, @@ -41982,150 +41801,12 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_package_declaration, sym_pragma_g, aux_sym_generic_formal_part_repeat1, - [31807] = 14, + [31408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(503), 1, - sym_identifier, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - ACTIONS(2055), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2149), 1, - aux_sym_general_access_modifier_token1, - ACTIONS(2151), 1, - aux_sym_component_definition_token1, - STATE(707), 1, - sym_null_exclusion, - STATE(1307), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1059), 2, - sym_access_definition, - sym__return_subtype_indication, - STATE(1064), 2, - sym__name, - sym_function_call, - ACTIONS(219), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(266), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [31858] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2153), 1, - sym_identifier, - ACTIONS(2155), 1, - anon_sym_LPAREN, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2161), 1, - aux_sym_range_attribute_designator_token1, - STATE(246), 1, - sym_attribute_designator, - STATE(553), 1, - sym_range_attribute_designator, - ACTIONS(2159), 4, - aux_sym_attribute_designator_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - aux_sym_attribute_designator_token4, - STATE(231), 10, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [31898] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(823), 1, - sym_identifier, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - ACTIONS(2055), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2163), 1, - aux_sym_component_definition_token1, - STATE(707), 1, - sym_null_exclusion, - STATE(1092), 1, - sym__subtype_indication, - STATE(1094), 1, - sym_access_definition, - STATE(1125), 1, - sym_component_definition, - STATE(1650), 1, - sym_value_sequence, - STATE(1064), 2, - sym__name, - sym_function_call, - ACTIONS(525), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(524), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [31948] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(823), 1, - sym_identifier, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - ACTIONS(2055), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2163), 1, - aux_sym_component_definition_token1, - STATE(707), 1, - sym_null_exclusion, - STATE(1051), 1, - sym_component_definition, - STATE(1092), 1, - sym__subtype_indication, - STATE(1094), 1, - sym_access_definition, - STATE(1650), 1, - sym_value_sequence, - STATE(1064), 2, - sym__name, - sym_function_call, - ACTIONS(525), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(524), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [31998] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2165), 20, + ACTIONS(2146), 1, + anon_sym_DOT_DOT, + ACTIONS(2144), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -42146,104 +41827,123 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32024] = 13, + [31437] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(503), 1, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(1933), 1, sym_identifier, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - ACTIONS(2055), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2167), 1, - aux_sym_general_access_modifier_token1, - STATE(707), 1, - sym_null_exclusion, - STATE(1307), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1064), 2, - sym__name, - sym_function_call, - STATE(1102), 2, - sym_access_definition, - sym__return_subtype_indication, - ACTIONS(219), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(266), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [32072] = 13, + ACTIONS(2134), 1, + aux_sym_with_clause_token2, + ACTIONS(2136), 1, + aux_sym_use_clause_token2, + STATE(1612), 1, + sym__defining_identifier_list, + STATE(860), 2, + sym_formal_concrete_subprogram_declaration, + sym_formal_abstract_subprogram_declaration, + ACTIONS(2148), 3, + aux_sym_package_specification_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + STATE(570), 10, + sym_use_clause, + sym__generic_formal_parameter_declaration, + sym_formal_object_declaration, + sym__formal_type_declaration, + sym_formal_complete_type_declaration, + sym_formal_incomplete_type_declaration, + sym_formal_subprogram_declaration, + sym_formal_package_declaration, + sym_pragma_g, + aux_sym_generic_formal_part_repeat1, + [31480] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2129), 1, + anon_sym_PIPE, + STATE(577), 1, + aux_sym_membership_choice_list_repeat1, + ACTIONS(2150), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [31511] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2154), 1, + anon_sym_PIPE, + STATE(577), 1, + aux_sym_membership_choice_list_repeat1, + ACTIONS(2152), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [31542] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(823), 1, - sym_identifier, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - ACTIONS(1797), 1, - aux_sym_array_type_definition_token1, - ACTIONS(2055), 1, - aux_sym_attribute_designator_token1, - STATE(707), 1, - sym_null_exclusion, - STATE(1018), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1017), 2, - sym_access_definition, - sym_array_type_definition, - STATE(1064), 2, - sym__name, - sym_function_call, - ACTIONS(525), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(524), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [32120] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(231), 1, + ACTIONS(233), 1, aux_sym_chunk_specification_token1, - ACTIONS(253), 1, + ACTIONS(255), 1, aux_sym_non_empty_mode_token1, ACTIONS(1781), 1, aux_sym_relation_membership_token1, - ACTIONS(2055), 1, + ACTIONS(2035), 1, aux_sym_attribute_designator_token1, - ACTIONS(2169), 1, + ACTIONS(2157), 1, sym_identifier, - STATE(621), 1, + ACTIONS(2161), 1, + aux_sym_component_definition_token1, + STATE(654), 1, sym_non_empty_mode, - STATE(701), 1, + STATE(702), 1, sym_null_exclusion, - STATE(1019), 1, + STATE(953), 1, sym_access_definition, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(2171), 3, + ACTIONS(2159), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(838), 7, + STATE(830), 7, sym__name, sym_selected_component, sym_slice, @@ -42251,114 +41951,281 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [32168] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2173), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32194] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2175), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32220] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2133), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32246] = 13, + [31593] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(823), 1, + ACTIONS(835), 1, sym_identifier, ACTIONS(1781), 1, aux_sym_relation_membership_token1, ACTIONS(1797), 1, aux_sym_array_type_definition_token1, - ACTIONS(2055), 1, + ACTIONS(2035), 1, aux_sym_attribute_designator_token1, - STATE(707), 1, + ACTIONS(2163), 1, + aux_sym_general_access_modifier_token1, + STATE(691), 1, sym_null_exclusion, - STATE(1029), 1, + STATE(1047), 1, sym__subtype_indication, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - STATE(1030), 2, + STATE(967), 2, sym_access_definition, sym_array_type_definition, - STATE(1064), 2, + STATE(1112), 2, sym__name, sym_function_call, - ACTIONS(525), 3, + ACTIONS(535), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(524), 5, + STATE(525), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [32294] = 2, + [31644] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(835), 1, + sym_identifier, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + ACTIONS(1797), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2035), 1, + aux_sym_attribute_designator_token1, + STATE(691), 1, + sym_null_exclusion, + STATE(1030), 1, + sym__subtype_indication, + STATE(1652), 1, + sym_value_sequence, + STATE(1031), 2, + sym_access_definition, + sym_array_type_definition, + STATE(1112), 2, + sym__name, + sym_function_call, + ACTIONS(535), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [31692] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(835), 1, + sym_identifier, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + ACTIONS(1797), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2035), 1, + aux_sym_attribute_designator_token1, + STATE(691), 1, + sym_null_exclusion, + STATE(1044), 1, + sym__subtype_indication, + STATE(1652), 1, + sym_value_sequence, + STATE(967), 2, + sym_access_definition, + sym_array_type_definition, + STATE(1112), 2, + sym__name, + sym_function_call, + ACTIONS(535), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [31740] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(835), 1, + sym_identifier, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + ACTIONS(2035), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2165), 1, + aux_sym_component_definition_token1, + STATE(691), 1, + sym_null_exclusion, + STATE(1090), 1, + sym__subtype_indication, + STATE(1091), 1, + sym_access_definition, + STATE(1104), 1, + sym_component_definition, + STATE(1652), 1, + sym_value_sequence, + STATE(1112), 2, + sym__name, + sym_function_call, + ACTIONS(535), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [31790] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2167), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [31816] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2169), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [31842] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2171), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [31868] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_chunk_specification_token1, + ACTIONS(255), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + ACTIONS(2035), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2173), 1, + sym_identifier, + STATE(618), 1, + sym_non_empty_mode, + STATE(720), 1, + sym_null_exclusion, + STATE(1051), 1, + sym_access_definition, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2175), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(843), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [31916] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2152), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [31942] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2177), 20, @@ -42382,203 +42249,297 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32320] = 14, + [31968] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2179), 1, + sym_identifier, + ACTIONS(2181), 1, + anon_sym_LPAREN, + ACTIONS(2183), 1, + anon_sym_LBRACK, + ACTIONS(2187), 1, + aux_sym_range_attribute_designator_token1, + STATE(246), 1, + sym_attribute_designator, + STATE(562), 1, + sym_range_attribute_designator, + ACTIONS(2185), 4, + aux_sym_attribute_designator_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + aux_sym_attribute_designator_token4, + STATE(245), 10, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [32008] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(823), 1, + ACTIONS(511), 1, sym_identifier, ACTIONS(1781), 1, aux_sym_relation_membership_token1, - ACTIONS(2055), 1, + ACTIONS(2035), 1, aux_sym_attribute_designator_token1, - ACTIONS(2163), 1, - aux_sym_component_definition_token1, - STATE(707), 1, + ACTIONS(2189), 1, + aux_sym_general_access_modifier_token1, + STATE(691), 1, sym_null_exclusion, - STATE(996), 1, - sym_component_definition, - STATE(1092), 1, + STATE(1288), 1, sym__subtype_indication, - STATE(1094), 1, - sym_access_definition, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - STATE(1064), 2, - sym__name, - sym_function_call, - ACTIONS(525), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(524), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [32370] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(823), 1, - sym_identifier, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - ACTIONS(2055), 1, - aux_sym_attribute_designator_token1, - STATE(707), 1, - sym_null_exclusion, - STATE(1413), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1064), 2, - sym__name, - sym_function_call, - STATE(1411), 2, - sym__loop_parameter_subtype_indication, - sym_access_definition, - ACTIONS(525), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(524), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [32415] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(503), 1, - sym_identifier, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - ACTIONS(2055), 1, - aux_sym_attribute_designator_token1, - STATE(707), 1, - sym_null_exclusion, - STATE(1307), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1053), 2, + STATE(1099), 2, sym_access_definition, sym__return_subtype_indication, - STATE(1064), 2, + STATE(1112), 2, sym__name, sym_function_call, - ACTIONS(219), 3, + ACTIONS(221), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(266), 5, + STATE(264), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [32460] = 4, + [32056] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, - aux_sym_expression_token1, - STATE(596), 1, - aux_sym_expression_repeat1, - ACTIONS(2179), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32489] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2183), 1, - aux_sym_expression_token1, - STATE(596), 1, - aux_sym_expression_repeat1, - ACTIONS(2181), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32518] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2188), 1, - aux_sym_expression_token3, - STATE(597), 1, - aux_sym_expression_repeat2, - ACTIONS(2186), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32547] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1915), 1, - aux_sym_chunk_specification_token1, - ACTIONS(1917), 1, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(835), 1, + sym_identifier, + ACTIONS(1781), 1, aux_sym_relation_membership_token1, - ACTIONS(2125), 1, + ACTIONS(2035), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2165), 1, + aux_sym_component_definition_token1, + STATE(691), 1, + sym_null_exclusion, + STATE(1023), 1, + sym_component_definition, + STATE(1090), 1, + sym__subtype_indication, + STATE(1091), 1, + sym_access_definition, + STATE(1652), 1, + sym_value_sequence, + STATE(1112), 2, + sym__name, + sym_function_call, + ACTIONS(535), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [32106] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(835), 1, + sym_identifier, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + ACTIONS(2035), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2165), 1, + aux_sym_component_definition_token1, + STATE(691), 1, + sym_null_exclusion, + STATE(1090), 1, + sym__subtype_indication, + STATE(1091), 1, + sym_access_definition, + STATE(1110), 1, + sym_component_definition, + STATE(1652), 1, + sym_value_sequence, + STATE(1112), 2, + sym__name, + sym_function_call, + ACTIONS(535), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [32156] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2193), 1, + aux_sym_expression_token3, + STATE(593), 1, + aux_sym_expression_repeat2, + ACTIONS(2191), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [32185] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(835), 1, + sym_identifier, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + ACTIONS(2035), 1, + aux_sym_attribute_designator_token1, + STATE(691), 1, + sym_null_exclusion, + STATE(1481), 1, + sym__subtype_indication, + STATE(1652), 1, + sym_value_sequence, + STATE(1112), 2, + sym__name, + sym_function_call, + STATE(1480), 2, + sym__loop_parameter_subtype_indication, + sym_access_definition, + ACTIONS(535), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [32230] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2049), 1, + aux_sym_expression_token3, + STATE(593), 1, + aux_sym_expression_repeat2, + ACTIONS(2196), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [32259] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2200), 1, + aux_sym_expression_token1, + STATE(596), 1, + aux_sym_expression_repeat1, + ACTIONS(2198), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [32288] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2051), 1, + aux_sym_expression_token5, + STATE(599), 1, + aux_sym_expression_repeat3, + ACTIONS(2196), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [32317] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1921), 1, + aux_sym_chunk_specification_token1, + ACTIONS(1923), 1, + aux_sym_relation_membership_token1, + ACTIONS(2146), 1, anon_sym_DOT_DOT, - STATE(303), 1, + STATE(304), 1, sym_relational_operator, - ACTIONS(1909), 3, + ACTIONS(1915), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1911), 3, + ACTIONS(1917), 3, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1913), 9, + ACTIONS(1919), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -42588,14 +42549,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token3, aux_sym_expression_token5, anon_sym_PIPE, - [32584] = 4, + [32354] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 1, - aux_sym_expression_token3, - STATE(597), 1, - aux_sym_expression_repeat2, - ACTIONS(2179), 17, + ACTIONS(2205), 1, + aux_sym_expression_token5, + STATE(599), 1, + aux_sym_expression_repeat3, + ACTIONS(2203), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -42613,79 +42574,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32613] = 11, + [32383] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2191), 1, - sym_identifier, - ACTIONS(2195), 1, - anon_sym_SEMI, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - STATE(1263), 1, - sym_subprogram_default, - STATE(1586), 1, - sym_aspect_specification, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2199), 2, - aux_sym_primary_null_token1, - anon_sym_LT_GT, - ACTIONS(2193), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(947), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [32656] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(503), 1, + ACTIONS(511), 1, sym_identifier, ACTIONS(1781), 1, aux_sym_relation_membership_token1, - ACTIONS(2055), 1, + ACTIONS(2035), 1, aux_sym_attribute_designator_token1, - STATE(707), 1, + STATE(691), 1, sym_null_exclusion, - STATE(1307), 1, + STATE(1288), 1, sym__subtype_indication, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - STATE(1064), 2, - sym__name, - sym_function_call, - STATE(1104), 2, + STATE(1068), 2, sym_access_definition, sym__return_subtype_indication, - ACTIONS(219), 3, + STATE(1112), 2, + sym__name, + sym_function_call, + ACTIONS(221), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(266), 5, + STATE(264), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [32701] = 4, + [32428] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2203), 1, - aux_sym_expression_token5, - STATE(602), 1, - aux_sym_expression_repeat3, - ACTIONS(2201), 17, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(511), 1, + sym_identifier, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + ACTIONS(2035), 1, + aux_sym_attribute_designator_token1, + STATE(691), 1, + sym_null_exclusion, + STATE(1288), 1, + sym__subtype_indication, + STATE(1652), 1, + sym_value_sequence, + STATE(1100), 2, + sym_access_definition, + sym__return_subtype_indication, + STATE(1112), 2, + sym__name, + sym_function_call, + ACTIONS(221), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(264), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [32473] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2047), 1, + aux_sym_expression_token1, + STATE(596), 1, + aux_sym_expression_repeat1, + ACTIONS(2196), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -42703,35 +42665,105 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32730] = 4, + [32502] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2080), 1, - aux_sym_expression_token5, - STATE(602), 1, - aux_sym_expression_repeat3, - ACTIONS(2179), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2208), 1, + sym_identifier, + ACTIONS(2212), 1, anon_sym_SEMI, - aux_sym_package_specification_token2, + ACTIONS(2214), 1, aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32759] = 2, + STATE(1264), 1, + sym_subprogram_default, + STATE(1652), 1, + sym_value_sequence, + STATE(1708), 1, + sym_aspect_specification, + ACTIONS(2216), 2, + aux_sym_primary_null_token1, + anon_sym_LT_GT, + ACTIONS(2210), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(948), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [32545] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2186), 18, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + ACTIONS(2218), 1, + sym_identifier, + ACTIONS(2222), 1, + anon_sym_LPAREN, + STATE(490), 1, + sym__subtype_indication_paren_constraint, + STATE(645), 1, + sym_subpool_specification, + STATE(777), 1, + sym_null_exclusion, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2220), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(265), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [32587] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(835), 1, + sym_identifier, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + ACTIONS(2035), 1, + aux_sym_attribute_designator_token1, + STATE(691), 1, + sym_null_exclusion, + STATE(1069), 1, + sym_access_definition, + STATE(1070), 1, + sym__subtype_indication, + STATE(1652), 1, + sym_value_sequence, + STATE(1112), 2, + sym__name, + sym_function_call, + ACTIONS(535), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [32631] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2224), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -42750,40 +42782,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32783] = 10, + [32655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2206), 1, - sym_identifier, - ACTIONS(2210), 1, - aux_sym_package_specification_token3, - ACTIONS(2212), 1, - aux_sym_at_clause_token1, - STATE(637), 1, - sym_mod_clause, - STATE(1650), 1, - sym_value_sequence, - STATE(636), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2208), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(974), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [32823] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2181), 18, + ACTIONS(2226), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -42802,76 +42804,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32847] = 2, + [32679] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2214), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32871] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(231), 1, - aux_sym_chunk_specification_token1, - ACTIONS(253), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - ACTIONS(2216), 1, + ACTIONS(2179), 1, sym_identifier, - STATE(656), 1, - sym_non_empty_mode, - STATE(767), 1, - sym_null_exclusion, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2218), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(824), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [32913] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2153), 1, - sym_identifier, - ACTIONS(2155), 1, + ACTIONS(2181), 1, anon_sym_LPAREN, - ACTIONS(2157), 1, + ACTIONS(2183), 1, anon_sym_LBRACK, STATE(246), 1, sym_attribute_designator, - ACTIONS(2159), 4, + ACTIONS(2185), 4, aux_sym_attribute_designator_token1, aux_sym_attribute_designator_token2, aux_sym_attribute_designator_token3, aux_sym_attribute_designator_token4, - STATE(231), 10, + STATE(245), 10, sym__aggregate, sym__delta_aggregate, sym_extension_aggregate, @@ -42882,1120 +42831,78 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [32947] = 11, + [32713] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - ACTIONS(2220), 1, - sym_identifier, - ACTIONS(2224), 1, + ACTIONS(2198), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [32737] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(943), 1, + anon_sym_DOT, + ACTIONS(981), 1, anon_sym_LPAREN, - STATE(492), 1, - sym__subtype_indication_paren_constraint, - STATE(639), 1, - sym_subpool_specification, - STATE(788), 1, - sym_null_exclusion, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2222), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(267), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [32989] = 11, + ACTIONS(1707), 1, + sym_tick, + ACTIONS(2230), 1, + aux_sym_iterator_filter_token1, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1335), 1, + sym_iterator_filter, + ACTIONS(977), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(2228), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + ACTIONS(979), 7, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [32777] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(1781), 1, aux_sym_relation_membership_token1, - ACTIONS(2055), 1, + ACTIONS(2035), 1, aux_sym_attribute_designator_token1, - ACTIONS(2063), 1, + ACTIONS(2086), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2092), 1, aux_sym_exception_declaration_token1, - STATE(734), 1, + STATE(679), 1, sym_null_exclusion, - STATE(1650), 1, - sym_value_sequence, - STATE(1846), 1, + STATE(1526), 1, sym_access_definition, - ACTIONS(2065), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(994), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33031] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2201), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33055] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(913), 1, - anon_sym_DOT, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1671), 1, - sym_tick, - ACTIONS(2228), 1, - aux_sym_iterator_filter_token1, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1245), 1, - sym_iterator_filter, - ACTIONS(977), 2, - anon_sym_DASH, - anon_sym_STAR, - ACTIONS(2226), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - ACTIONS(979), 7, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - [33095] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(823), 1, - sym_identifier, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - ACTIONS(2055), 1, - aux_sym_attribute_designator_token1, - STATE(707), 1, - sym_null_exclusion, - STATE(1130), 1, - sym_access_definition, - STATE(1135), 1, - sym__subtype_indication, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - STATE(1064), 2, - sym__name, - sym_function_call, - ACTIONS(525), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(524), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33139] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2153), 1, - sym_identifier, - ACTIONS(2155), 1, - anon_sym_LPAREN, - ACTIONS(2157), 1, - anon_sym_LBRACK, - STATE(1093), 1, - sym_attribute_designator, - ACTIONS(2159), 4, - aux_sym_attribute_designator_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - aux_sym_attribute_designator_token4, - STATE(231), 10, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [33173] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2230), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33197] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(913), 1, - anon_sym_DOT, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1671), 1, - sym_tick, - ACTIONS(2228), 1, - aux_sym_iterator_filter_token1, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1252), 1, - sym_iterator_filter, - ACTIONS(977), 2, - anon_sym_DASH, - anon_sym_STAR, - ACTIONS(2232), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - ACTIONS(979), 7, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - [33237] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2234), 1, - sym_identifier, - ACTIONS(2238), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2240), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2242), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2244), 1, - aux_sym_general_access_modifier_token1, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2236), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(729), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33276] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - ACTIONS(2055), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2246), 1, - sym_identifier, - STATE(702), 1, - sym_null_exclusion, - STATE(829), 1, - sym_access_definition, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2248), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(695), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33315] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(933), 1, - aux_sym_range_attribute_designator_token1, - STATE(659), 1, - sym_range_constraint, - ACTIONS(2250), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33342] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - ACTIONS(2055), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2252), 1, - sym_identifier, - STATE(698), 1, - sym_null_exclusion, - STATE(979), 1, - sym_access_definition, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2254), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(835), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33381] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - ACTIONS(2055), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2063), 1, - sym_identifier, - STATE(734), 1, - sym_null_exclusion, - STATE(1650), 1, - sym_value_sequence, - STATE(1846), 1, - sym_access_definition, - ACTIONS(2065), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(994), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33420] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(933), 1, - aux_sym_range_attribute_designator_token1, - STATE(661), 1, - sym_range_constraint, - ACTIONS(2256), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33447] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2258), 1, - sym_identifier, - ACTIONS(2262), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2264), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2266), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2268), 1, - aux_sym_general_access_modifier_token1, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2260), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(732), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33486] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2191), 1, - sym_identifier, - ACTIONS(2270), 1, - aux_sym_private_type_declaration_token1, - STATE(1239), 1, - sym_subprogram_default, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2199), 2, - aux_sym_primary_null_token1, - anon_sym_LT_GT, - ACTIONS(2193), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(947), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33523] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, - aux_sym_positional_array_aggregate_token1, - STATE(1300), 1, - sym_exception_choice, - STATE(1650), 1, - sym_value_sequence, - STATE(1752), 1, - sym_exception_choice_list, - STATE(1754), 1, - sym_choice_parameter_specification, - ACTIONS(2274), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(951), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33562] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - ACTIONS(2055), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2278), 1, - sym_identifier, - STATE(724), 1, - sym_null_exclusion, - STATE(1119), 1, - sym_access_definition, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2280), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(886), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33601] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2282), 1, - sym_identifier, - ACTIONS(2288), 1, - anon_sym_LBRACK, - ACTIONS(2291), 1, - aux_sym_package_specification_token3, - STATE(1650), 1, - sym_value_sequence, - STATE(628), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2285), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(974), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33635] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(823), 1, - sym_identifier, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - STATE(771), 1, - sym_null_exclusion, - STATE(1101), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1064), 2, - sym__name, - sym_function_call, - ACTIONS(525), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(524), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33673] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(823), 1, - sym_identifier, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - STATE(771), 1, - sym_null_exclusion, - STATE(1428), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1064), 2, - sym__name, - sym_function_call, - ACTIONS(525), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(524), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33711] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(1925), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2293), 1, - aux_sym_package_specification_token1, - ACTIONS(2295), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2297), 1, - aux_sym_interface_type_definition_token1, - STATE(1011), 1, - sym_overriding_indicator, - STATE(1277), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(483), 5, - sym__proper_body, - sym_subprogram_body, - sym_package_body, - sym_task_body, - sym_protected_body, - [33751] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(823), 1, - sym_identifier, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - STATE(771), 1, - sym_null_exclusion, - STATE(1129), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1064), 2, - sym__name, - sym_function_call, - ACTIONS(525), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(524), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33789] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(823), 1, - sym_identifier, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - STATE(771), 1, - sym_null_exclusion, - STATE(1073), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1064), 2, - sym__name, - sym_function_call, - ACTIONS(525), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(524), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33827] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(823), 1, - sym_identifier, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - STATE(771), 1, - sym_null_exclusion, - STATE(1095), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1064), 2, - sym__name, - sym_function_call, - ACTIONS(525), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(524), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33865] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2299), 1, - sym_identifier, - ACTIONS(2303), 1, - aux_sym_use_clause_token1, - ACTIONS(2305), 1, - aux_sym_use_clause_token2, - STATE(1502), 1, - sym__name_list, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2301), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(915), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33901] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2206), 1, - sym_identifier, - ACTIONS(2307), 1, - aux_sym_package_specification_token3, - STATE(1650), 1, - sym_value_sequence, - STATE(628), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2208), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(974), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33935] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2206), 1, - sym_identifier, - ACTIONS(2307), 1, - aux_sym_package_specification_token3, - STATE(1650), 1, - sym_value_sequence, - STATE(641), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2208), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(974), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33969] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(823), 1, - sym_identifier, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - STATE(771), 1, - sym_null_exclusion, - STATE(1136), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1064), 2, - sym__name, - sym_function_call, - ACTIONS(525), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(524), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [34007] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - ACTIONS(2220), 1, - sym_identifier, - STATE(494), 1, - sym__subtype_indication_paren_constraint, - STATE(788), 1, - sym_null_exclusion, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2222), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(267), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34043] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(823), 1, - sym_identifier, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - STATE(771), 1, - sym_null_exclusion, - STATE(1407), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1064), 2, - sym__name, - sym_function_call, - ACTIONS(525), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(524), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [34081] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2206), 1, - sym_identifier, - ACTIONS(2309), 1, - aux_sym_package_specification_token3, - STATE(1650), 1, - sym_value_sequence, - STATE(628), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2208), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(974), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34115] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(823), 1, - sym_identifier, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - STATE(771), 1, - sym_null_exclusion, - STATE(1337), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1064), 2, - sym__name, - sym_function_call, - ACTIONS(525), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(524), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [34153] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(823), 1, - sym_identifier, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - STATE(771), 1, - sym_null_exclusion, - STATE(1463), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1064), 2, - sym__name, - sym_function_call, - ACTIONS(525), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(524), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [34191] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(823), 1, - sym_identifier, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - STATE(771), 1, - sym_null_exclusion, - STATE(1082), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1064), 2, - sym__name, - sym_function_call, - ACTIONS(525), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(524), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [34229] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2276), 1, - aux_sym_positional_array_aggregate_token1, - ACTIONS(2311), 1, - sym_identifier, - STATE(1300), 1, - sym_exception_choice, - STATE(1510), 1, - sym_exception_choice_list, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2274), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(951), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34265] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(823), 1, - sym_identifier, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - STATE(771), 1, - sym_null_exclusion, - STATE(1160), 1, - sym__subtype_indication, - STATE(1650), 1, - sym_value_sequence, - STATE(1064), 2, - sym__name, - sym_function_call, - ACTIONS(525), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(524), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [34303] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1921), 1, - sym_identifier, - ACTIONS(2313), 1, - aux_sym_primary_null_token1, - ACTIONS(2315), 1, - aux_sym_case_expression_token1, - STATE(798), 1, - aux_sym_component_list_repeat1, - STATE(1484), 1, - sym_variant_part, - STATE(1764), 1, - sym_component_list, - STATE(1765), 1, - sym__defining_identifier_list, - STATE(954), 7, - sym__component_item, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_record_representation_clause, - [34340] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - ACTIONS(2216), 1, - sym_identifier, - STATE(767), 1, - sym_null_exclusion, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2218), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(824), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34373] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2276), 1, - aux_sym_positional_array_aggregate_token1, - ACTIONS(2311), 1, - sym_identifier, - STATE(1442), 1, - sym_exception_choice, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2274), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(951), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34406] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2317), 1, - sym_identifier, - STATE(1650), 1, - sym_value_sequence, - STATE(1493), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - ACTIONS(2319), 3, + ACTIONS(2088), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -44007,36 +42914,350 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [34437] = 9, + [32819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(2191), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [32843] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_chunk_specification_token1, + ACTIONS(255), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(1781), 1, aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2321), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2323), 1, - aux_sym_package_specification_token3, - STATE(1841), 1, - sym_overriding_indicator, - STATE(660), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [34472] = 2, + ACTIONS(2232), 1, + sym_identifier, + STATE(664), 1, + sym_non_empty_mode, + STATE(744), 1, + sym_null_exclusion, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2234), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(826), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [32885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2325), 15, + ACTIONS(2203), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [32909] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2179), 1, + sym_identifier, + ACTIONS(2181), 1, + anon_sym_LPAREN, + ACTIONS(2183), 1, + anon_sym_LBRACK, + STATE(1123), 1, + sym_attribute_designator, + ACTIONS(2185), 4, + aux_sym_attribute_designator_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + aux_sym_attribute_designator_token4, + STATE(245), 10, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [32943] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(943), 1, + anon_sym_DOT, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(1707), 1, + sym_tick, + ACTIONS(2230), 1, + aux_sym_iterator_filter_token1, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1275), 1, + sym_iterator_filter, + ACTIONS(977), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(2236), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + ACTIONS(979), 7, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [32983] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2238), 1, + sym_identifier, + ACTIONS(2242), 1, + aux_sym_package_specification_token3, + ACTIONS(2244), 1, + aux_sym_at_clause_token1, + STATE(646), 1, + sym_mod_clause, + STATE(1652), 1, + sym_value_sequence, + STATE(647), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2240), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1011), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [33023] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + ACTIONS(2035), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2246), 1, + sym_identifier, + STATE(673), 1, + sym_null_exclusion, + STATE(986), 1, + sym_access_definition, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2248), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(844), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [33062] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2250), 1, + sym_identifier, + ACTIONS(2254), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2256), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2258), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2260), 1, + aux_sym_general_access_modifier_token1, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2252), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(731), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [33101] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + ACTIONS(2035), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2262), 1, + sym_identifier, + STATE(732), 1, + sym_null_exclusion, + STATE(1120), 1, + sym_access_definition, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2264), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(872), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [33140] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + ACTIONS(2035), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2266), 1, + sym_identifier, + STATE(729), 1, + sym_null_exclusion, + STATE(825), 1, + sym_access_definition, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2268), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(739), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [33179] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2270), 1, + sym_identifier, + ACTIONS(2274), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2276), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2278), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2280), 1, + aux_sym_general_access_modifier_token1, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2272), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(713), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [33218] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + ACTIONS(2035), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2086), 1, + sym_identifier, + STATE(679), 1, + sym_null_exclusion, + STATE(1526), 1, + sym_access_definition, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2088), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(968), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [33257] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 1, + aux_sym_range_attribute_designator_token1, + STATE(662), 1, + sym_range_constraint, + ACTIONS(2282), 15, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_chunk_specification_token1, @@ -44052,7 +43273,638 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [34493] = 2, + [33284] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2208), 1, + sym_identifier, + ACTIONS(2284), 1, + aux_sym_private_type_declaration_token1, + STATE(1152), 1, + sym_subprogram_default, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2216), 2, + aux_sym_primary_null_token1, + anon_sym_LT_GT, + ACTIONS(2210), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(948), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [33321] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 1, + aux_sym_range_attribute_designator_token1, + STATE(661), 1, + sym_range_constraint, + ACTIONS(2286), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [33348] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2288), 1, + sym_identifier, + ACTIONS(2292), 1, + aux_sym_component_choice_list_token1, + STATE(1254), 1, + sym_exception_choice, + STATE(1652), 1, + sym_value_sequence, + STATE(1870), 1, + sym_exception_choice_list, + STATE(1872), 1, + sym_choice_parameter_specification, + ACTIONS(2290), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(930), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [33387] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(429), 1, + aux_sym_component_choice_list_token1, + ACTIONS(433), 1, + sym_string_literal, + ACTIONS(455), 1, + sym_identifier, + STATE(528), 1, + sym_selected_component, + STATE(1389), 1, + sym__named_record_component_association, + STATE(1652), 1, + sym_value_sequence, + STATE(1877), 1, + sym_component_choice_list, + ACTIONS(2294), 2, + sym_character_literal, + sym_target_name, + STATE(1112), 6, + sym__name, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [33427] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(835), 1, + sym_identifier, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + STATE(802), 1, + sym_null_exclusion, + STATE(1076), 1, + sym__subtype_indication, + STATE(1652), 1, + sym_value_sequence, + STATE(1112), 2, + sym__name, + sym_function_call, + ACTIONS(535), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [33465] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2296), 1, + sym_identifier, + ACTIONS(2300), 1, + aux_sym_use_clause_token1, + ACTIONS(2302), 1, + aux_sym_use_clause_token2, + STATE(1499), 1, + sym__name_list, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2298), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(914), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [33501] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(835), 1, + sym_identifier, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + STATE(802), 1, + sym_null_exclusion, + STATE(1137), 1, + sym__subtype_indication, + STATE(1652), 1, + sym_value_sequence, + STATE(1112), 2, + sym__name, + sym_function_call, + ACTIONS(535), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [33539] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2304), 1, + sym_identifier, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2313), 1, + aux_sym_package_specification_token3, + STATE(1652), 1, + sym_value_sequence, + STATE(632), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2307), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1011), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [33573] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2238), 1, + sym_identifier, + ACTIONS(2315), 1, + aux_sym_package_specification_token3, + STATE(1652), 1, + sym_value_sequence, + STATE(632), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2240), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1011), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [33607] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(835), 1, + sym_identifier, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + STATE(802), 1, + sym_null_exclusion, + STATE(1340), 1, + sym__subtype_indication, + STATE(1652), 1, + sym_value_sequence, + STATE(1112), 2, + sym__name, + sym_function_call, + ACTIONS(535), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [33645] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(835), 1, + sym_identifier, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + STATE(802), 1, + sym_null_exclusion, + STATE(1472), 1, + sym__subtype_indication, + STATE(1652), 1, + sym_value_sequence, + STATE(1112), 2, + sym__name, + sym_function_call, + ACTIONS(535), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [33683] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(835), 1, + sym_identifier, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + STATE(802), 1, + sym_null_exclusion, + STATE(1156), 1, + sym__subtype_indication, + STATE(1652), 1, + sym_value_sequence, + STATE(1112), 2, + sym__name, + sym_function_call, + ACTIONS(535), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [33721] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(835), 1, + sym_identifier, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + STATE(802), 1, + sym_null_exclusion, + STATE(1149), 1, + sym__subtype_indication, + STATE(1652), 1, + sym_value_sequence, + STATE(1112), 2, + sym__name, + sym_function_call, + ACTIONS(535), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [33759] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(835), 1, + sym_identifier, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + STATE(802), 1, + sym_null_exclusion, + STATE(1129), 1, + sym__subtype_indication, + STATE(1652), 1, + sym_value_sequence, + STATE(1112), 2, + sym__name, + sym_function_call, + ACTIONS(535), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [33797] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(835), 1, + sym_identifier, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + STATE(802), 1, + sym_null_exclusion, + STATE(1093), 1, + sym__subtype_indication, + STATE(1652), 1, + sym_value_sequence, + STATE(1112), 2, + sym__name, + sym_function_call, + ACTIONS(535), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [33835] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(835), 1, + sym_identifier, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + STATE(802), 1, + sym_null_exclusion, + STATE(1092), 1, + sym__subtype_indication, + STATE(1652), 1, + sym_value_sequence, + STATE(1112), 2, + sym__name, + sym_function_call, + ACTIONS(535), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [33873] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(835), 1, + sym_identifier, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + STATE(802), 1, + sym_null_exclusion, + STATE(1062), 1, + sym__subtype_indication, + STATE(1652), 1, + sym_value_sequence, + STATE(1112), 2, + sym__name, + sym_function_call, + ACTIONS(535), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [33911] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(1937), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1939), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2317), 1, + aux_sym_package_specification_token1, + ACTIONS(2319), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2321), 1, + aux_sym_interface_type_definition_token1, + STATE(1048), 1, + sym_overriding_indicator, + STATE(1265), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(482), 5, + sym__proper_body, + sym_subprogram_body, + sym_package_body, + sym_task_body, + sym_protected_body, + [33951] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2292), 1, + aux_sym_component_choice_list_token1, + ACTIONS(2323), 1, + sym_identifier, + STATE(1254), 1, + sym_exception_choice, + STATE(1635), 1, + sym_exception_choice_list, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2290), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(930), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [33987] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(835), 1, + sym_identifier, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + STATE(802), 1, + sym_null_exclusion, + STATE(1430), 1, + sym__subtype_indication, + STATE(1652), 1, + sym_value_sequence, + STATE(1112), 2, + sym__name, + sym_function_call, + ACTIONS(535), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [34025] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + ACTIONS(2218), 1, + sym_identifier, + STATE(489), 1, + sym__subtype_indication_paren_constraint, + STATE(777), 1, + sym_null_exclusion, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2220), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(265), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [34061] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2238), 1, + sym_identifier, + ACTIONS(2325), 1, + aux_sym_package_specification_token3, + STATE(1652), 1, + sym_value_sequence, + STATE(633), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2240), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1011), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [34095] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2238), 1, + sym_identifier, + ACTIONS(2325), 1, + aux_sym_package_specification_token3, + STATE(1652), 1, + sym_value_sequence, + STATE(632), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2240), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1011), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [34129] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2327), 15, @@ -44071,26 +43923,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [34514] = 10, + [34150] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1921), 1, + ACTIONS(1933), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2329), 1, aux_sym_primary_null_token1, - ACTIONS(2315), 1, + ACTIONS(2331), 1, aux_sym_case_expression_token1, - STATE(798), 1, + STATE(788), 1, aux_sym_component_list_repeat1, - STATE(1434), 1, - sym_component_list, - STATE(1484), 1, + STATE(1361), 1, sym_variant_part, - STATE(1765), 1, + STATE(1367), 1, + sym_component_list, + STATE(1910), 1, sym__defining_identifier_list, - STATE(954), 7, + STATE(934), 7, sym__component_item, sym_component_declaration, sym__aspect_clause, @@ -44098,7 +43950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_definition_clause, sym_enumeration_representation_clause, sym_record_representation_clause, - [34551] = 9, + [34187] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -44109,13 +43961,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2329), 1, + ACTIONS(2333), 1, aux_sym_allocator_token1, - STATE(1596), 1, - sym_task_definition, - STATE(1841), 1, + STATE(1545), 1, sym_overriding_indicator, - STATE(651), 8, + STATE(1763), 1, + sym_task_definition, + STATE(653), 8, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -44124,24 +43976,23 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [34586] = 8, + [34222] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1781), 1, - aux_sym_relation_membership_token1, - ACTIONS(2331), 1, + ACTIONS(2335), 1, sym_identifier, - STATE(776), 1, - sym_null_exclusion, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(2333), 3, + STATE(1495), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + ACTIONS(2337), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(823), 7, + STATE(1000), 7, sym__name, sym_selected_component, sym_slice, @@ -44149,7 +44000,34 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [34619] = 9, + [34253] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1933), 1, + sym_identifier, + ACTIONS(2329), 1, + aux_sym_primary_null_token1, + ACTIONS(2331), 1, + aux_sym_case_expression_token1, + STATE(788), 1, + aux_sym_component_list_repeat1, + STATE(1361), 1, + sym_variant_part, + STATE(1908), 1, + sym_component_list, + STATE(1910), 1, + sym__defining_identifier_list, + STATE(934), 7, + sym__component_item, + sym_component_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + [34290] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -44160,13 +44038,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2335), 1, - aux_sym_allocator_token1, - STATE(1727), 1, - sym_task_definition, - STATE(1841), 1, + ACTIONS(2339), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2341), 1, + aux_sym_package_specification_token3, + STATE(1545), 1, sym_overriding_indicator, - STATE(651), 8, + STATE(660), 8, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -44175,7 +44053,32 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [34654] = 9, + [34325] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, + ACTIONS(2232), 1, + sym_identifier, + STATE(744), 1, + sym_null_exclusion, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2234), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(826), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [34358] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -44186,13 +44089,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2337), 1, + ACTIONS(2343), 1, aux_sym_allocator_token1, - STATE(1841), 1, + STATE(1545), 1, sym_overriding_indicator, - STATE(1844), 1, + STATE(1762), 1, sym_task_definition, - STATE(651), 8, + STATE(653), 8, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -44201,10 +44104,10 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [34689] = 2, + [34393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 15, + ACTIONS(2345), 15, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_chunk_specification_token1, @@ -44220,20 +44123,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [34710] = 8, + [34414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2341), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2346), 1, - aux_sym_relation_membership_token1, + ACTIONS(2347), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [34435] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2292), 1, + aux_sym_component_choice_list_token1, + ACTIONS(2323), 1, + sym_identifier, + STATE(1446), 1, + sym_exception_choice, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2290), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(930), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [34468] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, ACTIONS(2349), 1, + sym_identifier, + ACTIONS(2353), 1, + aux_sym_iterator_filter_token1, + ACTIONS(2355), 1, + anon_sym_SEMI, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2351), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(961), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [34501] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2357), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2362), 1, + aux_sym_relation_membership_token1, + ACTIONS(2365), 1, aux_sym_entry_declaration_token1, - ACTIONS(2352), 1, + ACTIONS(2368), 1, aux_sym_global_mode_token1, - STATE(1841), 1, + STATE(1545), 1, sym_overriding_indicator, - ACTIONS(2344), 2, + ACTIONS(2360), 2, aux_sym_compilation_unit_token1, aux_sym_package_specification_token3, STATE(660), 8, @@ -44245,10 +44217,10 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [34743] = 2, + [34534] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2355), 15, + ACTIONS(2371), 15, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_chunk_specification_token1, @@ -44264,10 +44236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [34764] = 2, + [34555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 15, + ACTIONS(2373), 15, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_chunk_specification_token1, @@ -44283,7 +44255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [34785] = 9, + [34576] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -44294,155 +44266,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2359), 1, - aux_sym_allocator_token1, - STATE(1506), 1, - sym_task_definition, - STATE(1841), 1, - sym_overriding_indicator, - STATE(651), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [34820] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2361), 1, - aux_sym_allocator_token1, - STATE(1728), 1, - sym_task_definition, - STATE(1841), 1, - sym_overriding_indicator, - STATE(651), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [34855] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2363), 1, - sym_identifier, - ACTIONS(2367), 1, - aux_sym_iterator_filter_token1, - ACTIONS(2369), 1, - anon_sym_SEMI, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2365), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(929), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34888] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2371), 1, - sym_identifier, ACTIONS(2375), 1, - aux_sym_loop_parameter_specification_token1, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2373), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(841), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34918] = 6, + aux_sym_allocator_token1, + STATE(1508), 1, + sym_task_definition, + STATE(1545), 1, + sym_overriding_indicator, + STATE(653), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [34611] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - STATE(1898), 1, - sym__name_list, - ACTIONS(2301), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(915), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34946] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2216), 1, - sym_identifier, + ACTIONS(1781), 1, + aux_sym_relation_membership_token1, ACTIONS(2377), 1, - aux_sym_attribute_designator_token1, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2218), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(824), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34976] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1177), 1, - sym__interface_list, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2379), 4, sym_identifier, + STATE(762), 1, + sym_null_exclusion, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2379), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(842), 7, + STATE(828), 7, sym__name, sym_selected_component, sym_slice, @@ -44450,65 +44306,73 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [35004] = 6, + [34644] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2381), 1, + aux_sym_allocator_token1, + STATE(1540), 1, + sym_task_definition, + STATE(1545), 1, + sym_overriding_indicator, + STATE(653), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [34679] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, ACTIONS(2383), 1, - anon_sym_SEMI, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2381), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(995), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35032] = 6, + aux_sym_allocator_token1, + STATE(1545), 1, + sym_overriding_indicator, + STATE(1693), 1, + sym_task_definition, + STATE(653), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [34714] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - STATE(1702), 1, + STATE(1769), 1, sym__interface_list, - ACTIONS(2379), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(842), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35060] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2387), 1, - anon_sym_SEMI, - STATE(1650), 1, - sym_value_sequence, ACTIONS(2385), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(981), 7, + STATE(833), 7, sym__name, sym_selected_component, sym_slice, @@ -44516,39 +44380,16 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [35088] = 7, + [34742] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(2389), 1, - sym_identifier, - ACTIONS(2393), 1, - aux_sym_package_body_token1, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2391), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(846), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35118] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2397), 1, anon_sym_SEMI, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(2395), 4, + ACTIONS(2387), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -44561,45 +44402,21 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [35146] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(913), 1, - anon_sym_DOT, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1671), 1, - sym_tick, - ACTIONS(2399), 1, - aux_sym_range_attribute_designator_token1, - STATE(259), 1, - sym_actual_parameter_part, - ACTIONS(977), 2, - anon_sym_DASH, - anon_sym_STAR, - ACTIONS(979), 7, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - [35178] = 6, + [34770] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - STATE(1688), 1, + STATE(1438), 1, sym__interface_list, - ACTIONS(2379), 4, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2385), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(842), 7, + STATE(833), 7, sym__name, sym_selected_component, sym_slice, @@ -44607,955 +44424,16 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [35206] = 6, + [34798] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2403), 1, + ACTIONS(2393), 1, anon_sym_SEMI, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(2401), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(967), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35234] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1460), 1, - sym__interface_list, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2379), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(842), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35262] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - STATE(1749), 1, - sym__interface_list, - ACTIONS(2379), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(842), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35290] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - STATE(1798), 1, - sym_task_definition, - STATE(1841), 1, - sym_overriding_indicator, - STATE(651), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35322] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1494), 1, - sym__interface_list, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2379), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(842), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35350] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1642), 1, - sym__interface_list, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2379), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(842), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35378] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2407), 1, - anon_sym_SEMI, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2405), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1035), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35406] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - STATE(1847), 1, - sym__interface_list, - ACTIONS(2379), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(842), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35434] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1384), 1, - sym__interface_list, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2379), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(842), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35462] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - STATE(1869), 1, - sym__interface_list, - ACTIONS(2379), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(842), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35490] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1422), 1, - sym__name_list, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2409), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(898), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35518] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - STATE(1902), 1, - sym__name_list, - ACTIONS(2301), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(915), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35546] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - STATE(1805), 1, - sym__interface_list, - ACTIONS(2379), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(842), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35574] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2413), 1, - anon_sym_SEMI, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2411), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1034), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35602] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - STATE(1672), 1, - sym_reduction_specification, - ACTIONS(2415), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1038), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35630] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2419), 1, - anon_sym_SEMI, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2417), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1004), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35658] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1530), 1, - sym__name_list, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2301), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(915), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35686] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2423), 1, - anon_sym_SEMI, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2421), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1022), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35714] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - STATE(259), 1, - sym_actual_parameter_part, - ACTIONS(2425), 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, - [35742] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1562), 1, - sym__interface_list, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2379), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(842), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35770] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1614), 1, - sym__interface_list, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2379), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(842), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35798] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2377), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2427), 1, - sym_identifier, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2429), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(831), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35828] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2433), 1, - anon_sym_SEMI, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2431), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1027), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35856] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - STATE(1841), 1, - sym_overriding_indicator, - STATE(1863), 1, - sym_task_definition, - STATE(651), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35888] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2252), 1, - sym_identifier, - ACTIONS(2377), 1, - aux_sym_attribute_designator_token1, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2254), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(835), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35918] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2377), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2435), 1, - sym_identifier, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2437), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(706), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35948] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1385), 1, - sym_index_subtype_definition, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2439), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1020), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35976] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - STATE(1889), 1, - sym__name_list, - ACTIONS(2301), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(915), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36004] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - STATE(1499), 1, - sym_task_definition, - STATE(1841), 1, - sym_overriding_indicator, - STATE(651), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [36036] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - STATE(259), 1, - sym_actual_parameter_part, - ACTIONS(2441), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [36064] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2377), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2443), 1, - sym_identifier, - STATE(1650), 1, - sym_value_sequence, - STATE(1064), 2, - sym__name, - sym_function_call, - ACTIONS(2445), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(529), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [36096] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2447), 1, - aux_sym_package_specification_token3, - STATE(1841), 1, - sym_overriding_indicator, - STATE(660), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [36128] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1503), 1, - sym__interface_list, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2379), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(842), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36156] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - STATE(1656), 1, - sym__interface_list, - ACTIONS(2379), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(842), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36184] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1485), 1, - sym__interface_list, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2379), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(842), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36212] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - STATE(1885), 1, - sym__name_list, - ACTIONS(2301), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(915), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36240] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1417), 1, - sym__interface_list, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2379), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(842), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36268] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2451), 1, - anon_sym_SEMI, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2449), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(955), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36296] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1244), 1, - sym__interface_list, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2379), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(842), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36324] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - STATE(1686), 1, - sym_task_definition, - STATE(1841), 1, - sym_overriding_indicator, - STATE(651), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [36356] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2455), 1, - anon_sym_SEMI, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2453), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1044), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36384] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1597), 1, - sym__interface_list, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2379), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(842), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36412] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2459), 1, - anon_sym_SEMI, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2457), 4, + ACTIONS(2391), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -45568,67 +44446,21 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36440] = 6, + [34826] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1598), 1, - sym__interface_list, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2379), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(842), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36468] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - STATE(1685), 1, - sym_task_definition, - STATE(1841), 1, - sym_overriding_indicator, - STATE(651), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [36500] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2397), 1, anon_sym_SEMI, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(2461), 4, + ACTIONS(2395), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(978), 7, + STATE(1003), 7, sym__name, sym_selected_component, sym_slice, @@ -45636,21 +44468,21 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36528] = 6, + [34854] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1370), 1, + STATE(1644), 1, sym__interface_list, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(2379), 4, + ACTIONS(2385), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(842), 7, + STATE(833), 7, sym__name, sym_selected_component, sym_slice, @@ -45658,22 +44490,22 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36556] = 7, + [34882] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2377), 1, + ACTIONS(2399), 1, + sym_identifier, + ACTIONS(2403), 1, aux_sym_attribute_designator_token1, - ACTIONS(2465), 1, - sym_identifier, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(2467), 3, + ACTIONS(2401), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(885), 7, + STATE(836), 7, sym__name, sym_selected_component, sym_slice, @@ -45681,60 +44513,16 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36586] = 6, + [34912] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2471), 1, + ACTIONS(2407), 1, anon_sym_SEMI, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(2469), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1007), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36614] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_SEMI, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2473), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(986), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36642] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2479), 1, - anon_sym_SEMI, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2477), 4, + ACTIONS(2405), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -45747,20 +44535,1341 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36670] = 6, + [34940] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1362), 1, - sym__interface_list, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(2379), 4, + STATE(1849), 1, + sym__interface_list, + ACTIONS(2385), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, + STATE(833), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [34968] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1648), 1, + sym__interface_list, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2385), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(833), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [34996] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1638), 1, + sym__interface_list, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2385), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(833), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35024] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1376), 1, + sym__interface_list, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2385), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(833), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35052] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2403), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2409), 1, + sym_identifier, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2411), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1025), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35082] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1447), 1, + sym__interface_list, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2385), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(833), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35110] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + STATE(1790), 1, + sym__name_list, + ACTIONS(2298), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(914), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35138] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2415), 1, + anon_sym_SEMI, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2413), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1026), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35166] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2419), 1, + anon_sym_SEMI, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2417), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1034), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35194] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_SEMI, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2421), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1053), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35222] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1595), 1, + sym__interface_list, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2385), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(833), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35250] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1454), 1, + sym__name_list, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2425), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(919), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35278] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1493), 1, + sym__name_list, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2298), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(914), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35306] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(943), 1, + anon_sym_DOT, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(1707), 1, + sym_tick, + ACTIONS(2427), 1, + aux_sym_range_attribute_designator_token1, + STATE(262), 1, + sym_actual_parameter_part, + ACTIONS(977), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(979), 7, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [35338] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + STATE(1807), 1, + sym__interface_list, + ACTIONS(2385), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(833), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35366] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + STATE(1545), 1, + sym_overriding_indicator, + STATE(1865), 1, + sym_task_definition, + STATE(653), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [35398] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2403), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2429), 1, + sym_identifier, + STATE(1652), 1, + sym_value_sequence, + STATE(1112), 2, + sym__name, + sym_function_call, + ACTIONS(2431), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(529), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [35430] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2433), 1, + sym_identifier, + ACTIONS(2437), 1, + aux_sym_loop_parameter_specification_token1, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2435), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(838), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35460] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1647), 1, + sym_reduction_specification, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2439), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1039), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35488] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + STATE(1871), 1, + sym__interface_list, + ACTIONS(2385), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(833), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35516] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + STATE(1545), 1, + sym_overriding_indicator, + STATE(1800), 1, + sym_task_definition, + STATE(653), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [35548] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + STATE(1658), 1, + sym__interface_list, + ACTIONS(2385), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(833), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35576] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1398), 1, + sym__interface_list, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2385), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(833), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35604] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1266), 1, + sym__interface_list, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2385), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(833), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35632] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1399), 1, + sym__interface_list, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2385), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(833), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35660] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2443), 1, + anon_sym_SEMI, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2441), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1024), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35688] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + STATE(262), 1, + sym_actual_parameter_part, + ACTIONS(2445), 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, + [35716] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2232), 1, + sym_identifier, + ACTIONS(2403), 1, + aux_sym_attribute_designator_token1, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2234), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(826), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35746] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2449), 1, + anon_sym_SEMI, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2447), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1021), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35774] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + STATE(1767), 1, + sym__interface_list, + ACTIONS(2385), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(833), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35802] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1573), 1, + sym__name_list, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2298), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(914), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35830] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1520), 1, + sym__interface_list, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2385), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(833), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35858] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1521), 1, + sym__interface_list, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2385), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(833), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35886] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + STATE(1860), 1, + sym__name_list, + ACTIONS(2298), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(914), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35914] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2453), 1, + anon_sym_SEMI, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2451), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1033), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35942] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2457), 1, + anon_sym_SEMI, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2455), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(960), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35970] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1460), 1, + sym_index_subtype_definition, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2459), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1016), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35998] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2463), 1, + anon_sym_SEMI, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2461), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1008), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36026] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + STATE(262), 1, + sym_actual_parameter_part, + ACTIONS(2465), 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, + [36054] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + STATE(1918), 1, + sym__name_list, + ACTIONS(2298), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(914), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36082] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1419), 1, + sym__interface_list, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2385), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(833), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36110] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + STATE(1850), 1, + sym__interface_list, + ACTIONS(2385), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(833), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36138] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2469), 1, + anon_sym_SEMI, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2467), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1029), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36166] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1165), 1, + sym__interface_list, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2385), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(833), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36194] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2471), 1, + sym_identifier, + ACTIONS(2475), 1, + aux_sym_package_body_token1, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2473), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(876), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36224] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2246), 1, + sym_identifier, + ACTIONS(2403), 1, + aux_sym_attribute_designator_token1, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2248), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(844), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36254] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + STATE(262), 1, + sym_actual_parameter_part, + ACTIONS(2477), 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, + [36282] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2481), 1, + anon_sym_SEMI, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2479), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(971), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36310] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + STATE(1704), 1, + sym__interface_list, + ACTIONS(2385), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(833), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36338] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2485), 1, + anon_sym_SEMI, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2483), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1019), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36366] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + STATE(1501), 1, + sym_task_definition, + STATE(1545), 1, + sym_overriding_indicator, + STATE(653), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [36398] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2487), 1, + aux_sym_package_specification_token3, + STATE(1545), 1, + sym_overriding_indicator, + STATE(660), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [36430] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2491), 1, + anon_sym_SEMI, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2489), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(990), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36458] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + STATE(1690), 1, + sym__interface_list, + ACTIONS(2385), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(833), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36486] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2403), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2493), 1, + sym_identifier, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2495), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(701), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36516] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + STATE(1545), 1, + sym_overriding_indicator, + STATE(1688), 1, + sym_task_definition, + STATE(653), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [36548] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + STATE(262), 1, + sym_actual_parameter_part, + ACTIONS(2497), 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, + [36576] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2403), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2499), 1, + sym_identifier, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2501), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(885), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36606] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2503), 1, + sym_identifier, + ACTIONS(2507), 1, + aux_sym_loop_parameter_specification_token1, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2505), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(841), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36636] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2509), 1, + sym_identifier, + ACTIONS(2513), 1, + aux_sym_loop_parameter_specification_token1, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2511), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, STATE(842), 7, sym__name, sym_selected_component, @@ -45769,43 +45878,67 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36698] = 6, + [36666] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - STATE(259), 1, - sym_actual_parameter_part, - ACTIONS(2481), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2517), 1, 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, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2515), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(984), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36694] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + STATE(1545), 1, + sym_overriding_indicator, + STATE(1687), 1, + sym_task_definition, + STATE(653), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, [36726] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, - anon_sym_SEMI, - STATE(1650), 1, + STATE(1549), 1, + sym__name_list, + STATE(1652), 1, sym_value_sequence, - ACTIONS(2483), 4, + ACTIONS(2298), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1047), 7, + STATE(914), 7, sym__name, sym_selected_component, sym_slice, @@ -45816,37 +45949,37 @@ static const uint16_t ts_small_parse_table[] = { [36754] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - STATE(259), 1, - sym_actual_parameter_part, - ACTIONS(2487), 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, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1505), 1, + sym__interface_list, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2385), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(833), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, [36782] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - STATE(259), 1, + STATE(262), 1, sym_actual_parameter_part, - ACTIONS(2489), 10, + ACTIONS(2519), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -45862,230 +45995,16 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - STATE(1862), 1, - sym__name_list, - ACTIONS(2301), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(915), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36838] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2377), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2491), 1, - sym_identifier, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1006), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36868] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2495), 1, - sym_identifier, - ACTIONS(2499), 1, - aux_sym_loop_parameter_specification_token1, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2497), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36898] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2501), 1, - sym_identifier, - ACTIONS(2505), 1, - aux_sym_loop_parameter_specification_token1, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2503), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(830), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36928] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2509), 1, + ACTIONS(2523), 1, anon_sym_SEMI, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2507), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1016), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36956] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - STATE(1767), 1, - sym__interface_list, - ACTIONS(2379), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(842), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36984] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - STATE(1691), 1, - sym__interface_list, - ACTIONS(2379), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(842), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37012] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2511), 1, - sym_identifier, - ACTIONS(2515), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(2513), 11, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_relation_membership_token1, - [37035] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2517), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(834), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37060] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2519), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(832), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37085] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, ACTIONS(2521), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(901), 7, + STATE(981), 7, sym__name, sym_selected_component, sym_slice, @@ -46093,39 +46012,19 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37110] = 5, + [36838] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2523), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(917), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37135] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, ACTIONS(2525), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(912), 7, + STATE(907), 7, sym__name, sym_selected_component, sym_slice, @@ -46133,19 +46032,19 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37160] = 5, + [36863] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, ACTIONS(2527), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(858), 7, + STATE(884), 7, sym__name, sym_selected_component, sym_slice, @@ -46153,333 +46052,15 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37185] = 5, + [36888] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2529), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(836), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37210] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2531), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(919), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37235] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2533), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(982), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37260] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(2157), 1, - anon_sym_LBRACK, - STATE(1332), 11, - sym__parenthesized_expression, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [37283] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2535), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(731), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37308] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2537), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(984), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37333] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2236), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(729), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37358] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2539), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(990), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37383] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2541), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(894), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37408] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2543), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(924), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37433] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2545), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(2547), 11, - sym_string_literal, - sym_character_literal, - sym_numeric_literal, - anon_sym_PLUS, - sym_target_name, - anon_sym_LPAREN, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - aux_sym_factor_abs_token1, - aux_sym_primary_null_token1, - aux_sym_allocator_token1, - [37454] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(2157), 1, - anon_sym_LBRACK, - STATE(1167), 11, - sym__parenthesized_expression, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [37477] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2549), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37502] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - STATE(1841), 1, - sym_overriding_indicator, - STATE(708), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [37531] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2551), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(923), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37556] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2553), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(859), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37581] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2555), 1, + ACTIONS(2529), 1, aux_sym_chunk_specification_token1, - ACTIONS(917), 2, + ACTIONS(919), 2, anon_sym_DASH, anon_sym_STAR, - ACTIONS(919), 10, + ACTIONS(921), 10, anon_sym_PLUS, anon_sym_AMP, anon_sym_SLASH, @@ -46490,19 +46071,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR_STAR, - [37604] = 5, + [36911] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(2557), 4, + ACTIONS(2379), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(976), 7, + STATE(828), 7, sym__name, sym_selected_component, sym_slice, @@ -46510,19 +46091,20 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37629] = 5, + [36936] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2559), 4, + ACTIONS(2531), 1, sym_identifier, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2337), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(913), 7, + STATE(1000), 7, sym__name, sym_selected_component, sym_slice, @@ -46530,617 +46112,14 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37654] = 5, + [36963] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(2561), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(900), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37679] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2333), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(823), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37704] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2563), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(899), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37729] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2565), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(840), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37754] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2567), 1, - sym_identifier, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2319), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(968), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37781] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - STATE(1064), 2, - sym__name, - sym_function_call, - ACTIONS(2445), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(529), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [37808] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2569), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(943), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37833] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2571), 1, - sym_identifier, - ACTIONS(2574), 1, - aux_sym_iterated_element_association_token1, - STATE(1765), 1, - sym__defining_identifier_list, - ACTIONS(2577), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - STATE(773), 8, - sym__component_item, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_record_representation_clause, - aux_sym_component_list_repeat1, - [37860] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2579), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1039), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37885] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2581), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(889), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37910] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2583), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(822), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37935] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2585), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(921), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37960] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2587), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(550), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37985] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2589), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(916), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38010] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2591), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(837), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38035] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2593), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(865), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38060] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2595), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(910), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38085] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2597), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(874), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38110] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2599), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(903), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38135] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2601), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1023), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38160] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2391), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(846), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38185] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2603), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(914), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38210] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2605), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(265), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38235] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2607), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(843), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38260] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2609), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1021), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38285] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2611), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(844), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38310] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2613), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(881), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38335] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2615), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1012), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38360] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2617), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(904), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38385] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2619), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(993), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38410] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1650), 1, - sym_value_sequence, - ACTIONS(2621), 4, + ACTIONS(2533), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -47153,19 +46132,41 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38435] = 5, + [36988] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1650), 1, + STATE(998), 1, + sym_selected_component, + STATE(1652), 1, sym_value_sequence, - ACTIONS(2623), 4, + ACTIONS(2294), 2, + sym_character_literal, + sym_target_name, + ACTIONS(2535), 2, + sym_identifier, + sym_string_literal, + STATE(1112), 6, + sym__name, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37017] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2537), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(905), 7, + STATE(552), 7, sym__name, sym_selected_component, sym_slice, @@ -47173,41 +46174,19 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38460] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1921), 1, - sym_identifier, - STATE(1765), 1, - sym__defining_identifier_list, - ACTIONS(2625), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - STATE(773), 8, - sym__component_item, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_record_representation_clause, - aux_sym_component_list_repeat1, - [38487] = 6, + [37042] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2627), 1, - sym_identifier, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(2599), 3, + ACTIONS(2539), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(903), 7, + STATE(920), 7, sym__name, sym_selected_component, sym_slice, @@ -47215,19 +46194,38 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38514] = 5, + [37067] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(2183), 1, + anon_sym_LBRACK, + STATE(1219), 11, + sym__parenthesized_expression, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [37090] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(2629), 4, + ACTIONS(2541), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(991), 7, + STATE(980), 7, sym__name, sym_selected_component, sym_slice, @@ -47235,39 +46233,597 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38539] = 10, + [37115] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2543), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(721), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37140] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2545), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(922), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37165] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2547), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(864), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37190] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2549), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(863), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37215] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2551), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(911), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37240] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, aux_sym_accept_statement_token1, ACTIONS(75), 1, aux_sym_delay_until_statement_token1, - ACTIONS(1905), 1, + ACTIONS(1927), 1, aux_sym_iterator_filter_token1, - ACTIONS(1907), 1, + ACTIONS(1929), 1, aux_sym_terminate_alternative_token1, STATE(29), 1, sym_accept_statement, - STATE(815), 1, + STATE(820), 1, sym_guard, - STATE(1314), 1, + STATE(1337), 1, sym_select_alternative, STATE(31), 3, sym__delay_statement, sym_delay_until_statement, sym_delay_relative_statement, - STATE(1312), 3, + STATE(1157), 3, sym_delay_alternative, sym_accept_alternative, sym_terminate_alternative, - [38574] = 5, + [37275] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1650), 1, + STATE(1652), 1, sym_value_sequence, - ACTIONS(2631), 4, + ACTIONS(2553), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(874), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37300] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2555), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37325] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2557), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(832), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37350] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2559), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(834), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37375] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2561), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(824), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37400] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2563), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37425] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(229), 1, + anon_sym_LPAREN, + ACTIONS(2183), 1, + anon_sym_LBRACK, + STATE(1255), 11, + sym__parenthesized_expression, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [37448] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2565), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1018), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37473] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2567), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1002), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37498] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2569), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(845), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37523] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2571), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(839), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37548] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2573), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(846), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37573] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2575), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(974), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37598] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2577), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(918), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37623] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2579), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1045), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37648] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2581), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(995), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37673] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2583), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(898), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37698] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2585), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(978), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37723] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2587), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(895), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37748] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2589), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(267), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37773] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2591), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(916), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37798] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2593), 1, + sym_identifier, + ACTIONS(2597), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(2595), 11, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_relation_membership_token1, + [37821] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2599), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(835), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37846] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2601), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -47280,12 +46836,476 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38599] = 3, + [37871] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2633), 1, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2603), 4, sym_identifier, - ACTIONS(2635), 11, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(959), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37896] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2605), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(903), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37921] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2607), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(862), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37946] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2609), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(873), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37971] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2611), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(905), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37996] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2613), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1001), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38021] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1933), 1, + sym_identifier, + STATE(1910), 1, + sym__defining_identifier_list, + ACTIONS(2615), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + STATE(799), 8, + sym__component_item, + sym_component_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + aux_sym_component_list_repeat1, + [38048] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2617), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(899), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38073] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2619), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(913), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38098] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2621), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(982), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38123] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2252), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(731), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38148] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2623), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(926), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38173] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + STATE(1545), 1, + sym_overriding_indicator, + STATE(726), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [38202] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2473), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(876), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38227] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2625), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(924), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38252] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2627), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(923), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38277] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2629), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(917), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38302] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2634), 1, + aux_sym_iterated_element_association_token1, + STATE(1910), 1, + sym__defining_identifier_list, + ACTIONS(2637), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + STATE(799), 8, + sym__component_item, + sym_component_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + aux_sym_component_list_repeat1, + [38329] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2639), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(991), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38354] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(2643), 11, + sym_string_literal, + sym_character_literal, + sym_numeric_literal, + anon_sym_PLUS, + sym_target_name, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + aux_sym_factor_abs_token1, + aux_sym_primary_null_token1, + aux_sym_allocator_token1, + [38375] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + STATE(1112), 2, + sym__name, + sym_function_call, + ACTIONS(2431), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(529), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [38402] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2645), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(906), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38427] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2647), 1, + sym_identifier, + STATE(1652), 1, + sym_value_sequence, + ACTIONS(2617), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(899), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38454] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + sym_identifier, + ACTIONS(2651), 11, sym_string_literal, sym_character_literal, sym_target_name, @@ -47297,10 +47317,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, aux_sym_package_specification_token2, aux_sym_relation_membership_token1, - [38619] = 2, + [38474] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2637), 12, + ACTIONS(2653), 1, + anon_sym_LPAREN, + STATE(829), 1, + sym_formal_part, + ACTIONS(2655), 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, + [38496] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2657), 12, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_filter_token1, @@ -47313,12 +47351,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_object_renaming_declaration_token1, aux_sym_result_profile_token1, aux_sym_accept_statement_token2, - [38637] = 3, + [38514] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2511), 1, + ACTIONS(2653), 1, + anon_sym_LPAREN, + STATE(822), 1, + sym_formal_part, + ACTIONS(2659), 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, + [38536] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2593), 1, sym_identifier, - ACTIONS(2513), 11, + ACTIONS(2595), 11, sym_string_literal, sym_character_literal, sym_target_name, @@ -47330,50 +47386,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, aux_sym_package_specification_token2, aux_sym_relation_membership_token1, - [38657] = 4, + [38556] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2639), 1, - anon_sym_LPAREN, - STATE(821), 1, - sym_formal_part, - ACTIONS(2641), 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, - [38679] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2639), 1, - anon_sym_LPAREN, - STATE(826), 1, - sym_formal_part, - ACTIONS(2643), 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, - [38701] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2639), 1, + ACTIONS(2653), 1, anon_sym_LPAREN, STATE(827), 1, sym_formal_part, - ACTIONS(2645), 10, + ACTIONS(2661), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -47384,49 +47404,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [38723] = 8, + [38578] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2647), 1, + ACTIONS(2663), 1, sym_identifier, - ACTIONS(2650), 1, + ACTIONS(2665), 1, aux_sym_subprogram_body_token1, - ACTIONS(2652), 1, + ACTIONS(2667), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2655), 1, + ACTIONS(2669), 1, aux_sym_interface_type_definition_token1, - STATE(1859), 1, + STATE(1509), 1, sym__defining_identifier_list, - STATE(419), 2, + STATE(426), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(809), 4, + STATE(816), 4, sym__declare_item, sym_object_declaration, sym_object_renaming_declaration, aux_sym_declare_expression_repeat1, - [38752] = 3, + [38607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2658), 1, + ACTIONS(2671), 1, sym_identifier, - ACTIONS(2660), 10, - sym_string_literal, - sym_character_literal, - sym_numeric_literal, - sym_target_name, - anon_sym_LPAREN, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - aux_sym_factor_abs_token1, - aux_sym_primary_null_token1, - aux_sym_allocator_token1, - [38771] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2662), 1, - sym_identifier, - ACTIONS(2664), 10, + ACTIONS(2673), 10, aux_sym_iterated_element_association_token1, aux_sym_iterator_filter_token1, aux_sym_package_specification_token3, @@ -47437,91 +47441,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_entry_declaration_token1, aux_sym_global_mode_token1, aux_sym_pragma_g_token1, - [38790] = 8, + [38626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(1907), 1, - aux_sym_terminate_alternative_token1, - STATE(29), 1, - sym_accept_statement, - STATE(1083), 1, - sym_select_alternative, - STATE(31), 3, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - STATE(1312), 3, - sym_delay_alternative, - sym_accept_alternative, - sym_terminate_alternative, - [38819] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2666), 1, + ACTIONS(2675), 1, sym_identifier, - ACTIONS(2668), 10, - sym_string_literal, - sym_character_literal, - sym_numeric_literal, - sym_target_name, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(2677), 10, + aux_sym_iterated_element_association_token1, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, aux_sym_relation_membership_token1, - aux_sym_factor_abs_token1, - aux_sym_primary_null_token1, - aux_sym_allocator_token1, - [38838] = 8, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_case_expression_token1, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + [38645] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2670), 1, + ACTIONS(2663), 1, sym_identifier, - ACTIONS(2672), 1, - aux_sym_subprogram_body_token1, - ACTIONS(2674), 1, + ACTIONS(2667), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2676), 1, + ACTIONS(2669), 1, aux_sym_interface_type_definition_token1, - STATE(1859), 1, + ACTIONS(2679), 1, + aux_sym_subprogram_body_token1, + STATE(1509), 1, sym__defining_identifier_list, - STATE(419), 2, + STATE(426), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(819), 4, + STATE(811), 4, sym__declare_item, sym_object_declaration, sym_object_renaming_declaration, aux_sym_declare_expression_repeat1, - [38867] = 8, + [38674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(1907), 1, - aux_sym_terminate_alternative_token1, - STATE(29), 1, - sym_accept_statement, - STATE(1247), 1, - sym_select_alternative, - STATE(31), 3, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - STATE(1312), 3, - sym_delay_alternative, - sym_accept_alternative, - sym_terminate_alternative, - [38896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2678), 1, + ACTIONS(2681), 1, sym_identifier, - ACTIONS(2680), 10, + ACTIONS(2683), 10, sym_string_literal, sym_character_literal, sym_numeric_literal, @@ -47532,208 +47494,121 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_factor_abs_token1, aux_sym_primary_null_token1, aux_sym_allocator_token1, - [38915] = 3, + [38693] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 1, + ACTIONS(2685), 1, sym_identifier, - ACTIONS(2684), 10, - aux_sym_iterated_element_association_token1, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_case_expression_token1, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - aux_sym_pragma_g_token1, - [38934] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2686), 1, - sym_identifier, - ACTIONS(2688), 10, - aux_sym_iterated_element_association_token1, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_case_expression_token1, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - aux_sym_pragma_g_token1, - [38953] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2670), 1, - sym_identifier, - ACTIONS(2674), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2676), 1, - aux_sym_interface_type_definition_token1, + ACTIONS(2688), 1, + aux_sym_subprogram_body_token1, ACTIONS(2690), 1, - aux_sym_subprogram_body_token1, - STATE(1859), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2693), 1, + aux_sym_interface_type_definition_token1, + STATE(1509), 1, sym__defining_identifier_list, - STATE(419), 2, + STATE(426), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(809), 4, + STATE(816), 4, sym__declare_item, sym_object_declaration, sym_object_renaming_declaration, aux_sym_declare_expression_repeat1, - [38982] = 10, + [38722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2090), 1, - anon_sym_COLON_EQ, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1115), 1, - sym__assign_value, - STATE(1462), 1, - sym_aspect_specification, - ACTIONS(2692), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [39014] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2694), 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, - [39030] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2090), 1, - anon_sym_COLON_EQ, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1114), 1, - sym__assign_value, - STATE(1466), 1, - sym_aspect_specification, - ACTIONS(2696), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [39062] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2090), 1, - anon_sym_COLON_EQ, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1061), 1, - sym__assign_value, - STATE(1347), 1, - sym_aspect_specification, - ACTIONS(2698), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [39094] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2090), 1, - anon_sym_COLON_EQ, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1057), 1, - sym__assign_value, - STATE(1344), 1, - sym_aspect_specification, - ACTIONS(2700), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [39126] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2702), 1, + ACTIONS(2696), 1, sym_identifier, - ACTIONS(2704), 9, + ACTIONS(2698), 10, sym_string_literal, sym_character_literal, + sym_numeric_literal, sym_target_name, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACK, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [39144] = 2, + aux_sym_relation_membership_token1, + aux_sym_factor_abs_token1, + aux_sym_primary_null_token1, + aux_sym_allocator_token1, + [38741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2641), 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, - [39160] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2643), 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, - [39176] = 2, + ACTIONS(2700), 1, + sym_identifier, + ACTIONS(2702), 10, + sym_string_literal, + sym_character_literal, + sym_numeric_literal, + sym_target_name, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + aux_sym_factor_abs_token1, + aux_sym_primary_null_token1, + aux_sym_allocator_token1, + [38760] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(2704), 1, + sym_identifier, ACTIONS(2706), 10, + aux_sym_iterated_element_association_token1, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_case_expression_token1, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + [38779] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(1929), 1, + aux_sym_terminate_alternative_token1, + STATE(29), 1, + sym_accept_statement, + STATE(1243), 1, + sym_select_alternative, + STATE(31), 3, + sym__delay_statement, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(1157), 3, + sym_delay_alternative, + sym_accept_alternative, + sym_terminate_alternative, + [38808] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(1929), 1, + aux_sym_terminate_alternative_token1, + STATE(29), 1, + sym_accept_statement, + STATE(1101), 1, + sym_select_alternative, + STATE(31), 3, + sym__delay_statement, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(1157), 3, + sym_delay_alternative, + sym_accept_alternative, + sym_terminate_alternative, + [38837] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2655), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -47744,7 +47619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [39192] = 2, + [38853] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2708), 10, @@ -47758,357 +47633,444 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [39208] = 8, + [38869] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - ACTIONS(2228), 1, - aux_sym_iterator_filter_token1, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1285), 1, - sym_iterator_filter, - ACTIONS(2710), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [39235] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2090), 1, + ACTIONS(2102), 1, anon_sym_COLON_EQ, - ACTIONS(2197), 1, + ACTIONS(2214), 1, aux_sym_with_clause_token2, - ACTIONS(2712), 1, - anon_sym_SEMI, - STATE(259), 1, + STATE(262), 1, sym_actual_parameter_part, - STATE(1324), 1, + STATE(1094), 1, sym__assign_value, - STATE(1544), 1, + STATE(1371), 1, sym_aspect_specification, - [39266] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2228), 1, - aux_sym_iterator_filter_token1, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1252), 1, - sym_iterator_filter, - ACTIONS(2232), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [39293] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2228), 1, - aux_sym_iterator_filter_token1, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1283), 1, - sym_iterator_filter, - ACTIONS(2710), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [39320] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2228), 1, - aux_sym_iterator_filter_token1, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1232), 1, - sym_iterator_filter, - ACTIONS(2714), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [39347] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2090), 1, - anon_sym_COLON_EQ, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(2716), 1, + ACTIONS(2710), 2, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1296), 1, - sym__assign_value, - STATE(1569), 1, - sym_aspect_specification, - [39378] = 8, + [38901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2228), 1, - aux_sym_iterator_filter_token1, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1234), 1, - sym_iterator_filter, - ACTIONS(2714), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [39405] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2718), 1, - anon_sym_LPAREN, - ACTIONS(2720), 1, + ACTIONS(2712), 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, + [38917] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2102), 1, + anon_sym_COLON_EQ, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1057), 1, + sym__assign_value, + STATE(1434), 1, + sym_aspect_specification, + ACTIONS(2714), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [38949] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2659), 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, + [38965] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2102), 1, + anon_sym_COLON_EQ, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1135), 1, + sym__assign_value, + STATE(1394), 1, + sym_aspect_specification, + ACTIONS(2716), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [38997] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2718), 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, + [39013] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2102), 1, + anon_sym_COLON_EQ, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1108), 1, + sym__assign_value, + STATE(1473), 1, + sym_aspect_specification, + ACTIONS(2720), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [39045] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(2722), 1, - aux_sym_result_profile_token1, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1366), 1, - sym_formal_part, - STATE(1070), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [39434] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2090), 1, - anon_sym_COLON_EQ, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(2724), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1172), 1, - sym__assign_value, - STATE(1712), 1, - sym_aspect_specification, - [39465] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1957), 1, + sym_identifier, + ACTIONS(2724), 9, + sym_string_literal, + sym_character_literal, + sym_target_name, anon_sym_COMMA, - ACTIONS(2726), 1, - anon_sym_COLON, - ACTIONS(2729), 1, + anon_sym_RPAREN, + anon_sym_LBRACK, + aux_sym_iterator_filter_token1, anon_sym_SEMI, - ACTIONS(2731), 1, - aux_sym_object_renaming_declaration_token1, - STATE(1319), 1, - aux_sym__defining_identifier_list_repeat1, - ACTIONS(919), 4, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - [39490] = 8, + aux_sym_package_specification_token2, + [39063] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(941), 1, sym_tick, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - ACTIONS(2718), 1, + ACTIONS(2726), 1, anon_sym_LPAREN, - ACTIONS(2735), 1, + ACTIONS(2730), 1, aux_sym_package_specification_token2, - STATE(259), 1, + STATE(262), 1, sym_actual_parameter_part, - STATE(1069), 1, + STATE(1144), 1, sym_formal_part, - ACTIONS(2733), 3, + ACTIONS(2728), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_object_renaming_declaration_token1, - [39517] = 8, + [39090] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - ACTIONS(2228), 1, - aux_sym_iterator_filter_token1, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1245), 1, - sym_iterator_filter, - ACTIONS(2226), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [39544] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2740), 1, + ACTIONS(2735), 1, aux_sym_expression_token1, - STATE(259), 1, + STATE(262), 1, sym_actual_parameter_part, - STATE(973), 1, + STATE(977), 1, aux_sym__interface_list_repeat1, - ACTIONS(2738), 3, + ACTIONS(2733), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [39571] = 8, + [39117] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(941), 1, sym_tick, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - ACTIONS(2718), 1, + ACTIONS(2726), 1, anon_sym_LPAREN, - ACTIONS(2742), 1, + ACTIONS(2737), 1, aux_sym_package_specification_token2, - STATE(259), 1, + STATE(262), 1, sym_actual_parameter_part, - STATE(1069), 1, + STATE(1144), 1, sym_formal_part, - ACTIONS(2733), 3, + ACTIONS(2728), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_object_renaming_declaration_token1, - [39598] = 9, + [39144] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(941), 1, sym_tick, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - ACTIONS(2718), 1, + ACTIONS(2726), 1, anon_sym_LPAREN, - ACTIONS(2722), 1, - aux_sym_result_profile_token1, - ACTIONS(2745), 1, + ACTIONS(2740), 1, aux_sym_package_specification_token2, - STATE(259), 1, + ACTIONS(2742), 1, + aux_sym_result_profile_token1, + STATE(262), 1, sym_actual_parameter_part, - STATE(1366), 1, + STATE(1397), 1, sym_formal_part, - STATE(1070), 2, + STATE(1138), 2, sym__parameter_and_result_profile, sym_result_profile, - [39627] = 3, + [39173] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, - sym_identifier, - ACTIONS(2749), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [39643] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - ACTIONS(2197), 1, + ACTIONS(2102), 1, + anon_sym_COLON_EQ, + ACTIONS(2214), 1, aux_sym_with_clause_token2, - ACTIONS(2751), 1, + ACTIONS(2744), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1163), 1, + sym__assign_value, + STATE(1546), 1, + sym_aspect_specification, + [39204] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2726), 1, + anon_sym_LPAREN, + ACTIONS(2742), 1, + aux_sym_result_profile_token1, + ACTIONS(2746), 1, aux_sym_package_specification_token2, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1397), 1, + sym_formal_part, + STATE(1138), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [39233] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2230), 1, + aux_sym_iterator_filter_token1, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1335), 1, + sym_iterator_filter, + ACTIONS(2228), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [39260] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2230), 1, + aux_sym_iterator_filter_token1, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1275), 1, + sym_iterator_filter, + ACTIONS(2236), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [39287] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1941), 1, + anon_sym_COMMA, + ACTIONS(2748), 1, + anon_sym_COLON, + ACTIONS(2751), 1, + anon_sym_SEMI, ACTIONS(2753), 1, aux_sym_object_renaming_declaration_token1, - STATE(259), 1, + STATE(1160), 1, + aux_sym__defining_identifier_list_repeat1, + ACTIONS(921), 4, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON_EQ, + [39312] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2230), 1, + aux_sym_iterator_filter_token1, + STATE(262), 1, sym_actual_parameter_part, - STATE(1892), 1, + STATE(1306), 1, + sym_iterator_filter, + ACTIONS(2755), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [39339] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2230), 1, + aux_sym_iterator_filter_token1, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1303), 1, + sym_iterator_filter, + ACTIONS(2755), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [39366] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2102), 1, + anon_sym_COLON_EQ, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(2757), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1214), 1, + sym__assign_value, + STATE(1730), 1, sym_aspect_specification, - [39671] = 3, + [39397] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 1, - sym_identifier, - ACTIONS(2757), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2102), 1, + anon_sym_COLON_EQ, + ACTIONS(2214), 1, aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [39687] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(2759), 1, - sym_identifier, - ACTIONS(2761), 7, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1297), 1, + sym__assign_value, + STATE(1784), 1, + sym_aspect_specification, + [39428] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2230), 1, + aux_sym_iterator_filter_token1, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1278), 1, + sym_iterator_filter, + ACTIONS(2761), 3, aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [39703] = 3, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [39455] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2230), 1, + aux_sym_iterator_filter_token1, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1280), 1, + sym_iterator_filter, + ACTIONS(2761), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [39482] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2763), 1, @@ -48121,7 +48083,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [39719] = 3, + [39498] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2767), 1, @@ -48134,7 +48096,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [39735] = 3, + [39514] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2771), 1, @@ -48147,7 +48109,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [39751] = 3, + [39530] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2775), 1, @@ -48160,7 +48122,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [39767] = 3, + [39546] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2779), 1, @@ -48173,7 +48135,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [39783] = 3, + [39562] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2783), 1, @@ -48186,7 +48148,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [39799] = 3, + [39578] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2787), 1, @@ -48199,7 +48161,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [39815] = 3, + [39594] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2791), 1, @@ -48212,7 +48174,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [39831] = 3, + [39610] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2795), 1, @@ -48225,42 +48187,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [39847] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2718), 1, - anon_sym_LPAREN, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1069), 1, - sym_formal_part, - ACTIONS(2733), 3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - [39871] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2718), 1, - anon_sym_LPAREN, - ACTIONS(2722), 1, - aux_sym_result_profile_token1, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1366), 1, - sym_formal_part, - STATE(1070), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [39897] = 3, + [39626] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2799), 1, @@ -48273,7 +48200,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [39913] = 3, + [39642] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2803), 1, @@ -48286,7 +48213,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [39929] = 3, + [39658] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2807), 1, @@ -48299,7 +48226,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [39945] = 3, + [39674] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2811), 1, @@ -48312,7 +48239,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [39961] = 3, + [39690] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2815), 1, @@ -48325,30 +48252,76 @@ 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, - [39977] = 8, + [39706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(2819), 1, + sym_identifier, + ACTIONS(2821), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [39722] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - ACTIONS(2821), 1, - aux_sym_with_clause_token2, - ACTIONS(2824), 1, - aux_sym_expression_token1, - STATE(259), 1, + STATE(262), 1, sym_actual_parameter_part, - ACTIONS(2819), 2, + ACTIONS(2823), 4, anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token1, aux_sym_expression_token3, - [40003] = 3, + [39744] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2826), 1, + ACTIONS(941), 1, + sym_tick, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2726), 1, + anon_sym_LPAREN, + ACTIONS(2742), 1, + aux_sym_result_profile_token1, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1397), 1, + sym_formal_part, + STATE(1138), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [39770] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2726), 1, + anon_sym_LPAREN, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1144), 1, + sym_formal_part, + ACTIONS(2728), 3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + [39794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2825), 1, sym_identifier, - ACTIONS(2828), 7, + ACTIONS(2827), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48356,12 +48329,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, - [40019] = 3, + [39810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2830), 1, + ACTIONS(2829), 1, sym_identifier, - ACTIONS(2832), 7, + ACTIONS(2831), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48369,12 +48342,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, - [40035] = 3, + [39826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2834), 1, + ACTIONS(2833), 1, sym_identifier, - ACTIONS(2836), 7, + ACTIONS(2835), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48382,12 +48355,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, - [40051] = 3, + [39842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2838), 1, + ACTIONS(2837), 1, sym_identifier, - ACTIONS(2840), 7, + ACTIONS(2839), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48395,12 +48368,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, - [40067] = 3, + [39858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(2841), 1, sym_identifier, - ACTIONS(2844), 7, + ACTIONS(2843), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48408,12 +48381,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [40083] = 3, + [39874] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2846), 1, + ACTIONS(2845), 1, + anon_sym_LPAREN, + ACTIONS(2847), 1, + anon_sym_LBRACK, + ACTIONS(2849), 1, + aux_sym_record_component_association_list_token1, + STATE(1547), 1, + sym_enumeration_aggregate, + STATE(1510), 4, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [39896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2851), 1, sym_identifier, - ACTIONS(2848), 7, + ACTIONS(2853), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48421,69 +48410,66 @@ 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, - [40099] = 3, + [39912] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2850), 1, - sym_identifier, - ACTIONS(2852), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [40115] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2854), 1, - sym_identifier, - ACTIONS(2856), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [40131] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - ACTIONS(2860), 1, - aux_sym_with_clause_token2, - ACTIONS(2863), 1, - aux_sym_expression_token1, - STATE(259), 1, + ACTIONS(2102), 1, + anon_sym_COLON_EQ, + STATE(262), 1, sym_actual_parameter_part, - ACTIONS(2858), 2, + STATE(1403), 1, + sym__assign_value, + ACTIONS(2855), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [39938] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2859), 1, + aux_sym_with_clause_token2, + ACTIONS(2862), 1, + aux_sym_expression_token1, + STATE(262), 1, + sym_actual_parameter_part, + ACTIONS(2857), 2, anon_sym_SEMI, aux_sym_expression_token3, - [40157] = 3, + [39964] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 1, - sym_identifier, - ACTIONS(2867), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2866), 1, aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [40173] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(2869), 1, + aux_sym_expression_token1, + STATE(262), 1, + sym_actual_parameter_part, + ACTIONS(2864), 2, + anon_sym_SEMI, + aux_sym_expression_token3, + [39990] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2871), 7, + ACTIONS(2873), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48491,75 +48477,65 @@ 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, - [40189] = 3, + [40006] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2873), 1, - sym_identifier, - ACTIONS(2875), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [40205] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2877), 1, - sym_identifier, - ACTIONS(2879), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [40221] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2881), 1, - sym_identifier, - ACTIONS(2883), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [40237] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2885), 1, - sym_identifier, - ACTIONS(2887), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [40253] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - STATE(259), 1, - sym_actual_parameter_part, - ACTIONS(2889), 4, - anon_sym_SEMI, + ACTIONS(2214), 1, aux_sym_with_clause_token2, - aux_sym_expression_token1, - aux_sym_expression_token3, - [40275] = 3, + ACTIONS(2875), 1, + aux_sym_package_specification_token2, + ACTIONS(2877), 1, + aux_sym_object_renaming_declaration_token1, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1601), 1, + sym_aspect_specification, + [40034] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2879), 1, + sym_identifier, + ACTIONS(2881), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [40050] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2883), 1, + sym_identifier, + ACTIONS(2885), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [40066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2887), 1, + sym_identifier, + ACTIONS(2889), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [40082] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2891), 1, @@ -48572,7 +48548,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [40291] = 3, + [40098] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2895), 1, @@ -48585,7 +48561,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [40307] = 3, + [40114] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2899), 1, @@ -48598,48 +48574,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, - [40323] = 8, + [40130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2090), 1, - anon_sym_COLON_EQ, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1453), 1, - sym__assign_value, - ACTIONS(2903), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [40349] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2090), 1, - anon_sym_COLON_EQ, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1401), 1, - sym__assign_value, - ACTIONS(2905), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [40375] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2907), 1, + ACTIONS(2903), 1, sym_identifier, - ACTIONS(2909), 7, + ACTIONS(2905), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48647,41 +48587,69 @@ 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, - [40391] = 6, + [40146] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2911), 1, - anon_sym_LPAREN, - ACTIONS(2913), 1, - anon_sym_LBRACK, - ACTIONS(2915), 1, - aux_sym_record_component_association_list_token1, - STATE(1899), 1, - sym_enumeration_aggregate, - STATE(1901), 4, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [40413] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - ACTIONS(2919), 1, + ACTIONS(2909), 1, aux_sym_with_clause_token2, - ACTIONS(2922), 1, + ACTIONS(2912), 1, aux_sym_expression_token1, - STATE(259), 1, + STATE(262), 1, sym_actual_parameter_part, - ACTIONS(2917), 2, + ACTIONS(2907), 2, anon_sym_SEMI, aux_sym_expression_token3, - [40439] = 3, + [40172] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2102), 1, + anon_sym_COLON_EQ, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1450), 1, + sym__assign_value, + ACTIONS(2914), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [40198] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2916), 1, + sym_identifier, + ACTIONS(2918), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [40214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + sym_identifier, + ACTIONS(2922), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [40230] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2924), 1, @@ -48694,7 +48662,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [40455] = 3, + [40246] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2928), 1, @@ -48707,7 +48675,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [40471] = 3, + [40262] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2932), 1, @@ -48720,402 +48688,281 @@ 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, - [40487] = 3, + [40278] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2936), 1, - sym_tick, - ACTIONS(1978), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [40502] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2197), 1, + sym_identifier, + ACTIONS(2938), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, aux_sym_with_clause_token2, - ACTIONS(2938), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1648), 1, - sym_aspect_specification, - [40527] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2940), 7, - aux_sym_iterated_element_association_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, + aux_sym_use_clause_token2, aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [40540] = 8, + aux_sym_pragma_g_token1, + [40294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2197), 1, + ACTIONS(2940), 1, + sym_identifier, + ACTIONS(2942), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, aux_sym_with_clause_token2, - ACTIONS(2942), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1587), 1, - sym_aspect_specification, - [40565] = 8, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [40310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, ACTIONS(2944), 1, - anon_sym_LPAREN, - ACTIONS(2946), 1, - aux_sym_iterator_filter_token1, - STATE(1110), 1, - sym_non_empty_entry_body_formal_part, - STATE(1454), 1, - sym_aspect_specification, - STATE(1455), 1, - sym_formal_part, - STATE(1501), 1, - sym_entry_barrier, - [40590] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1189), 1, - aux_sym__name_list_repeat1, - ACTIONS(2948), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [40613] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2197), 1, + sym_identifier, + ACTIONS(2946), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, aux_sym_with_clause_token2, - ACTIONS(2950), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1572), 1, - sym_aspect_specification, - [40638] = 8, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [40326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(2948), 1, + sym_identifier, + ACTIONS(2950), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [40342] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - ACTIONS(2197), 1, + ACTIONS(2214), 1, aux_sym_with_clause_token2, ACTIONS(2952), 1, anon_sym_SEMI, - STATE(259), 1, + STATE(262), 1, sym_actual_parameter_part, - STATE(1573), 1, + STATE(1833), 1, sym_aspect_specification, - [40663] = 8, + [40367] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - ACTIONS(2197), 1, + ACTIONS(2214), 1, aux_sym_with_clause_token2, ACTIONS(2954), 1, - aux_sym_package_specification_token2, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1892), 1, - sym_aspect_specification, - [40688] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(2956), 1, anon_sym_SEMI, - STATE(259), 1, + STATE(262), 1, sym_actual_parameter_part, - STATE(1776), 1, + STATE(1698), 1, sym_aspect_specification, - [40713] = 8, + [40392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(2956), 7, + aux_sym_iterated_element_association_token1, + aux_sym_package_specification_token3, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + [40405] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - ACTIONS(2197), 1, + ACTIONS(2214), 1, aux_sym_with_clause_token2, ACTIONS(2958), 1, - aux_sym_package_specification_token2, - STATE(259), 1, + anon_sym_SEMI, + STATE(262), 1, sym_actual_parameter_part, - STATE(1890), 1, + STATE(1875), 1, sym_aspect_specification, - [40738] = 8, + [40430] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - ACTIONS(2197), 1, + ACTIONS(2214), 1, aux_sym_with_clause_token2, ACTIONS(2960), 1, - anon_sym_SEMI, - STATE(259), 1, + aux_sym_package_specification_token2, + STATE(262), 1, sym_actual_parameter_part, - STATE(1811), 1, + STATE(1606), 1, sym_aspect_specification, - [40763] = 8, + [40455] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, ACTIONS(2962), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1655), 1, - sym_aspect_specification, - [40788] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2964), 7, - aux_sym_iterated_element_association_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [40801] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1925), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2966), 1, - aux_sym_package_specification_token1, - STATE(1796), 1, - sym_package_specification, - STATE(1173), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - [40822] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2968), 7, - aux_sym_iterated_element_association_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [40835] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2197), 1, + ACTIONS(2964), 1, + anon_sym_SEMI, + ACTIONS(2966), 1, + aux_sym_package_specification_token2, + ACTIONS(2968), 1, + aux_sym_expression_token3, + STATE(1221), 3, + sym__discriminant_part, + sym_unknown_discriminant_part, + sym_known_discriminant_part, + [40476] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, aux_sym_with_clause_token2, ACTIONS(2970), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1588), 1, + anon_sym_LPAREN, + ACTIONS(2972), 1, + aux_sym_iterator_filter_token1, + STATE(1103), 1, + sym_non_empty_entry_body_formal_part, + STATE(1463), 1, sym_aspect_specification, - [40860] = 6, + STATE(1465), 1, + sym_formal_part, + STATE(1571), 1, + sym_entry_barrier, + [40501] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - STATE(259), 1, - sym_actual_parameter_part, - ACTIONS(2972), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [40881] = 6, - ACTIONS(3), 1, - sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, ACTIONS(2974), 1, - aux_sym_chunk_specification_token1, - ACTIONS(2976), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(2979), 1, - anon_sym_COLON, - ACTIONS(2981), 1, - aux_sym_iterator_specification_token1, - ACTIONS(919), 3, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - [40902] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2983), 1, - anon_sym_COMMA, - ACTIONS(2985), 1, anon_sym_SEMI, - STATE(259), 1, + STATE(262), 1, sym_actual_parameter_part, - STATE(1282), 1, - aux_sym__name_list_repeat1, - [40927] = 8, + STATE(1765), 1, + sym_aspect_specification, + [40526] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - ACTIONS(2197), 1, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(2976), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1757), 1, + sym_aspect_specification, + [40551] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2978), 1, + aux_sym_chunk_specification_token1, + ACTIONS(2980), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(2983), 1, + anon_sym_COLON, + ACTIONS(2985), 1, + aux_sym_iterator_specification_token1, + ACTIONS(921), 3, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + [40572] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2214), 1, aux_sym_with_clause_token2, ACTIONS(2987), 1, anon_sym_SEMI, - STATE(259), 1, + STATE(262), 1, sym_actual_parameter_part, - STATE(1908), 1, + STATE(1590), 1, sym_aspect_specification, - [40952] = 8, + [40597] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - ACTIONS(2197), 1, + ACTIONS(2214), 1, aux_sym_with_clause_token2, ACTIONS(2989), 1, anon_sym_SEMI, - STATE(259), 1, + STATE(262), 1, sym_actual_parameter_part, - STATE(1873), 1, + STATE(1569), 1, sym_aspect_specification, - [40977] = 8, + [40622] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - ACTIONS(2948), 1, - anon_sym_SEMI, - ACTIONS(2983), 1, - anon_sym_COMMA, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1302), 1, - aux_sym__name_list_repeat1, - [41002] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2197), 1, + ACTIONS(2214), 1, aux_sym_with_clause_token2, ACTIONS(2991), 1, anon_sym_SEMI, - STATE(259), 1, + STATE(262), 1, sym_actual_parameter_part, - STATE(1635), 1, + STATE(1813), 1, sym_aspect_specification, - [41027] = 8, + [40647] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(2993), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1696), 1, - sym_aspect_specification, - [41052] = 2, + ACTIONS(2993), 7, + aux_sym_iterated_element_association_token1, + aux_sym_package_specification_token3, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + [40660] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2995), 7, @@ -49126,59 +48973,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, - [41065] = 8, + [40673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(2997), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1528), 1, - sym_aspect_specification, - [41090] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - anon_sym_SEMI, - ACTIONS(3003), 1, - aux_sym_package_specification_token2, - ACTIONS(3005), 1, - aux_sym_expression_token3, - STATE(1274), 3, - sym__discriminant_part, - sym_unknown_discriminant_part, - sym_known_discriminant_part, - [41111] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3007), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - STATE(1788), 1, - sym_aspect_specification, - [41136] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3009), 7, + ACTIONS(2997), 7, aux_sym_iterated_element_association_token1, aux_sym_package_specification_token3, aux_sym_relation_membership_token1, @@ -49186,2046 +48984,2224 @@ 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, - [41149] = 8, + [40686] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - ACTIONS(2197), 1, + ACTIONS(2214), 1, aux_sym_with_clause_token2, - ACTIONS(3011), 1, + ACTIONS(2999), 1, anon_sym_SEMI, - STATE(259), 1, + STATE(262), 1, sym_actual_parameter_part, - STATE(1646), 1, + STATE(1930), 1, sym_aspect_specification, - [41174] = 8, + [40711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(3001), 7, + aux_sym_iterated_element_association_token1, + aux_sym_package_specification_token3, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + [40724] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - ACTIONS(2197), 1, + ACTIONS(3003), 1, + anon_sym_COMMA, + ACTIONS(3005), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1187), 1, + aux_sym__name_list_repeat1, + [40749] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_COMMA, + ACTIONS(3007), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1155), 1, + aux_sym__name_list_repeat1, + [40774] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3009), 1, + aux_sym_package_specification_token2, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1601), 1, + sym_aspect_specification, + [40799] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + STATE(262), 1, + sym_actual_parameter_part, + ACTIONS(3011), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [40820] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2214), 1, aux_sym_with_clause_token2, ACTIONS(3013), 1, anon_sym_SEMI, - STATE(259), 1, + STATE(262), 1, sym_actual_parameter_part, - STATE(1647), 1, + STATE(1705), 1, sym_aspect_specification, - [41199] = 7, + [40845] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, ACTIONS(3015), 1, - aux_sym_compilation_unit_token1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1616), 1, + sym_aspect_specification, + [40870] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1331), 1, + aux_sym__name_list_repeat1, + ACTIONS(3007), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [40893] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, ACTIONS(3017), 1, - aux_sym_with_clause_token1, - ACTIONS(3019), 1, - aux_sym_allocator_token1, - ACTIONS(3021), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(3023), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(3025), 1, - aux_sym_private_extension_declaration_token1, - [41221] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3027), 1, - anon_sym_COMMA, - STATE(930), 1, - aux_sym_aspect_mark_list_repeat1, - ACTIONS(3029), 4, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, anon_sym_SEMI, - aux_sym_package_specification_token2, - [41237] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2090), 1, - anon_sym_COLON_EQ, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - STATE(1123), 1, - sym__assign_value, - STATE(1464), 1, - sym_aspect_specification, - ACTIONS(3031), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [41257] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3033), 1, - anon_sym_COMMA, - ACTIONS(3035), 1, - anon_sym_RBRACK, - ACTIONS(3039), 1, - aux_sym_with_clause_token2, - STATE(1338), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3037), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [41277] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3041), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3043), 1, - anon_sym_SEMI, - STATE(259), 1, + STATE(262), 1, sym_actual_parameter_part, - [41299] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3027), 1, - anon_sym_COMMA, - STATE(940), 1, - aux_sym_aspect_mark_list_repeat1, - ACTIONS(3045), 4, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [41315] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3047), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [41327] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(231), 1, - aux_sym_chunk_specification_token1, - ACTIONS(251), 1, - aux_sym_global_mode_token1, - ACTIONS(253), 1, - aux_sym_non_empty_mode_token1, - STATE(687), 1, - sym_global_mode, - STATE(825), 1, - sym_non_empty_mode, - STATE(1400), 1, - sym_global_aspect_element, - [41349] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1921), 1, - sym_identifier, - ACTIONS(3049), 1, - aux_sym_iterated_element_association_token1, - STATE(1196), 1, - sym_parameter_specification, - STATE(1659), 1, - sym_entry_index_specification, - STATE(1871), 1, - sym__parameter_specification_list, - STATE(1872), 1, - sym__defining_identifier_list, - [41371] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3051), 1, - anon_sym_LPAREN, - ACTIONS(3053), 1, - anon_sym_SEMI, - ACTIONS(3055), 1, - aux_sym_package_specification_token2, - STATE(1091), 1, - sym_known_discriminant_part, - STATE(1410), 1, - sym_aspect_specification, - [41393] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1899), 1, - sym_identifier, - ACTIONS(1901), 5, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_attribute_designator_token1, - [41407] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2090), 1, - anon_sym_COLON_EQ, - STATE(1008), 1, - sym_actual_parameter_part, - STATE(1780), 1, - sym__assign_value, - [41429] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3057), 1, - anon_sym_COMMA, - ACTIONS(3059), 1, - anon_sym_RPAREN, - ACTIONS(3061), 1, - aux_sym_with_clause_token2, - STATE(1477), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3037), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [41449] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3063), 1, - sym_identifier, - STATE(1180), 1, - sym_quantifier, - ACTIONS(3065), 2, - aux_sym_use_clause_token1, - aux_sym_quantifier_token1, - STATE(1488), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - [41467] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1925), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(3067), 1, - aux_sym_package_specification_token1, - STATE(1106), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - [41485] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3069), 1, - anon_sym_COMMA, - STATE(940), 1, - aux_sym_aspect_mark_list_repeat1, - ACTIONS(3072), 4, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [41501] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3076), 1, - anon_sym_EQ_GT, - ACTIONS(3074), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [41515] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3078), 1, - sym_identifier, - ACTIONS(3080), 5, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - [41529] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3082), 1, - anon_sym_SEMI, - ACTIONS(3084), 1, - aux_sym_with_clause_token2, - STATE(259), 1, - sym_actual_parameter_part, - [41551] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3057), 1, - anon_sym_COMMA, - ACTIONS(3061), 1, - aux_sym_with_clause_token2, - ACTIONS(3086), 1, - anon_sym_RPAREN, - STATE(1477), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3037), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [41571] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - aux_sym_primary_null_token1, - ACTIONS(1789), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3015), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3088), 1, - anon_sym_SEMI, - ACTIONS(3090), 1, - aux_sym_with_clause_token1, - STATE(1426), 1, - sym_record_definition, - [41593] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3092), 1, - sym_identifier, - ACTIONS(3094), 5, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_package_specification_token3, - [41607] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - STATE(259), 1, - sym_actual_parameter_part, - ACTIONS(3096), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [41627] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3098), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3101), 1, - aux_sym_package_specification_token3, - ACTIONS(3103), 1, - aux_sym_pragma_g_token1, - STATE(948), 3, - sym_exception_handler, - aux_sym__exception_handler_list, - sym_pragma_g, - [41645] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3106), 1, - sym_identifier, - ACTIONS(3108), 5, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - [41659] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_iteration_scheme_token1, - ACTIONS(317), 1, - aux_sym_subprogram_body_token1, - ACTIONS(331), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(3110), 1, - aux_sym_declare_expression_token1, - ACTIONS(3112), 1, - aux_sym_loop_statement_token1, - STATE(1800), 1, - sym_iteration_scheme, - [41681] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - STATE(259), 1, - sym_actual_parameter_part, - ACTIONS(3114), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [41701] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3116), 1, - sym_identifier, - ACTIONS(3118), 5, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_package_specification_token3, - [41715] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3120), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(3122), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(3124), 1, - aux_sym_entry_declaration_token1, - STATE(1024), 1, - sym__subprogram_specification, - STATE(1071), 1, - sym_procedure_specification, - STATE(1072), 1, - sym_function_specification, - [41737] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2315), 1, - aux_sym_case_expression_token1, - ACTIONS(3126), 1, - sym_identifier, - STATE(1472), 1, - sym_variant_part, - ACTIONS(3128), 3, - aux_sym_iterated_element_association_token1, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [41755] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3130), 1, - anon_sym_SEMI, - ACTIONS(3132), 1, - aux_sym_with_clause_token2, - STATE(259), 1, - sym_actual_parameter_part, - [41777] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3134), 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, - [41789] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2729), 1, - anon_sym_SEMI, - ACTIONS(3136), 1, - anon_sym_COLON, - ACTIONS(919), 4, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - [41805] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3138), 1, - anon_sym_SEMI, - ACTIONS(3140), 1, - aux_sym_package_specification_token2, - STATE(1379), 1, - sym_known_discriminant_part, - STATE(1405), 2, - sym__discriminant_part, - sym_unknown_discriminant_part, - [41825] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - aux_sym_primary_null_token1, - ACTIONS(1789), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3015), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3142), 1, - aux_sym_allocator_token1, - ACTIONS(3144), 1, - aux_sym_interface_type_definition_token2, - STATE(1426), 1, - sym_record_definition, - [41847] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1925), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(3124), 1, - aux_sym_entry_declaration_token1, - STATE(1067), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - [41865] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(3146), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3148), 1, - aux_sym_package_specification_token3, - STATE(948), 3, - sym_exception_handler, - aux_sym__exception_handler_list, - sym_pragma_g, - [41883] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3150), 1, - anon_sym_COLON, - ACTIONS(919), 5, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - [41897] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2067), 5, - aux_sym_iterated_element_association_token1, - aux_sym_subprogram_body_token1, - aux_sym_declare_expression_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - [41908] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1925), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1071), 1, - sym_procedure_specification, - STATE(1072), 1, - sym_function_specification, - STATE(1113), 1, - sym__subprogram_specification, - [41927] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3033), 1, - anon_sym_COMMA, - ACTIONS(3035), 1, - anon_sym_RBRACK, - STATE(1338), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3037), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [41944] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - aux_sym_primary_null_token1, - ACTIONS(1789), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3152), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3154), 1, - aux_sym_with_clause_token1, - STATE(1465), 1, - sym_record_definition, - [41963] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3156), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - [41982] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3158), 1, - sym_tick, - ACTIONS(3160), 1, - aux_sym_iterated_element_association_token2, - STATE(259), 1, - sym_actual_parameter_part, - [42001] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2639), 1, - anon_sym_LPAREN, - ACTIONS(2722), 1, - aux_sym_result_profile_token1, - STATE(1366), 1, - sym_formal_part, - STATE(1255), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [42018] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2639), 1, - anon_sym_LPAREN, - STATE(1255), 1, - sym_formal_part, - ACTIONS(3162), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [42033] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3164), 1, - anon_sym_RPAREN, - ACTIONS(3166), 1, - aux_sym_expression_token4, - ACTIONS(3168), 1, - aux_sym_elsif_expression_item_token1, - STATE(1026), 2, - sym_elsif_expression_item, - aux_sym_if_expression_repeat1, - [42050] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3168), 1, - aux_sym_elsif_expression_item_token1, - ACTIONS(3170), 1, - anon_sym_RPAREN, - ACTIONS(3172), 1, - aux_sym_expression_token4, - STATE(971), 2, - sym_elsif_expression_item, - aux_sym_if_expression_repeat1, - [42067] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2740), 1, - aux_sym_expression_token1, - STATE(985), 1, - aux_sym__interface_list_repeat1, - ACTIONS(3174), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [42082] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3176), 1, - aux_sym_at_clause_token1, - STATE(259), 1, - sym_actual_parameter_part, - [42101] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3178), 1, - anon_sym_LPAREN, - ACTIONS(3180), 1, - anon_sym_SEMI, - STATE(1187), 1, - sym_formal_part, - STATE(1942), 1, - sym_aspect_specification, - [42120] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3182), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - [42139] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2729), 1, - anon_sym_SEMI, - ACTIONS(919), 4, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - [42152] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3184), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - [42171] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2090), 1, - anon_sym_COLON_EQ, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3186), 1, - anon_sym_SEMI, - STATE(1297), 1, - sym__assign_value, - STATE(1570), 1, - sym_aspect_specification, - [42190] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3188), 1, - aux_sym_package_specification_token2, - ACTIONS(919), 4, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - aux_sym_with_clause_token2, - [42203] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3191), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - [42222] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3193), 1, - aux_sym_object_renaming_declaration_token1, - STATE(259), 1, - sym_actual_parameter_part, - [42241] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3195), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - [42260] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3197), 1, - aux_sym_object_renaming_declaration_token1, - STATE(259), 1, - sym_actual_parameter_part, - [42279] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3199), 1, - aux_sym_expression_token1, - STATE(985), 1, - aux_sym__interface_list_repeat1, - ACTIONS(2889), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [42294] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3202), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - [42313] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - aux_sym_primary_null_token1, - ACTIONS(1789), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3144), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(3204), 1, - aux_sym_allocator_token1, - STATE(1426), 1, - sym_record_definition, - [42332] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3206), 1, - aux_sym_package_specification_token3, - ACTIONS(3208), 1, - aux_sym_expression_token4, - ACTIONS(3210), 1, - aux_sym_elsif_expression_item_token1, - STATE(1050), 2, - sym_elsif_statement_item, - aux_sym_if_statement_repeat1, - [42349] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3212), 1, - anon_sym_SEMI, - ACTIONS(3214), 1, - aux_sym_package_specification_token2, - ACTIONS(3216), 1, - aux_sym_object_renaming_declaration_token1, - STATE(1777), 1, - sym_aspect_specification, - [42368] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3218), 1, - aux_sym_object_renaming_declaration_token1, - STATE(259), 1, - sym_actual_parameter_part, - [42387] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3220), 1, - anon_sym_RPAREN, - STATE(259), 1, - sym_actual_parameter_part, - [42406] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3120), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(3122), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1001), 1, - sym__subprogram_specification, - STATE(1071), 1, - sym_procedure_specification, - STATE(1072), 1, - sym_function_specification, - [42425] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3222), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - [42444] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3224), 1, - aux_sym_object_renaming_declaration_token1, - STATE(259), 1, - sym_actual_parameter_part, - [42463] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3226), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - [42482] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2090), 1, - anon_sym_COLON_EQ, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3228), 1, - anon_sym_SEMI, - STATE(1151), 1, - sym__assign_value, - STATE(1631), 1, - sym_aspect_specification, - [42501] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3230), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [42512] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2228), 1, - aux_sym_iterator_filter_token1, - STATE(1250), 1, - sym_iterator_filter, - ACTIONS(3232), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [42527] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3234), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - [42546] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - STATE(1827), 1, - sym_delay_alternative, - STATE(31), 3, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - [42561] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3236), 1, - anon_sym_SEMI, - ACTIONS(3238), 1, - aux_sym_package_specification_token2, - ACTIONS(3240), 1, - aux_sym_object_renaming_declaration_token1, - STATE(1633), 1, - sym_aspect_specification, - [42580] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2228), 1, - aux_sym_iterator_filter_token1, - STATE(1238), 1, - sym_iterator_filter, - ACTIONS(3242), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [42595] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3244), 1, - sym_identifier, - ACTIONS(3246), 1, - anon_sym_LT_GT, - STATE(1217), 1, - sym_discriminant_specification, - STATE(1886), 1, - sym_discriminant_specification_list, - STATE(1887), 1, - sym__defining_identifier_list, - [42614] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3248), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - [42633] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3120), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(3122), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1024), 1, - sym__subprogram_specification, - STATE(1071), 1, - sym_procedure_specification, - STATE(1072), 1, - sym_function_specification, - [42652] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3250), 1, - aux_sym_object_renaming_declaration_token1, - STATE(259), 1, - sym_actual_parameter_part, - [42671] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3252), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - [42690] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3254), 1, - anon_sym_SEMI, - ACTIONS(895), 4, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - [42703] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3256), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - [42722] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2090), 1, - anon_sym_COLON_EQ, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3258), 1, - anon_sym_SEMI, - STATE(1243), 1, - sym__assign_value, - STATE(1674), 1, - sym_aspect_specification, - [42741] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1925), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1927), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1188), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - [42756] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3260), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - [42775] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2639), 1, - anon_sym_LPAREN, - ACTIONS(2722), 1, - aux_sym_result_profile_token1, - STATE(1366), 1, - sym_formal_part, - STATE(827), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [42792] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(2639), 1, - anon_sym_LPAREN, - ACTIONS(3262), 1, - anon_sym_SEMI, - STATE(1257), 1, - sym_formal_part, - STATE(1590), 1, - sym_aspect_specification, - [42811] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2639), 1, - anon_sym_LPAREN, - ACTIONS(2722), 1, - aux_sym_result_profile_token1, - STATE(1366), 1, - sym_formal_part, - STATE(821), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [42828] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3264), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - [42847] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2090), 1, - anon_sym_COLON_EQ, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3266), 1, - anon_sym_SEMI, - STATE(1295), 1, - sym__assign_value, - STATE(1683), 1, - sym_aspect_specification, - [42866] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2090), 1, - anon_sym_COLON_EQ, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3268), 1, - anon_sym_SEMI, - STATE(1279), 1, - sym__assign_value, - STATE(1687), 1, - sym_aspect_specification, - [42885] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2090), 1, - anon_sym_COLON_EQ, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3270), 1, - anon_sym_SEMI, - STATE(1175), 1, - sym__assign_value, - STATE(1711), 1, - sym_aspect_specification, - [42904] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2399), 1, - aux_sym_range_attribute_designator_token1, - STATE(259), 1, - sym_actual_parameter_part, - [42923] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3272), 1, - anon_sym_RPAREN, - STATE(259), 1, - sym_actual_parameter_part, - [42942] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3274), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - [42961] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3276), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - [42980] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3236), 1, - anon_sym_SEMI, - ACTIONS(3240), 1, - aux_sym_object_renaming_declaration_token1, - ACTIONS(3278), 1, - aux_sym_package_specification_token2, - STATE(1425), 1, - sym_aspect_specification, - [42999] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3280), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [43010] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3284), 1, - aux_sym_elsif_expression_item_token1, - ACTIONS(3282), 2, - anon_sym_RPAREN, - aux_sym_expression_token4, - STATE(1026), 2, - sym_elsif_expression_item, - aux_sym_if_expression_repeat1, - [43025] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3287), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_actual_parameter_part, - [43044] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3289), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [43055] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2090), 1, - anon_sym_COLON_EQ, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3291), 1, - anon_sym_SEMI, - STATE(1326), 1, - sym__assign_value, - STATE(1536), 1, - sym_aspect_specification, - [43074] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2090), 1, - anon_sym_COLON_EQ, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3293), 1, - anon_sym_SEMI, - STATE(1328), 1, - sym__assign_value, - STATE(1540), 1, - sym_aspect_specification, - [43093] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3051), 1, - anon_sym_LPAREN, - ACTIONS(3295), 1, - aux_sym_package_specification_token2, - STATE(1198), 1, - sym_known_discriminant_part, - STATE(1877), 1, - sym_aspect_specification, - [43112] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(2639), 1, - anon_sym_LPAREN, - ACTIONS(3297), 1, - anon_sym_SEMI, - STATE(1254), 1, - sym_formal_part, STATE(1589), 1, sym_aspect_specification, - [43131] = 5, + [40918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2639), 1, - anon_sym_LPAREN, - ACTIONS(2722), 1, - aux_sym_result_profile_token1, - STATE(1366), 1, - sym_formal_part, - STATE(826), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [43148] = 6, + ACTIONS(3019), 1, + sym_tick, + ACTIONS(1986), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [40933] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - ACTIONS(3299), 1, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3021), 1, anon_sym_SEMI, - STATE(259), 1, + STATE(262), 1, sym_actual_parameter_part, - [43167] = 6, + STATE(1851), 1, + sym_aspect_specification, + [40958] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - ACTIONS(3301), 1, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3023), 1, anon_sym_SEMI, - STATE(259), 1, + STATE(262), 1, sym_actual_parameter_part, - [43186] = 2, + STATE(1605), 1, + sym_aspect_specification, + [40983] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3025), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1607), 1, + sym_aspect_specification, + [41008] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1937), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1939), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(3027), 1, + aux_sym_package_specification_token1, + STATE(1863), 1, + sym_package_specification, + STATE(1234), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + [41029] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3029), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + STATE(1609), 1, + sym_aspect_specification, + [41054] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1937), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1939), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(3031), 1, + aux_sym_package_specification_token1, + STATE(1081), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + [41072] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2751), 1, + anon_sym_SEMI, + ACTIONS(3033), 1, + anon_sym_COLON, + ACTIONS(921), 4, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON_EQ, + [41088] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3035), 1, + anon_sym_COLON, + ACTIONS(921), 5, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + [41102] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + STATE(262), 1, + sym_actual_parameter_part, + ACTIONS(3037), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [41122] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3039), 1, + sym_identifier, + STATE(1223), 1, + sym_quantifier, + ACTIONS(3041), 2, + aux_sym_use_clause_token1, + aux_sym_quantifier_token1, + STATE(1477), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [41140] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3043), 1, + anon_sym_COMMA, + STATE(932), 1, + aux_sym_aspect_mark_list_repeat1, + ACTIONS(3046), 4, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [41156] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3048), 1, + anon_sym_COMMA, + ACTIONS(3050), 1, + anon_sym_RBRACK, + ACTIONS(3054), 1, + aux_sym_with_clause_token2, + STATE(1184), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3052), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [41176] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2331), 1, + aux_sym_case_expression_token1, + ACTIONS(3056), 1, + sym_identifier, + STATE(1467), 1, + sym_variant_part, + ACTIONS(3058), 3, + aux_sym_iterated_element_association_token1, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [41194] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3060), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [41206] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + aux_sym_primary_null_token1, + ACTIONS(1789), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3062), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3064), 1, + aux_sym_allocator_token1, + ACTIONS(3066), 1, + aux_sym_interface_type_definition_token2, + STATE(1354), 1, + sym_record_definition, + [41228] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3068), 1, + sym_identifier, + ACTIONS(3070), 5, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_package_specification_token3, + [41242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3074), 1, + anon_sym_EQ_GT, ACTIONS(3072), 5, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [43197] = 4, + [41256] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3076), 1, + anon_sym_COMMA, + ACTIONS(3078), 1, + anon_sym_RPAREN, + ACTIONS(3080), 1, + aux_sym_with_clause_token2, + STATE(1486), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3052), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [41276] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3082), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(3084), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(3086), 1, + aux_sym_entry_declaration_token1, + STATE(1040), 1, + sym__subprogram_specification, + STATE(1128), 1, + sym_procedure_specification, + STATE(1136), 1, + sym_function_specification, + [41298] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + aux_sym_iteration_scheme_token1, + ACTIONS(319), 1, + aux_sym_subprogram_body_token1, + ACTIONS(333), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(3088), 1, + aux_sym_declare_expression_token1, + ACTIONS(3090), 1, + aux_sym_loop_statement_token1, + STATE(1821), 1, + sym_iteration_scheme, + [41320] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + aux_sym_primary_null_token1, + ACTIONS(1789), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3062), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3092), 1, + anon_sym_SEMI, + ACTIONS(3094), 1, + aux_sym_with_clause_token1, + STATE(1354), 1, + sym_record_definition, + [41342] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3096), 1, + sym_identifier, + ACTIONS(3098), 5, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_package_specification_token3, + [41356] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3100), 1, + anon_sym_COMMA, + STATE(932), 1, + aux_sym_aspect_mark_list_repeat1, + ACTIONS(3102), 4, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [41372] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3100), 1, + anon_sym_COMMA, + STATE(944), 1, + aux_sym_aspect_mark_list_repeat1, + ACTIONS(3104), 4, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [41388] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3106), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3109), 1, + aux_sym_package_specification_token3, + ACTIONS(3111), 1, + aux_sym_pragma_g_token1, + STATE(946), 3, + sym_exception_handler, + aux_sym__exception_handler_list, + sym_pragma_g, + [41406] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2102), 1, + anon_sym_COLON_EQ, + STATE(988), 1, + sym_actual_parameter_part, + STATE(1937), 1, + sym__assign_value, + [41428] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + STATE(262), 1, + sym_actual_parameter_part, + ACTIONS(3114), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [41448] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2962), 1, + anon_sym_LPAREN, + ACTIONS(3116), 1, + anon_sym_SEMI, + ACTIONS(3118), 1, + aux_sym_package_specification_token2, + STATE(1451), 1, + sym_known_discriminant_part, + STATE(1455), 2, + sym__discriminant_part, + sym_unknown_discriminant_part, + [41468] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3076), 1, + anon_sym_COMMA, + ACTIONS(3080), 1, + aux_sym_with_clause_token2, + ACTIONS(3120), 1, + anon_sym_RPAREN, + STATE(1486), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3052), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [41488] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1933), 1, + sym_identifier, + ACTIONS(3122), 1, + aux_sym_iterated_element_association_token1, + STATE(1256), 1, + sym_parameter_specification, + STATE(1661), 1, + sym_entry_index_specification, + STATE(1665), 1, + sym__parameter_specification_list, + STATE(1699), 1, + sym__defining_identifier_list, + [41510] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3124), 1, + anon_sym_LPAREN, + ACTIONS(3126), 1, + anon_sym_SEMI, + ACTIONS(3128), 1, + aux_sym_package_specification_token2, + STATE(1133), 1, + sym_known_discriminant_part, + STATE(1470), 1, + sym_aspect_specification, + [41532] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + anon_sym_COLON_EQ, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + STATE(1109), 1, + sym__assign_value, + STATE(1475), 1, + sym_aspect_specification, + ACTIONS(3130), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [41552] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3132), 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, + [41564] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(233), 1, + aux_sym_chunk_specification_token1, + ACTIONS(253), 1, + aux_sym_global_mode_token1, + ACTIONS(255), 1, + aux_sym_non_empty_mode_token1, + STATE(686), 1, + sym_global_mode, + STATE(831), 1, + sym_non_empty_mode, + STATE(1410), 1, + sym_global_aspect_element, + [41586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3134), 1, + sym_identifier, + ACTIONS(3136), 5, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + [41600] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, aux_sym_pragma_g_token1, - ACTIONS(3146), 1, + ACTIONS(3138), 1, aux_sym_iterator_filter_token1, - STATE(961), 3, + ACTIONS(3140), 1, + aux_sym_package_specification_token3, + STATE(946), 3, sym_exception_handler, aux_sym__exception_handler_list, sym_pragma_g, - [43212] = 6, + [41618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(3142), 1, + sym_identifier, + ACTIONS(3144), 5, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + [41632] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - ACTIONS(3303), 1, - anon_sym_COMMA, - STATE(259), 1, - sym_actual_parameter_part, - [43231] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3305), 1, + ACTIONS(3146), 1, anon_sym_SEMI, - STATE(259), 1, + ACTIONS(3148), 1, + aux_sym_with_clause_token2, + STATE(262), 1, sym_actual_parameter_part, - [43250] = 2, + [41654] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3307), 5, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3150), 1, + anon_sym_SEMI, + ACTIONS(3152), 1, + aux_sym_with_clause_token2, + STATE(262), 1, + sym_actual_parameter_part, + [41676] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3154), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3156), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + [41698] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1911), 1, + sym_identifier, + ACTIONS(1913), 5, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_attribute_designator_token1, + [41712] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1937), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1939), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(3086), 1, + aux_sym_entry_declaration_token1, + STATE(1095), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + [41730] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3062), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3158), 1, + aux_sym_with_clause_token1, + ACTIONS(3160), 1, + aux_sym_allocator_token1, + ACTIONS(3162), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(3164), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(3166), 1, + aux_sym_private_extension_declaration_token1, + [41752] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3168), 1, + aux_sym_package_specification_token3, + ACTIONS(3170), 1, + aux_sym_expression_token4, + ACTIONS(3172), 1, + aux_sym_elsif_expression_item_token1, + STATE(985), 2, + sym_elsif_statement_item, + aux_sym_if_statement_repeat1, + [41769] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3174), 1, + anon_sym_RPAREN, + ACTIONS(3176), 1, + aux_sym_expression_token4, + ACTIONS(3178), 1, + aux_sym_elsif_expression_item_token1, + STATE(1006), 2, + sym_elsif_expression_item, + aux_sym_if_expression_repeat1, + [41786] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + anon_sym_COLON_EQ, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3180), 1, + anon_sym_SEMI, + STATE(1196), 1, + sym__assign_value, + STATE(1671), 1, + sym_aspect_specification, + [41805] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3182), 1, + aux_sym_object_renaming_declaration_token1, + STATE(262), 1, + sym_actual_parameter_part, + [41824] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(3138), 1, + aux_sym_iterator_filter_token1, + STATE(957), 3, + sym_exception_handler, + aux_sym__exception_handler_list, + sym_pragma_g, + [41839] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3184), 1, + anon_sym_LPAREN, + ACTIONS(3186), 1, + anon_sym_SEMI, + STATE(1287), 1, + sym_formal_part, + STATE(1897), 1, + sym_aspect_specification, + [41858] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3188), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + [41877] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(2742), 1, + aux_sym_result_profile_token1, + STATE(1397), 1, + sym_formal_part, + STATE(827), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [41894] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3190), 1, + sym_identifier, + ACTIONS(3192), 1, + anon_sym_LT_GT, + STATE(1296), 1, + sym_discriminant_specification, + STATE(1793), 1, + sym__defining_identifier_list, + STATE(1798), 1, + sym_discriminant_specification_list, + [41913] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3194), 1, + anon_sym_RPAREN, + STATE(262), 1, + sym_actual_parameter_part, + [41932] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(2742), 1, + aux_sym_result_profile_token1, + STATE(1397), 1, + sym_formal_part, + STATE(1148), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [41949] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3082), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(3084), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1040), 1, + sym__subprogram_specification, + STATE(1128), 1, + sym_procedure_specification, + STATE(1136), 1, + sym_function_specification, + [41968] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2735), 1, + aux_sym_expression_token1, + STATE(1014), 1, + aux_sym__interface_list_repeat1, + ACTIONS(3196), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [41983] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3198), 1, + aux_sym_object_renaming_declaration_token1, + STATE(262), 1, + sym_actual_parameter_part, + [42002] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2653), 1, + anon_sym_LPAREN, + STATE(1148), 1, + sym_formal_part, + ACTIONS(3200), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [42017] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3202), 1, + anon_sym_RPAREN, + STATE(262), 1, + sym_actual_parameter_part, + [42036] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3204), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + [42055] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3206), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + [42074] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3208), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + [42093] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3210), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + [42112] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3214), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3212), 2, + aux_sym_package_specification_token3, + aux_sym_expression_token4, + STATE(985), 2, + sym_elsif_statement_item, + aux_sym_if_statement_repeat1, + [42127] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + anon_sym_COLON_EQ, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3217), 1, + anon_sym_SEMI, + STATE(1298), 1, + sym__assign_value, + STATE(1776), 1, + sym_aspect_specification, + [42146] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + anon_sym_COLON_EQ, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3219), 1, + anon_sym_SEMI, + STATE(1182), 1, + sym__assign_value, + STATE(1797), 1, + sym_aspect_specification, + [42165] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3221), 1, + anon_sym_SEMI, + ACTIONS(913), 4, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON_EQ, + [42178] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + aux_sym_primary_null_token1, + ACTIONS(1789), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3223), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3225), 1, + aux_sym_with_clause_token1, + STATE(1471), 1, + sym_record_definition, + [42197] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3227), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + [42216] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3229), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + [42235] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3231), 1, + anon_sym_SEMI, + ACTIONS(3233), 1, + aux_sym_package_specification_token2, + ACTIONS(3235), 1, + aux_sym_object_renaming_declaration_token1, + STATE(1587), 1, + sym_aspect_specification, + [42254] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2230), 1, + aux_sym_iterator_filter_token1, + STATE(1333), 1, + sym_iterator_filter, + ACTIONS(3237), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [42269] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2653), 1, + anon_sym_LPAREN, + STATE(1279), 1, + sym_formal_part, + ACTIONS(3239), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [42284] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3241), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + [42303] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + aux_sym_primary_null_token1, + ACTIONS(1789), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3066), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3243), 1, + aux_sym_allocator_token1, + STATE(1354), 1, + sym_record_definition, + [42322] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3245), 1, + anon_sym_SEMI, + ACTIONS(3247), 1, + aux_sym_package_specification_token2, + ACTIONS(3249), 1, + aux_sym_object_renaming_declaration_token1, + STATE(1933), 1, + sym_aspect_specification, + [42341] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3251), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(921), 3, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + [42354] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3253), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + [42373] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3255), 1, + sym_tick, + ACTIONS(3257), 1, + aux_sym_iterated_element_association_token2, + STATE(262), 1, + sym_actual_parameter_part, + [42392] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3259), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + [42411] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3261), 1, + aux_sym_object_renaming_declaration_token1, + STATE(262), 1, + sym_actual_parameter_part, + [42430] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3263), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + [42449] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(2742), 1, + aux_sym_result_profile_token1, + STATE(1397), 1, + sym_formal_part, + STATE(1279), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [42466] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3265), 5, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [43261] = 6, + [42477] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2090), 1, - anon_sym_COLON_EQ, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3309), 1, - anon_sym_SEMI, - STATE(1260), 1, - sym__assign_value, - STATE(1809), 1, - sym_aspect_specification, - [43280] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2090), 1, - anon_sym_COLON_EQ, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3311), 1, - anon_sym_SEMI, - STATE(1236), 1, - sym__assign_value, - STATE(1808), 1, - sym_aspect_specification, - [43299] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3210), 1, + ACTIONS(3178), 1, aux_sym_elsif_expression_item_token1, - ACTIONS(3313), 1, - aux_sym_package_specification_token3, - ACTIONS(3315), 1, + ACTIONS(3267), 1, + anon_sym_RPAREN, + ACTIONS(3269), 1, aux_sym_expression_token4, - STATE(988), 2, - sym_elsif_statement_item, - aux_sym_if_statement_repeat1, - [43316] = 6, + STATE(1017), 2, + sym_elsif_expression_item, + aux_sym_if_expression_repeat1, + [42494] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(2102), 1, + anon_sym_COLON_EQ, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3271), 1, + anon_sym_SEMI, + STATE(1193), 1, + sym__assign_value, + STATE(1810), 1, + sym_aspect_specification, + [42513] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - ACTIONS(3317), 1, + ACTIONS(3273), 1, anon_sym_SEMI, - STATE(259), 1, + STATE(262), 1, sym_actual_parameter_part, - [43335] = 5, + [42532] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2639), 1, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(2722), 1, - aux_sym_result_profile_token1, - STATE(1366), 1, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3275), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + [42551] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3277), 1, + aux_sym_package_specification_token2, + ACTIONS(921), 4, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + aux_sym_with_clause_token2, + [42564] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3280), 1, + aux_sym_at_clause_token1, + STATE(262), 1, + sym_actual_parameter_part, + [42583] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1937), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1939), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1124), 1, + sym__subprogram_specification, + STATE(1128), 1, + sym_procedure_specification, + STATE(1136), 1, + sym_function_specification, + [42602] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3282), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [42613] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3284), 1, + aux_sym_expression_token1, + STATE(1014), 1, + aux_sym__interface_list_repeat1, + ACTIONS(2823), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [42628] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + STATE(1706), 1, + sym_delay_alternative, + STATE(31), 3, + sym__delay_statement, + sym_delay_until_statement, + sym_delay_relative_statement, + [42643] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2427), 1, + aux_sym_range_attribute_designator_token1, + STATE(262), 1, + sym_actual_parameter_part, + [42662] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3289), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3287), 2, + anon_sym_RPAREN, + aux_sym_expression_token4, + STATE(1017), 2, + sym_elsif_expression_item, + aux_sym_if_expression_repeat1, + [42677] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3292), 1, + aux_sym_object_renaming_declaration_token1, + STATE(262), 1, + sym_actual_parameter_part, + [42696] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3294), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + [42715] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3048), 1, + anon_sym_COMMA, + ACTIONS(3050), 1, + anon_sym_RBRACK, + STATE(1184), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3052), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [42732] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3296), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + [42751] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(3298), 1, + anon_sym_SEMI, + STATE(1215), 1, sym_formal_part, - STATE(1159), 2, + STATE(1591), 1, + sym_aspect_specification, + [42770] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + anon_sym_COLON_EQ, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3300), 1, + anon_sym_SEMI, + STATE(1314), 1, + sym__assign_value, + STATE(1633), 1, + sym_aspect_specification, + [42789] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3302), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + [42808] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3304), 1, + aux_sym_object_renaming_declaration_token1, + STATE(262), 1, + sym_actual_parameter_part, + [42827] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3306), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + [42846] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2090), 5, + aux_sym_iterated_element_association_token1, + aux_sym_subprogram_body_token1, + aux_sym_declare_expression_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + [42857] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(3308), 1, + anon_sym_SEMI, + STATE(1258), 1, + sym_formal_part, + STATE(1694), 1, + sym_aspect_specification, + [42876] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3310), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + [42895] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + anon_sym_COLON_EQ, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3312), 1, + anon_sym_SEMI, + STATE(1320), 1, + sym__assign_value, + STATE(1945), 1, + sym_aspect_specification, + [42914] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + anon_sym_COLON_EQ, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3314), 1, + anon_sym_SEMI, + STATE(1321), 1, + sym__assign_value, + STATE(1873), 1, + sym_aspect_specification, + [42933] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3082), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(3084), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(992), 1, + sym__subprogram_specification, + STATE(1128), 1, + sym_procedure_specification, + STATE(1136), 1, + sym_function_specification, + [42952] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3316), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + [42971] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3318), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + [42990] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2230), 1, + aux_sym_iterator_filter_token1, + STATE(1272), 1, + sym_iterator_filter, + ACTIONS(3320), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [43005] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3124), 1, + anon_sym_LPAREN, + ACTIONS(3322), 1, + aux_sym_package_specification_token2, + STATE(1241), 1, + sym_known_discriminant_part, + STATE(1758), 1, + sym_aspect_specification, + [43024] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3172), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3324), 1, + aux_sym_package_specification_token3, + ACTIONS(3326), 1, + aux_sym_expression_token4, + STATE(965), 2, + sym_elsif_statement_item, + aux_sym_if_statement_repeat1, + [43041] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3328), 1, + anon_sym_LPAREN, + ACTIONS(3330), 1, + anon_sym_SEMI, + STATE(1217), 1, + sym_formal_part, + STATE(1834), 1, + sym_aspect_specification, + [43060] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3332), 1, + anon_sym_COMMA, + STATE(262), 1, + sym_actual_parameter_part, + [43079] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3231), 1, + anon_sym_SEMI, + ACTIONS(3235), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(3334), 1, + aux_sym_package_specification_token2, + STATE(1448), 1, + sym_aspect_specification, + [43098] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3046), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [43109] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2751), 1, + anon_sym_SEMI, + ACTIONS(921), 4, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON_EQ, + [43122] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3245), 1, + anon_sym_SEMI, + ACTIONS(3249), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(3336), 1, + aux_sym_package_specification_token2, + STATE(1442), 1, + sym_aspect_specification, + [43141] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + anon_sym_COLON_EQ, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3338), 1, + anon_sym_SEMI, + STATE(1262), 1, + sym__assign_value, + STATE(1676), 1, + sym_aspect_specification, + [43160] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(3340), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_actual_parameter_part, + [43179] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(2742), 1, + aux_sym_result_profile_token1, + STATE(1397), 1, + sym_formal_part, + STATE(829), 2, sym__parameter_and_result_profile, sym_result_profile, - [43352] = 4, + [43196] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2639), 1, - anon_sym_LPAREN, - STATE(1159), 1, - sym_formal_part, - ACTIONS(3319), 3, - anon_sym_SEMI, + ACTIONS(2102), 1, + anon_sym_COLON_EQ, + ACTIONS(2214), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [43367] = 6, + ACTIONS(3342), 1, + anon_sym_SEMI, + STATE(1332), 1, + sym__assign_value, + STATE(1651), 1, + sym_aspect_specification, + [43215] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(1937), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1939), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1174), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + [43230] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3344), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [43241] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3346), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [43252] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + anon_sym_COLON_EQ, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3348), 1, + anon_sym_SEMI, + STATE(1222), 1, + sym__assign_value, + STATE(1729), 1, + sym_aspect_specification, + [43271] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(2742), 1, + aux_sym_result_profile_token1, + STATE(1397), 1, + sym_formal_part, + STATE(822), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [43288] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - ACTIONS(3321), 1, + ACTIONS(3350), 1, anon_sym_SEMI, - STATE(259), 1, + STATE(262), 1, sym_actual_parameter_part, - [43386] = 6, + [43307] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3323), 1, - anon_sym_LPAREN, - ACTIONS(3325), 1, - anon_sym_SEMI, - STATE(1335), 1, - sym_formal_part, - STATE(1799), 1, - sym_aspect_specification, - [43405] = 6, + ACTIONS(3352), 1, + aux_sym_package_specification_token3, + ACTIONS(3354), 1, + aux_sym_expression_token3, + ACTIONS(3356), 1, + aux_sym_expression_token4, + STATE(1056), 1, + aux_sym_selective_accept_repeat1, + [43323] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3212), 1, - anon_sym_SEMI, - ACTIONS(3216), 1, - aux_sym_object_renaming_declaration_token1, - ACTIONS(3327), 1, - aux_sym_package_specification_token2, - STATE(1457), 1, - sym_aspect_specification, - [43424] = 4, + ACTIONS(3358), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3361), 1, + aux_sym_package_specification_token3, + STATE(1055), 2, + sym_variant, + aux_sym_variant_list_repeat1, + [43337] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, - aux_sym_elsif_expression_item_token1, - ACTIONS(3329), 2, + ACTIONS(3365), 1, + aux_sym_expression_token3, + STATE(1056), 1, + aux_sym_selective_accept_repeat1, + ACTIONS(3363), 2, aux_sym_package_specification_token3, aux_sym_expression_token4, - STATE(1050), 2, - sym_elsif_statement_item, - aux_sym_if_statement_repeat1, - [43439] = 2, + [43351] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 4, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + STATE(1395), 1, + sym_aspect_specification, + ACTIONS(3368), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [43365] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1308), 1, + sym__enumeration_literal_specification, + STATE(1927), 1, + sym__enumeration_literal_list, + ACTIONS(3370), 2, + sym_identifier, + sym_character_literal, + [43379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2980), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(921), 3, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + [43391] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3064), 1, + aux_sym_allocator_token1, + ACTIONS(3166), 1, + aux_sym_private_extension_declaration_token1, + ACTIONS(3372), 1, + aux_sym_with_clause_token1, + ACTIONS(3374), 1, + aux_sym_private_type_declaration_token2, + [43407] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym_expression_token1, + ACTIONS(3376), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - anon_sym_COLON_EQ, - [43449] = 4, + [43419] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3336), 1, - anon_sym_COMMA, - STATE(1052), 1, - aux_sym__name_list_repeat1, - ACTIONS(2972), 2, - anon_sym_RPAREN, + ACTIONS(3380), 1, anon_sym_SEMI, - [43463] = 4, + ACTIONS(3382), 1, + aux_sym_with_clause_token2, + ACTIONS(3385), 1, + aux_sym_expression_token1, + STATE(1440), 1, + sym_record_extension_part, + [43435] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2090), 1, - anon_sym_COLON_EQ, - STATE(1364), 1, - sym__assign_value, - ACTIONS(3339), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [43477] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3341), 1, + ACTIONS(3387), 1, anon_sym_COMMA, - STATE(1120), 1, - aux_sym__array_component_association_list_repeat1, - ACTIONS(3343), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, + STATE(1486), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3052), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [43449] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3389), 4, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [43459] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3245), 1, + anon_sym_SEMI, + ACTIONS(3247), 1, + aux_sym_package_specification_token2, + STATE(1933), 1, + sym_aspect_specification, + [43475] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3190), 1, + sym_identifier, + STATE(1296), 1, + sym_discriminant_specification, + STATE(1793), 1, + sym__defining_identifier_list, + STATE(1798), 1, + sym_discriminant_specification_list, [43491] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, - aux_sym_package_specification_token3, - ACTIONS(3347), 1, - aux_sym_expression_token3, - ACTIONS(3349), 1, - aux_sym_expression_token4, - STATE(1056), 1, - aux_sym_selective_accept_repeat1, + ACTIONS(1783), 1, + aux_sym_primary_null_token1, + ACTIONS(1789), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3391), 1, + aux_sym_compilation_unit_token1, + STATE(1418), 1, + sym_record_definition, [43507] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3353), 1, - aux_sym_expression_token3, - STATE(1056), 1, - aux_sym_selective_accept_repeat1, - ACTIONS(3351), 2, - aux_sym_package_specification_token3, - aux_sym_expression_token4, - [43521] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - STATE(1381), 1, - sym_aspect_specification, - ACTIONS(3356), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [43535] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3360), 1, - aux_sym_package_specification_token2, - ACTIONS(3358), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [43547] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2090), 1, + ACTIONS(2102), 1, anon_sym_COLON_EQ, - STATE(1438), 1, + STATE(1468), 1, sym__assign_value, - ACTIONS(3363), 2, + ACTIONS(3393), 2, anon_sym_SEMI, aux_sym_accept_statement_token2, - [43561] = 5, + [43521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3212), 1, - anon_sym_SEMI, - ACTIONS(3365), 1, - aux_sym_package_specification_token2, - STATE(1457), 1, - sym_aspect_specification, - [43577] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - STATE(1469), 1, - sym_aspect_specification, - ACTIONS(3367), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [43591] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3371), 1, - aux_sym_range_attribute_designator_token1, - STATE(1478), 1, - sym_real_range_specification, - ACTIONS(3369), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [43605] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3373), 1, - anon_sym_SEMI, - ACTIONS(3375), 1, - aux_sym_expression_token3, - STATE(1534), 1, - sym_aspect_specification, - [43621] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(981), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - STATE(259), 1, - sym_actual_parameter_part, - [43637] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3377), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3379), 1, - anon_sym_SEMI, - ACTIONS(3381), 1, - aux_sym_with_clause_token1, - ACTIONS(3383), 1, - aux_sym_expression_token3, - [43653] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3385), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_accept_statement_token2, - [43663] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3236), 1, - anon_sym_SEMI, - ACTIONS(3238), 1, - aux_sym_package_specification_token2, - STATE(1633), 1, - sym_aspect_specification, - [43679] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym_expression_token1, - ACTIONS(3387), 3, + ACTIONS(3395), 4, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [43691] = 2, + anon_sym_COLON_EQ, + [43531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3391), 4, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [43701] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3393), 4, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [43711] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3395), 1, - aux_sym_package_specification_token2, - ACTIONS(3358), 3, + ACTIONS(3397), 4, anon_sym_SEMI, aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [43723] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3398), 1, - aux_sym_package_specification_token2, - ACTIONS(3358), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [43735] = 5, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [43541] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(3399), 1, + aux_sym_iterator_filter_token1, ACTIONS(3401), 1, - anon_sym_SEMI, - ACTIONS(3403), 1, - aux_sym_with_clause_token2, - ACTIONS(3406), 1, - aux_sym_expression_token1, - STATE(1431), 1, - sym_record_extension_part, - [43751] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3244), 1, - sym_identifier, - STATE(1196), 1, - sym_parameter_specification, - STATE(1871), 1, - sym__parameter_specification_list, - STATE(1872), 1, - sym__defining_identifier_list, - [43767] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3408), 4, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [43777] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3410), 1, - aux_sym_attribute_designator_token3, - ACTIONS(3412), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [43789] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3414), 4, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [43799] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3416), 1, - aux_sym_package_specification_token2, - ACTIONS(3358), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [43811] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3347), 1, - aux_sym_expression_token3, - ACTIONS(3419), 1, aux_sym_package_specification_token3, - ACTIONS(3421), 1, - aux_sym_expression_token4, - STATE(1081), 1, - aux_sym_selective_accept_repeat1, - [43827] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3425), 1, - aux_sym_expression_token2, - ACTIONS(3423), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [43839] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3347), 1, - aux_sym_expression_token3, - ACTIONS(3427), 1, - aux_sym_package_specification_token3, - ACTIONS(3429), 1, - aux_sym_expression_token4, - STATE(1056), 1, - aux_sym_selective_accept_repeat1, - [43855] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3431), 1, - anon_sym_SEMI, - ACTIONS(3433), 1, - aux_sym_with_clause_token2, - ACTIONS(3436), 1, - aux_sym_expression_token1, - STATE(1473), 1, - sym_record_extension_part, - [43871] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3347), 1, - aux_sym_expression_token3, - ACTIONS(3427), 1, - aux_sym_package_specification_token3, - ACTIONS(3429), 1, - aux_sym_expression_token4, - STATE(1055), 1, - aux_sym_selective_accept_repeat1, - [43887] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3438), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3441), 1, - aux_sym_package_specification_token3, - STATE(1084), 2, - sym_case_statement_alternative, - aux_sym_case_statement_repeat1, - [43901] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2639), 1, - anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_SEMI, - ACTIONS(3445), 1, - aux_sym_accept_statement_token2, - STATE(1341), 1, - sym_formal_part, - [43917] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - aux_sym_primary_null_token1, - ACTIONS(1789), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3447), 1, - aux_sym_compilation_unit_token1, - STATE(1416), 1, - sym_record_definition, - [43933] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3371), 1, - aux_sym_range_attribute_designator_token1, - STATE(1456), 1, - sym_real_range_specification, - ACTIONS(3449), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [43947] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - aux_sym_primary_null_token1, - ACTIONS(1789), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3451), 1, - aux_sym_compilation_unit_token1, - STATE(1416), 1, - sym_record_definition, - [43963] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - aux_sym_primary_null_token1, - ACTIONS(1789), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3453), 1, - aux_sym_compilation_unit_token1, - STATE(1416), 1, - sym_record_definition, - [43979] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3455), 1, - aux_sym_iterator_filter_token1, - STATE(1626), 1, - sym_variant_list, - STATE(1103), 2, + STATE(1055), 2, sym_variant, aux_sym_variant_list_repeat1, - [43993] = 5, + [43555] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3457), 1, + ACTIONS(1783), 1, + aux_sym_primary_null_token1, + ACTIONS(1789), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3403), 1, + aux_sym_compilation_unit_token1, + STATE(1418), 1, + sym_record_definition, + [43571] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3405), 1, + anon_sym_COMMA, + STATE(1118), 1, + aux_sym__array_component_association_list_repeat1, + ACTIONS(3407), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [43585] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3411), 1, + aux_sym_range_attribute_designator_token1, + STATE(1462), 1, + sym_real_range_specification, + ACTIONS(3409), 2, anon_sym_SEMI, - ACTIONS(3459), 1, - aux_sym_package_specification_token2, - STATE(1351), 1, - sym_aspect_specification, - [44009] = 2, + aux_sym_with_clause_token2, + [43599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 4, + ACTIONS(3415), 1, + aux_sym_expression_token1, + ACTIONS(3413), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [43611] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3417), 1, + anon_sym_SEMI, + ACTIONS(3419), 1, + aux_sym_with_clause_token2, + ACTIONS(3422), 1, + aux_sym_expression_token1, + STATE(1436), 1, + sym_record_extension_part, + [43627] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + anon_sym_COLON_EQ, + STATE(1417), 1, + sym__assign_value, + ACTIONS(3424), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [43641] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + aux_sym_primary_null_token1, + ACTIONS(1789), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3223), 1, + aux_sym_compilation_unit_token1, + STATE(1471), 1, + sym_record_definition, + [43657] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3426), 1, + anon_sym_SEMI, + ACTIONS(3428), 1, + aux_sym_expression_token3, + STATE(1536), 1, + sym_aspect_specification, + [43673] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3430), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3432), 1, + anon_sym_SEMI, + ACTIONS(3434), 1, + aux_sym_with_clause_token1, + ACTIONS(3436), 1, + aux_sym_expression_token3, + [43689] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3438), 1, + anon_sym_SEMI, + ACTIONS(3440), 1, + aux_sym_package_specification_token2, + STATE(1585), 1, + sym_aspect_specification, + [43705] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3411), 1, + aux_sym_range_attribute_designator_token1, + STATE(1449), 1, + sym_real_range_specification, + ACTIONS(3442), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [43719] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3446), 1, + aux_sym_allocator_token1, + ACTIONS(3448), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(3444), 2, + aux_sym_with_clause_token1, + aux_sym_private_extension_declaration_token1, + [43733] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3450), 4, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [43743] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + aux_sym_primary_null_token1, + ACTIONS(1789), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3452), 1, + aux_sym_compilation_unit_token1, + STATE(1418), 1, + sym_record_definition, + [43759] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + aux_sym_primary_null_token1, + ACTIONS(1789), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3454), 1, + aux_sym_with_clause_token1, + STATE(1354), 1, + sym_record_definition, + [43775] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3456), 1, + aux_sym_attribute_designator_token3, + ACTIONS(3458), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [43787] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3354), 1, + aux_sym_expression_token3, + ACTIONS(3460), 1, + aux_sym_package_specification_token3, + ACTIONS(3462), 1, + aux_sym_expression_token4, + STATE(1116), 1, + aux_sym_selective_accept_repeat1, + [43803] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3399), 1, + aux_sym_iterator_filter_token1, + STATE(1628), 1, + sym_variant_list, + STATE(1071), 2, + sym_variant, + aux_sym_variant_list_repeat1, + [43817] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3464), 4, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, anon_sym_COLON_EQ, - [44019] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3463), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(851), 3, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - [44031] = 2, + [43827] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3466), 4, @@ -51233,7280 +51209,7322 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_with_clause_token2, aux_sym_expression_token3, anon_sym_COLON_EQ, - [44041] = 5, + [43837] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3380), 1, anon_sym_SEMI, ACTIONS(3468), 1, aux_sym_with_clause_token2, ACTIONS(3471), 1, aux_sym_expression_token1, - STATE(1431), 1, + STATE(1440), 1, sym_record_extension_part, - [44057] = 5, + [43853] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, ACTIONS(3473), 1, anon_sym_SEMI, ACTIONS(3475), 1, - aux_sym_package_specification_token2, - STATE(1468), 1, + aux_sym_with_clause_token2, + ACTIONS(3478), 1, + aux_sym_expression_token1, + STATE(1414), 1, + sym_record_extension_part, + [43869] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + STATE(1363), 1, sym_aspect_specification, - [44073] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3477), 1, - anon_sym_COMMA, - ACTIONS(3479), 1, + ACTIONS(3480), 2, anon_sym_RPAREN, - STATE(1223), 1, - aux_sym_record_component_association_list_repeat1, - STATE(1224), 1, - aux_sym_positional_array_aggregate_repeat1, - [44089] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3482), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3484), 1, - aux_sym_package_specification_token3, - STATE(1084), 2, - sym_case_statement_alternative, - aux_sym_case_statement_repeat1, - [44103] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3377), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3381), 1, - aux_sym_with_clause_token1, - ACTIONS(3486), 1, anon_sym_SEMI, - ACTIONS(3488), 1, - aux_sym_expression_token3, - [44119] = 5, + [43883] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3231), 1, + anon_sym_SEMI, + ACTIONS(3233), 1, + aux_sym_package_specification_token2, + STATE(1587), 1, + sym_aspect_specification, + [43899] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2653), 1, + anon_sym_LPAREN, + ACTIONS(3482), 1, + anon_sym_SEMI, + ACTIONS(3484), 1, + aux_sym_accept_statement_token2, + STATE(1350), 1, + sym_formal_part, + [43915] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, aux_sym_primary_null_token1, ACTIONS(1789), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3490), 1, - aux_sym_with_clause_token1, - STATE(1426), 1, + ACTIONS(3486), 1, + aux_sym_compilation_unit_token1, + STATE(1418), 1, sym_record_definition, - [44135] = 5, + [43931] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3492), 1, + ACTIONS(3488), 1, + anon_sym_COMMA, + STATE(1098), 1, + aux_sym__name_list_repeat1, + ACTIONS(3011), 2, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(3494), 1, - aux_sym_with_clause_token2, - ACTIONS(3497), 1, - aux_sym_expression_token1, - STATE(1412), 1, - sym_record_extension_part, - [44151] = 4, + [43945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2090), 1, + ACTIONS(2102), 1, anon_sym_COLON_EQ, - STATE(1367), 1, + STATE(1359), 1, sym__assign_value, - ACTIONS(3499), 2, + ACTIONS(3491), 2, anon_sym_SEMI, aux_sym_accept_statement_token2, - [44165] = 4, + [43959] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3455), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3501), 1, + ACTIONS(2102), 1, + anon_sym_COLON_EQ, + STATE(1372), 1, + sym__assign_value, + ACTIONS(3491), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [43973] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3354), 1, + aux_sym_expression_token3, + ACTIONS(3493), 1, aux_sym_package_specification_token3, - STATE(1140), 2, - sym_variant, - aux_sym_variant_list_repeat1, - [44179] = 4, + ACTIONS(3495), 1, + aux_sym_expression_token4, + STATE(1054), 1, + aux_sym_selective_accept_repeat1, + [43989] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2090), 1, - anon_sym_COLON_EQ, - STATE(1368), 1, - sym__assign_value, - ACTIONS(3499), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [44193] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, + ACTIONS(941), 1, sym_tick, ACTIONS(981), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2006), 1, anon_sym_DOT, - STATE(1008), 1, + STATE(988), 1, sym_actual_parameter_part, - [44209] = 5, + [44005] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, + ACTIONS(2214), 1, aux_sym_with_clause_token2, - ACTIONS(3503), 1, - anon_sym_SEMI, - ACTIONS(3505), 1, - aux_sym_package_specification_token2, - STATE(1832), 1, - sym_aspect_specification, - [44225] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3509), 1, - aux_sym_allocator_token1, - ACTIONS(3511), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(3507), 2, - aux_sym_with_clause_token1, - aux_sym_private_extension_declaration_token1, - [44239] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1305), 1, - sym__enumeration_literal_specification, - STATE(1775), 1, - sym__enumeration_literal_list, - ACTIONS(3513), 2, - sym_identifier, - sym_character_literal, - [44253] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3515), 1, - sym_identifier, - STATE(926), 1, - sym_aspect_association, - STATE(941), 1, - sym__aspect_mark, - STATE(1077), 1, - sym_aspect_mark_list, - [44269] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(2946), 1, + ACTIONS(2972), 1, aux_sym_iterator_filter_token1, - STATE(1365), 1, + STATE(1435), 1, sym_aspect_specification, - STATE(1661), 1, + STATE(1663), 1, sym_entry_barrier, - [44285] = 5, + [44021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, - aux_sym_primary_null_token1, - ACTIONS(1789), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3517), 1, - aux_sym_compilation_unit_token1, - STATE(1427), 1, - sym_record_definition, - [44301] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - aux_sym_primary_null_token1, - ACTIONS(1789), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3519), 1, - aux_sym_compilation_unit_token1, - STATE(1416), 1, - sym_record_definition, - [44317] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3236), 1, + ACTIONS(3497), 4, anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [44031] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3499), 1, + sym_identifier, + STATE(938), 1, + sym__aspect_mark, + STATE(945), 1, + sym_aspect_association, + STATE(1084), 1, + sym_aspect_mark_list, + [44047] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1941), 1, + anon_sym_COMMA, + ACTIONS(2753), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(3501), 1, + anon_sym_COLON, + STATE(1160), 1, + aux_sym__defining_identifier_list_repeat1, + [44063] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3245), 1, + anon_sym_SEMI, + ACTIONS(3504), 1, + aux_sym_package_specification_token2, + STATE(1442), 1, + sym_aspect_specification, + [44079] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + STATE(1431), 1, + sym_aspect_specification, + ACTIONS(3506), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [44093] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + STATE(1428), 1, + sym_aspect_specification, + ACTIONS(3508), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [44107] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3510), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [44117] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1941), 1, + anon_sym_COMMA, + ACTIONS(2753), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(3512), 1, + anon_sym_COLON, + STATE(1160), 1, + aux_sym__defining_identifier_list_repeat1, + [44133] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + sym_tick, + ACTIONS(981), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_DOT, + STATE(262), 1, + sym_actual_parameter_part, + [44149] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3190), 1, + sym_identifier, + STATE(1256), 1, + sym_parameter_specification, + STATE(1665), 1, + sym__parameter_specification_list, + STATE(1699), 1, + sym__defining_identifier_list, + [44165] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3515), 1, + anon_sym_SEMI, + ACTIONS(3517), 1, + aux_sym_expression_token3, + STATE(1751), 1, + sym_aspect_specification, + [44181] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(3521), 1, aux_sym_package_specification_token2, - STATE(1425), 1, - sym_aspect_specification, - [44333] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - STATE(1420), 1, - sym_aspect_specification, - ACTIONS(3523), 2, - anon_sym_RPAREN, + ACTIONS(3519), 3, anon_sym_SEMI, - [44347] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, aux_sym_with_clause_token2, - STATE(1350), 1, - sym_aspect_specification, - ACTIONS(3525), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [44361] = 5, + aux_sym_object_renaming_declaration_token1, + [44193] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3025), 1, - aux_sym_private_extension_declaration_token1, - ACTIONS(3142), 1, - aux_sym_allocator_token1, - ACTIONS(3527), 1, - aux_sym_with_clause_token1, - ACTIONS(3529), 1, - aux_sym_private_type_declaration_token2, - [44377] = 4, + ACTIONS(3354), 1, + aux_sym_expression_token3, + ACTIONS(3493), 1, + aux_sym_package_specification_token3, + ACTIONS(3495), 1, + aux_sym_expression_token4, + STATE(1056), 1, + aux_sym_selective_accept_repeat1, + [44209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3531), 1, + ACTIONS(3526), 1, + aux_sym_expression_token2, + ACTIONS(3524), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [44221] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3405), 1, anon_sym_COMMA, - STATE(1117), 1, + STATE(1141), 1, aux_sym__array_component_association_list_repeat1, + ACTIONS(3528), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [44235] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3430), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3434), 1, + aux_sym_with_clause_token1, + ACTIONS(3530), 1, + anon_sym_SEMI, + ACTIONS(3532), 1, + aux_sym_expression_token3, + [44251] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + anon_sym_COLON_EQ, + STATE(1404), 1, + sym__assign_value, ACTIONS(3534), 2, anon_sym_RPAREN, - anon_sym_RBRACK, - [44391] = 5, + anon_sym_SEMI, + [44265] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3536), 1, - anon_sym_LPAREN, ACTIONS(3538), 1, - anon_sym_SEMI, - ACTIONS(3540), 1, - aux_sym_accept_statement_token2, - STATE(1372), 1, - sym_formal_part, - [44407] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2090), 1, - anon_sym_COLON_EQ, - STATE(1402), 1, - sym__assign_value, - ACTIONS(3542), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [44421] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3341), 1, - anon_sym_COMMA, - STATE(1117), 1, - aux_sym__array_component_association_list_repeat1, - ACTIONS(3544), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [44435] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3548), 1, aux_sym_allocator_token1, - ACTIONS(3550), 1, + ACTIONS(3540), 1, aux_sym_private_type_declaration_token2, - ACTIONS(3546), 2, + ACTIONS(3536), 2, aux_sym_with_clause_token1, aux_sym_private_extension_declaration_token1, - [44449] = 5, + [44279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, - aux_sym_primary_null_token1, - ACTIONS(1789), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3552), 1, - aux_sym_compilation_unit_token1, - STATE(1416), 1, - sym_record_definition, - [44465] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - STATE(1353), 1, - sym_aspect_specification, - ACTIONS(3554), 2, + ACTIONS(3542), 4, anon_sym_RPAREN, anon_sym_SEMI, - [44479] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1957), 1, - anon_sym_COMMA, - ACTIONS(2731), 1, - aux_sym_object_renaming_declaration_token1, - ACTIONS(3556), 1, - anon_sym_COLON, - STATE(1319), 1, - aux_sym__defining_identifier_list_repeat1, - [44495] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3559), 4, - anon_sym_SEMI, aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [44505] = 5, + aux_sym_accept_statement_token2, + [44289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1957), 1, - anon_sym_COMMA, - ACTIONS(2731), 1, - aux_sym_object_renaming_declaration_token1, - ACTIONS(3561), 1, - anon_sym_COLON, - STATE(1319), 1, - aux_sym__defining_identifier_list_repeat1, - [44521] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - aux_sym_primary_null_token1, - ACTIONS(1789), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3152), 1, - aux_sym_compilation_unit_token1, - STATE(1465), 1, - sym_record_definition, - [44537] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3564), 1, - anon_sym_COMMA, - STATE(1477), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3037), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [44551] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3431), 1, - anon_sym_SEMI, - ACTIONS(3566), 1, - aux_sym_with_clause_token2, - ACTIONS(3569), 1, - aux_sym_expression_token1, - STATE(1473), 1, - sym_record_extension_part, - [44567] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3571), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [44577] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3573), 1, - anon_sym_SEMI, - ACTIONS(3575), 1, - aux_sym_expression_token3, - STATE(1574), 1, - sym_aspect_specification, - [44593] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - aux_sym_primary_null_token1, - ACTIONS(1789), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3577), 1, - aux_sym_with_clause_token1, - STATE(1465), 1, - sym_record_definition, - [44609] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2976), 1, + ACTIONS(3544), 1, aux_sym_iterated_element_association_token2, - ACTIONS(919), 3, + ACTIONS(867), 3, sym_tick, anon_sym_DOT, anon_sym_LPAREN, - [44621] = 5, + [44301] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, - sym_identifier, - STATE(1217), 1, - sym_discriminant_specification, - STATE(1886), 1, - sym_discriminant_specification_list, - STATE(1887), 1, - sym__defining_identifier_list, - [44637] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3579), 4, - anon_sym_SEMI, + ACTIONS(2214), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [44647] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3492), 1, + ACTIONS(3231), 1, anon_sym_SEMI, - ACTIONS(3581), 1, - aux_sym_with_clause_token2, - ACTIONS(3584), 1, - aux_sym_expression_token1, - STATE(1412), 1, - sym_record_extension_part, - [44663] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3212), 1, - anon_sym_SEMI, - ACTIONS(3214), 1, + ACTIONS(3547), 1, aux_sym_package_specification_token2, - STATE(1777), 1, + STATE(1448), 1, sym_aspect_specification, - [44679] = 3, + [44317] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3588), 1, - aux_sym_expression_token1, - ACTIONS(3586), 3, + ACTIONS(3549), 1, + anon_sym_COMMA, + ACTIONS(3551), 1, + anon_sym_RPAREN, + STATE(1224), 1, + aux_sym_record_component_association_list_repeat1, + STATE(1225), 1, + aux_sym_positional_array_aggregate_repeat1, + [44333] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_COMMA, + STATE(1126), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3557), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [44347] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3559), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3562), 1, + aux_sym_package_specification_token3, + STATE(1127), 2, + sym_case_statement_alternative, + aux_sym_case_statement_repeat1, + [44361] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3564), 1, + aux_sym_package_specification_token2, + ACTIONS(3519), 3, anon_sym_SEMI, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [44691] = 5, + aux_sym_object_renaming_declaration_token1, + [44373] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3417), 1, + anon_sym_SEMI, + ACTIONS(3567), 1, + aux_sym_with_clause_token2, + ACTIONS(3570), 1, + aux_sym_expression_token1, + STATE(1436), 1, + sym_record_extension_part, + [44389] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3572), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3574), 1, + aux_sym_package_specification_token3, + STATE(1127), 2, + sym_case_statement_alternative, + aux_sym_case_statement_repeat1, + [44403] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, aux_sym_primary_null_token1, ACTIONS(1789), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3590), 1, + ACTIONS(3576), 1, aux_sym_compilation_unit_token1, - STATE(1416), 1, + STATE(1429), 1, sym_record_definition, - [44707] = 4, + [44419] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3592), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3595), 1, - aux_sym_package_specification_token3, - STATE(1140), 2, - sym_variant, - aux_sym_variant_list_repeat1, - [44721] = 4, + ACTIONS(1783), 1, + aux_sym_primary_null_token1, + ACTIONS(1789), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3578), 1, + aux_sym_with_clause_token1, + STATE(1471), 1, + sym_record_definition, + [44435] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3597), 1, - anon_sym_COMMA, - STATE(1141), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3600), 2, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3580), 1, + anon_sym_SEMI, + ACTIONS(3582), 1, + aux_sym_package_specification_token2, + STATE(1401), 1, + sym_aspect_specification, + [44451] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3584), 1, + anon_sym_SEMI, + ACTIONS(3586), 1, + aux_sym_package_specification_token2, + STATE(1360), 1, + sym_aspect_specification, + [44467] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + STATE(1373), 1, + sym_aspect_specification, + ACTIONS(3588), 2, anon_sym_RPAREN, - anon_sym_RBRACK, - [44735] = 3, + anon_sym_SEMI, + [44481] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(3590), 1, + aux_sym_package_specification_token2, + ACTIONS(3519), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [44493] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3473), 1, + anon_sym_SEMI, + ACTIONS(3593), 1, + aux_sym_with_clause_token2, + ACTIONS(3596), 1, + aux_sym_expression_token1, + STATE(1414), 1, + sym_record_extension_part, + [44509] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3598), 4, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [44519] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3600), 1, + anon_sym_LPAREN, ACTIONS(3602), 1, - anon_sym_COMMA, - ACTIONS(3037), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [44746] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, + anon_sym_SEMI, ACTIONS(3604), 1, - anon_sym_SEMI, - STATE(1622), 1, - sym_aspect_specification, - [44759] = 4, + aux_sym_accept_statement_token2, + STATE(1392), 1, + sym_formal_part, + [44535] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, + ACTIONS(1783), 1, + aux_sym_primary_null_token1, + ACTIONS(1789), 1, + aux_sym_record_component_association_list_token1, ACTIONS(3606), 1, - anon_sym_SEMI, - STATE(1893), 1, - sym_aspect_specification, - [44772] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2974), 1, - aux_sym_chunk_specification_token1, - ACTIONS(2979), 1, - anon_sym_COLON, - ACTIONS(2981), 1, - aux_sym_iterator_specification_token1, - [44785] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1897), 1, - anon_sym_COLON, - ACTIONS(1957), 1, - anon_sym_COMMA, - STATE(1319), 1, - aux_sym__defining_identifier_list_repeat1, - [44798] = 3, + aux_sym_compilation_unit_token1, + STATE(1418), 1, + sym_record_definition, + [44551] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3608), 1, - sym_identifier, - STATE(1488), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - [44809] = 4, + anon_sym_COMMA, + STATE(1141), 1, + aux_sym__array_component_association_list_repeat1, + ACTIONS(3611), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [44565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3610), 1, - anon_sym_EQ_GT, - ACTIONS(3612), 1, - anon_sym_PIPE, - STATE(1170), 1, - aux_sym_discrete_choice_list_repeat1, - [44822] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3612), 1, - anon_sym_PIPE, - ACTIONS(3614), 1, - anon_sym_EQ_GT, - STATE(1148), 1, - aux_sym_discrete_choice_list_repeat1, - [44835] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3482), 1, - aux_sym_iterator_filter_token1, - STATE(1098), 2, - sym_case_statement_alternative, - aux_sym_case_statement_repeat1, - [44846] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, + ACTIONS(3613), 1, + aux_sym_package_specification_token2, + ACTIONS(3519), 3, + anon_sym_SEMI, aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [44577] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + aux_sym_primary_null_token1, + ACTIONS(1789), 1, + aux_sym_record_component_association_list_token1, ACTIONS(3616), 1, - anon_sym_SEMI, - STATE(1762), 1, - sym_aspect_specification, - [44859] = 2, + aux_sym_compilation_unit_token1, + STATE(1418), 1, + sym_record_definition, + [44593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3618), 3, + ACTIONS(3618), 4, anon_sym_SEMI, + aux_sym_package_specification_token2, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [44868] = 4, + aux_sym_object_renaming_declaration_token1, + [44603] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, + ACTIONS(2214), 1, aux_sym_with_clause_token2, ACTIONS(3620), 1, - anon_sym_SEMI, - STATE(1637), 1, + aux_sym_package_specification_token2, + STATE(1754), 1, sym_aspect_specification, - [44881] = 2, + [44616] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3622), 3, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3622), 1, + aux_sym_package_specification_token2, + STATE(1753), 1, + sym_aspect_specification, + [44629] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3624), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [44890] = 4, + [44638] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3624), 1, + ACTIONS(3239), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [44647] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3626), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [44656] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3628), 1, + anon_sym_COMMA, + ACTIONS(3630), 1, anon_sym_RPAREN, - ACTIONS(3626), 1, - anon_sym_SEMI, - STATE(1155), 1, - aux_sym_discriminant_specification_list_repeat1, - [44903] = 2, + STATE(1164), 1, + aux_sym_actual_parameter_part_repeat1, + [44669] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3629), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [44912] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1404), 1, - sym__enumeration_literal_specification, - ACTIONS(3631), 2, - sym_identifier, - sym_character_literal, - [44923] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3633), 1, + ACTIONS(3632), 1, anon_sym_COMMA, ACTIONS(3635), 1, anon_sym_RPAREN, - STATE(1259), 1, - aux_sym__enumeration_literal_list_repeat1, - [44936] = 2, + STATE(1151), 1, + aux_sym_global_aspect_definition_repeat1, + [44682] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3162), 3, - anon_sym_SEMI, + ACTIONS(2214), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [44945] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3637), 3, + ACTIONS(3637), 1, anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [44954] = 4, + STATE(1490), 1, + sym_aspect_specification, + [44695] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3639), 1, anon_sym_COMMA, - ACTIONS(3641), 1, + ACTIONS(3642), 1, anon_sym_RPAREN, - STATE(1199), 1, - aux_sym_record_component_association_list_repeat2, - [44967] = 4, + STATE(1153), 1, + aux_sym__discrete_subtype_definition_list_repeat1, + [44708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3643), 1, - anon_sym_SEMI, - STATE(1664), 1, - sym_aspect_specification, - [44980] = 4, + STATE(1223), 1, + sym_quantifier, + ACTIONS(3041), 2, + aux_sym_use_clause_token1, + aux_sym_quantifier_token1, + [44719] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3645), 1, - anon_sym_SEMI, - STATE(1615), 1, - sym_aspect_specification, - [44993] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3647), 1, - sym_identifier, - STATE(1443), 1, - sym__named_record_component_association, - STATE(1939), 1, - sym_component_choice_list, - [45006] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3649), 1, + ACTIONS(3003), 1, anon_sym_COMMA, + ACTIONS(3644), 1, + anon_sym_SEMI, + STATE(1098), 1, + aux_sym__name_list_repeat1, + [44732] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3646), 1, + anon_sym_SEMI, + STATE(1691), 1, + sym_aspect_specification, + [44745] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3648), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [44754] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3650), 1, + anon_sym_SEMI, + STATE(1673), 1, + sym_aspect_specification, + [44767] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, ACTIONS(3652), 1, - anon_sym_RPAREN, - STATE(1165), 1, - aux_sym_record_component_association_list_repeat1, - [45019] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3600), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [45028] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3654), 1, anon_sym_SEMI, - STATE(1667), 1, + STATE(1835), 1, sym_aspect_specification, - [45041] = 2, + [44780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3656), 3, + ACTIONS(1941), 1, + anon_sym_COMMA, + ACTIONS(3654), 1, + anon_sym_COLON, + STATE(1310), 1, + aux_sym__defining_identifier_list_repeat1, + [44793] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(509), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(3656), 1, + anon_sym_LPAREN, + STATE(1517), 1, + sym_iterated_element_association, + [44806] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3658), 1, + anon_sym_SEMI, + STATE(1675), 1, + sym_aspect_specification, + [44819] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3660), 1, + anon_sym_SEMI, + STATE(1716), 1, + sym_aspect_specification, + [44832] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3628), 1, + anon_sym_COMMA, + ACTIONS(3662), 1, + anon_sym_RPAREN, + STATE(1257), 1, + aux_sym_actual_parameter_part_repeat1, + [44845] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3664), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [45050] = 4, + [44854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, - anon_sym_COMMA, - ACTIONS(3660), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_case_expression_repeat1, - [45063] = 4, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3666), 1, + anon_sym_SEMI, + STATE(1840), 1, + sym_aspect_specification, + [44867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3662), 1, - anon_sym_EQ_GT, - ACTIONS(3664), 1, - anon_sym_PIPE, - STATE(1170), 1, - aux_sym_discrete_choice_list_repeat1, - [45076] = 4, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3668), 1, + aux_sym_package_specification_token2, + STATE(1753), 1, + sym_aspect_specification, + [44880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_COMMA, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, ACTIONS(3670), 1, - anon_sym_RPAREN, - STATE(1171), 1, - aux_sym_index_constraint_repeat1, - [45089] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3672), 1, anon_sym_SEMI, - STATE(1571), 1, + STATE(1844), 1, sym_aspect_specification, - [45102] = 4, + [44893] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3672), 3, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + aux_sym_pragma_g_token1, + [44902] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + aux_sym_primary_null_token1, + ACTIONS(1789), 1, + aux_sym_record_component_association_list_token1, + STATE(1471), 1, + sym_record_definition, + [44915] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, ACTIONS(3674), 1, - anon_sym_SEMI, - STATE(1915), 1, - sym_aspect_specification, - [45115] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, + anon_sym_EQ_GT, ACTIONS(3676), 1, - anon_sym_SEMI, - STATE(1516), 1, - sym_aspect_specification, - [45128] = 4, + anon_sym_PIPE, + STATE(1191), 1, + aux_sym_discrete_choice_list_repeat1, + [44928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3186), 1, - anon_sym_SEMI, - STATE(1570), 1, - sym_aspect_specification, - [45141] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3678), 1, - anon_sym_SEMI, - STATE(1833), 1, - sym_aspect_specification, - [45154] = 2, + ACTIONS(3678), 3, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + [44937] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3680), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [45163] = 2, + [44946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3682), 3, - anon_sym_RPAREN, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - [45172] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, + ACTIONS(2214), 1, aux_sym_with_clause_token2, + ACTIONS(3682), 1, + aux_sym_package_specification_token2, + STATE(1636), 1, + sym_aspect_specification, + [44959] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3557), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [44968] = 4, + ACTIONS(3), 1, + sym_comment, ACTIONS(3684), 1, - aux_sym_package_specification_token2, - STATE(1839), 1, - sym_aspect_specification, - [45185] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3608), 1, - sym_identifier, - STATE(1740), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - [45196] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1823), 1, - anon_sym_PIPE, - ACTIONS(3686), 1, anon_sym_EQ_GT, - STATE(1262), 1, - aux_sym_component_choice_list_repeat1, - [45209] = 4, + ACTIONS(3686), 1, + anon_sym_PIPE, + STATE(1235), 1, + aux_sym_exception_choice_list_repeat1, + [44981] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3144), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(3377), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3548), 1, - aux_sym_allocator_token1, - [45222] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - aux_sym_primary_null_token1, - ACTIONS(1789), 1, - aux_sym_record_component_association_list_token1, - STATE(1465), 1, - sym_record_definition, - [45235] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, ACTIONS(3688), 1, - anon_sym_SEMI, - STATE(1753), 1, - sym_aspect_specification, - [45248] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, + sym_identifier, ACTIONS(3690), 1, - anon_sym_SEMI, - STATE(1913), 1, - sym_aspect_specification, - [45261] = 2, + aux_sym_use_clause_token2, + ACTIONS(3692), 1, + aux_sym_package_body_token1, + [44994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3692), 3, + ACTIONS(3694), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [45270] = 4, + [45003] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3694), 1, - anon_sym_SEMI, - STATE(1836), 1, - sym_aspect_specification, - [45283] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, ACTIONS(3696), 1, - aux_sym_package_specification_token2, - STATE(1491), 1, - sym_aspect_specification, - [45296] = 3, + anon_sym_EQ_GT, + ACTIONS(3698), 1, + anon_sym_PIPE, + STATE(1179), 1, + aux_sym_discrete_choice_list_repeat1, + [45016] = 2, ACTIONS(3), 1, sym_comment, - STATE(1052), 1, - aux_sym__name_list_repeat1, - ACTIONS(3698), 2, + ACTIONS(3701), 3, anon_sym_COMMA, anon_sym_RPAREN, - [45307] = 2, + anon_sym_RBRACK, + [45025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3700), 3, - anon_sym_SEMI, + ACTIONS(3611), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [45034] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45316] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3702), 1, - anon_sym_COMMA, - ACTIONS(3704), 1, - anon_sym_RPAREN, - STATE(1303), 1, - aux_sym_pragma_g_repeat1, - [45329] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3152), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3706), 1, + ACTIONS(3703), 1, anon_sym_SEMI, + STATE(1649), 1, + sym_aspect_specification, + [45047] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3705), 1, + anon_sym_COMMA, ACTIONS(3708), 1, - aux_sym_with_clause_token1, - [45342] = 4, + anon_sym_RPAREN, + STATE(1183), 1, + aux_sym_record_component_association_list_repeat2, + [45060] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3710), 1, - anon_sym_EQ_GT, + anon_sym_COMMA, ACTIONS(3712), 1, - anon_sym_PIPE, - STATE(1201), 1, - aux_sym_exception_choice_list_repeat1, - [45355] = 2, + anon_sym_RBRACK, + STATE(1126), 1, + aux_sym_positional_array_aggregate_repeat1, + [45073] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3714), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [45364] = 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45082] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3716), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - [45373] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3718), 1, - anon_sym_RPAREN, - ACTIONS(3720), 1, anon_sym_SEMI, - STATE(1294), 1, - aux_sym__parameter_specification_list_repeat1, - [45386] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3534), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [45395] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45091] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3003), 1, + anon_sym_COMMA, + ACTIONS(3718), 1, + anon_sym_SEMI, + STATE(1098), 1, + aux_sym__name_list_repeat1, + [45104] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3720), 1, + anon_sym_COMMA, ACTIONS(3722), 1, - aux_sym_package_specification_token2, - STATE(1746), 1, - sym_aspect_specification, - [45408] = 4, + anon_sym_RPAREN, + STATE(1224), 1, + aux_sym_record_component_association_list_repeat1, + [45117] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2978), 1, + aux_sym_chunk_specification_token1, + ACTIONS(2983), 1, + anon_sym_COLON, + ACTIONS(2985), 1, + aux_sym_iterator_specification_token1, + [45130] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3724), 1, + sym_identifier, + STATE(1477), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [45141] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3676), 1, + anon_sym_PIPE, + ACTIONS(3726), 1, + anon_sym_EQ_GT, + STATE(1179), 1, + aux_sym_discrete_choice_list_repeat1, + [45154] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3728), 1, anon_sym_COMMA, - ACTIONS(3727), 1, + ACTIONS(3730), 1, anon_sym_RPAREN, - STATE(1199), 1, - aux_sym_record_component_association_list_repeat2, - [45421] = 4, + STATE(1281), 1, + aux_sym__enumeration_literal_list_repeat1, + [45167] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, + ACTIONS(2214), 1, aux_sym_with_clause_token2, - ACTIONS(3729), 1, + ACTIONS(3180), 1, anon_sym_SEMI, - STATE(1657), 1, + STATE(1671), 1, sym_aspect_specification, - [45434] = 4, + [45180] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3731), 1, - anon_sym_EQ_GT, - ACTIONS(3733), 1, - anon_sym_PIPE, - STATE(1201), 1, - aux_sym_exception_choice_list_repeat1, - [45447] = 2, + ACTIONS(3732), 1, + sym_identifier, + ACTIONS(3734), 1, + aux_sym_use_clause_token2, + ACTIONS(3736), 1, + aux_sym_package_body_token1, + [45193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3736), 3, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - aux_sym_pragma_g_token1, - [45456] = 4, + STATE(1406), 1, + sym__enumeration_literal_specification, + ACTIONS(3738), 2, + sym_identifier, + sym_character_literal, + [45204] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1821), 1, - anon_sym_EQ_GT, - ACTIONS(1823), 1, - anon_sym_PIPE, - STATE(1181), 1, - aux_sym_component_choice_list_repeat1, - [45469] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, + ACTIONS(2214), 1, aux_sym_with_clause_token2, - ACTIONS(3738), 1, - aux_sym_package_specification_token2, - STATE(1839), 1, + ACTIONS(3314), 1, + anon_sym_SEMI, + STATE(1873), 1, sym_aspect_specification, - [45482] = 4, + [45217] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, ACTIONS(3740), 1, - aux_sym_package_specification_token2, - STATE(1875), 1, - sym_aspect_specification, - [45495] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3742), 1, - aux_sym_package_specification_token2, - STATE(1923), 1, - sym_aspect_specification, - [45508] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - aux_sym_primary_null_token1, - ACTIONS(1789), 1, - aux_sym_record_component_association_list_token1, - STATE(1427), 1, - sym_record_definition, - [45521] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3744), 1, - anon_sym_SEMI, - STATE(1760), 1, - sym_aspect_specification, - [45534] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - aux_sym_attribute_designator_token1, - STATE(1168), 2, - sym_access_to_subprogram_definition, - sym_access_to_object_definition, - [45545] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3639), 1, anon_sym_COMMA, - ACTIONS(3746), 1, + ACTIONS(3743), 1, anon_sym_RPAREN, - STATE(1161), 1, - aux_sym_record_component_association_list_repeat2, - [45558] = 4, + STATE(1197), 1, + aux_sym__index_subtype_definition_list_repeat1, + [45230] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(505), 1, - aux_sym_value_sequence_token1, - STATE(1498), 1, - sym_iterated_element_association, - [45571] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - aux_sym_primary_null_token1, - ACTIONS(1789), 1, - aux_sym_record_component_association_list_token1, - STATE(1416), 1, - sym_record_definition, - [45584] = 4, + ACTIONS(3251), 1, + anon_sym_EQ_GT, + ACTIONS(3745), 1, + anon_sym_PIPE, + STATE(1198), 1, + aux_sym_component_choice_list_repeat1, + [45243] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3748), 1, anon_sym_RPAREN, ACTIONS(3750), 1, anon_sym_SEMI, - STATE(1213), 1, - aux_sym__parameter_specification_list_repeat1, - [45597] = 4, + STATE(1199), 1, + aux_sym_discriminant_specification_list_repeat1, + [45256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3753), 1, - anon_sym_SEMI, - STATE(1729), 1, - sym_aspect_specification, - [45610] = 4, + ACTIONS(3526), 1, + aux_sym_expression_token2, + ACTIONS(3753), 2, + aux_sym_expression_token3, + aux_sym_expression_token4, + [45267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3755), 1, - anon_sym_COMMA, - ACTIONS(3757), 1, - anon_sym_RPAREN, - STATE(1171), 1, - aux_sym_index_constraint_repeat1, - [45623] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3759), 3, + ACTIONS(3755), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [45632] = 4, + [45276] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3757), 1, + anon_sym_COMMA, + ACTIONS(3759), 1, + anon_sym_RPAREN, + STATE(1211), 1, + aux_sym_index_constraint_repeat1, + [45289] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3761), 1, - anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(3763), 1, - anon_sym_SEMI, - STATE(1292), 1, - aux_sym_discriminant_specification_list_repeat1, - [45645] = 4, + anon_sym_RPAREN, + STATE(1183), 1, + aux_sym_record_component_association_list_repeat2, + [45302] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, ACTIONS(3765), 1, - anon_sym_SEMI, - STATE(1629), 1, - sym_aspect_specification, - [45658] = 4, + anon_sym_COMMA, + ACTIONS(3768), 1, + anon_sym_RPAREN, + STATE(1204), 1, + aux_sym_record_component_association_list_repeat1, + [45315] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, + ACTIONS(3190), 1, + sym_identifier, + STATE(1487), 1, + sym_parameter_specification, + STATE(1699), 1, + sym__defining_identifier_list, + [45328] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3770), 1, + anon_sym_RPAREN, + ACTIONS(3772), 1, + anon_sym_SEMI, + STATE(1206), 1, + aux_sym__parameter_specification_list_repeat1, + [45341] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3775), 3, + anon_sym_SEMI, aux_sym_with_clause_token2, - ACTIONS(3767), 1, - anon_sym_SEMI, - STATE(1911), 1, - sym_aspect_specification, - [45671] = 4, + aux_sym_expression_token3, + [45350] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, - anon_sym_COMMA, - ACTIONS(3769), 1, - anon_sym_RPAREN, - STATE(1169), 1, - aux_sym_case_expression_repeat1, - [45684] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3771), 1, - anon_sym_COMMA, - ACTIONS(3773), 1, - anon_sym_RPAREN, - STATE(1223), 1, - aux_sym_record_component_association_list_repeat1, - [45697] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3204), 1, - aux_sym_allocator_token1, - ACTIONS(3775), 1, - aux_sym_with_clause_token1, ACTIONS(3777), 1, - aux_sym_private_type_declaration_token2, - [45710] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3771), 1, - anon_sym_COMMA, - ACTIONS(3779), 1, anon_sym_RPAREN, - STATE(1165), 1, - aux_sym_record_component_association_list_repeat1, - [45723] = 4, + ACTIONS(3779), 1, + anon_sym_SEMI, + STATE(1206), 1, + aux_sym__parameter_specification_list_repeat1, + [45363] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3781), 1, anon_sym_COMMA, ACTIONS(3783), 1, anon_sym_RPAREN, - STATE(1141), 1, - aux_sym_positional_array_aggregate_repeat1, - [45736] = 4, + STATE(1260), 1, + aux_sym_case_expression_repeat1, + [45376] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, ACTIONS(3785), 1, - anon_sym_SEMI, - STATE(1620), 1, - sym_aspect_specification, - [45749] = 4, + anon_sym_COMMA, + ACTIONS(3788), 1, + anon_sym_RPAREN, + STATE(1210), 1, + aux_sym_index_constraint_repeat1, + [45389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 1, + ACTIONS(3757), 1, anon_sym_COMMA, ACTIONS(3790), 1, - anon_sym_COLON, - STATE(1226), 1, - aux_sym__defining_identifier_list_repeat1, - [45762] = 4, + anon_sym_RPAREN, + STATE(1210), 1, + aux_sym_index_constraint_repeat1, + [45402] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, ACTIONS(3792), 1, - anon_sym_SEMI, - STATE(1638), 1, - sym_aspect_specification, - [45775] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, + anon_sym_COMMA, ACTIONS(3794), 1, - anon_sym_SEMI, - STATE(1769), 1, - sym_aspect_specification, - [45788] = 2, + anon_sym_RPAREN, + STATE(1318), 1, + aux_sym__discrete_subtype_definition_list_repeat1, + [45415] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 3, - anon_sym_SEMI, + ACTIONS(2214), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45797] = 4, + ACTIONS(3796), 1, + anon_sym_SEMI, + STATE(1792), 1, + sym_aspect_specification, + [45428] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, + ACTIONS(2214), 1, aux_sym_with_clause_token2, ACTIONS(3798), 1, anon_sym_SEMI, - STATE(1842), 1, + STATE(1766), 1, sym_aspect_specification, - [45810] = 2, + [45441] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3800), 3, - anon_sym_SEMI, + ACTIONS(2214), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45819] = 2, + ACTIONS(3800), 1, + anon_sym_SEMI, + STATE(1736), 1, + sym_aspect_specification, + [45454] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3802), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [45828] = 3, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3802), 1, + anon_sym_SEMI, + STATE(1884), 1, + sym_aspect_specification, + [45467] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, ACTIONS(3804), 1, - sym_identifier, - ACTIONS(3806), 2, anon_sym_SEMI, - aux_sym_with_clause_token2, - [45839] = 2, + STATE(1632), 1, + sym_aspect_specification, + [45480] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3802), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [45848] = 4, + ACTIONS(3781), 1, + anon_sym_COMMA, + ACTIONS(3806), 1, + anon_sym_RPAREN, + STATE(1209), 1, + aux_sym_case_expression_repeat1, + [45493] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, + ACTIONS(2214), 1, aux_sym_with_clause_token2, ACTIONS(3808), 1, anon_sym_SEMI, - STATE(1891), 1, + STATE(1631), 1, sym_aspect_specification, - [45861] = 4, + [45506] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3266), 1, - anon_sym_SEMI, - STATE(1683), 1, - sym_aspect_specification, - [45874] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3810), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45883] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3812), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [45892] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3814), 1, - anon_sym_SEMI, - STATE(1585), 1, - sym_aspect_specification, - [45905] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3816), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [45914] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3818), 1, - anon_sym_SEMI, - STATE(1595), 1, - sym_aspect_specification, - [45927] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3820), 1, + ACTIONS(1909), 1, + anon_sym_COLON, + ACTIONS(1941), 1, anon_sym_COMMA, - ACTIONS(3822), 1, - anon_sym_RPAREN, - STATE(1315), 1, - aux_sym_global_aspect_definition_repeat1, - [45940] = 4, + STATE(1160), 1, + aux_sym__defining_identifier_list_repeat1, + [45519] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3824), 1, + ACTIONS(3810), 1, anon_sym_SEMI, - STATE(1535), 1, - sym_aspect_specification, - [45953] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3826), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, + ACTIONS(3812), 1, + aux_sym_package_specification_token2, + ACTIONS(3814), 1, aux_sym_expression_token3, - [45962] = 2, + [45532] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3828), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [45971] = 4, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3217), 1, + anon_sym_SEMI, + STATE(1776), 1, + sym_aspect_specification, + [45545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3830), 1, + ACTIONS(3724), 1, sym_identifier, - ACTIONS(3832), 1, - aux_sym_use_clause_token2, + STATE(1824), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [45556] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3720), 1, + anon_sym_COMMA, + ACTIONS(3816), 1, + anon_sym_RPAREN, + STATE(1204), 1, + aux_sym_record_component_association_list_repeat1, + [45569] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3818), 1, + anon_sym_COMMA, + ACTIONS(3820), 1, + anon_sym_RPAREN, + STATE(1126), 1, + aux_sym_positional_array_aggregate_repeat1, + [45582] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3822), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [45591] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3824), 1, + anon_sym_COMMA, + ACTIONS(3052), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [45602] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3826), 1, + anon_sym_SEMI, + STATE(1506), 1, + sym_aspect_specification, + [45615] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3828), 1, + anon_sym_COMMA, + ACTIONS(3830), 1, + anon_sym_RPAREN, + STATE(1304), 1, + aux_sym_pragma_g_repeat1, + [45628] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3832), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + [45637] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, ACTIONS(3834), 1, - aux_sym_package_body_token1, - [45984] = 2, + anon_sym_SEMI, + STATE(1629), 1, + sym_aspect_specification, + [45650] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3836), 3, aux_sym_package_specification_token3, aux_sym_expression_token3, aux_sym_expression_token4, - [45993] = 2, + [45659] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 3, - anon_sym_SEMI, + ACTIONS(2214), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46002] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3840), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [46011] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3842), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [46020] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3844), 3, + ACTIONS(3838), 1, anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46029] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3846), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [46038] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3848), 3, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - aux_sym_pragma_g_token1, - [46047] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3850), 1, - anon_sym_SEMI, - STATE(1734), 1, + STATE(1625), 1, sym_aspect_specification, - [46060] = 2, + [45672] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3852), 3, - anon_sym_SEMI, + ACTIONS(2214), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46069] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3854), 1, - anon_sym_SEMI, - STATE(1773), 1, - sym_aspect_specification, - [46082] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3856), 1, - anon_sym_SEMI, - STATE(1513), 1, - sym_aspect_specification, - [46095] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3858), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [46104] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3860), 1, - anon_sym_COMMA, - ACTIONS(3863), 1, - anon_sym_RPAREN, - STATE(1259), 1, - aux_sym__enumeration_literal_list_repeat1, - [46117] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3865), 1, - anon_sym_SEMI, - STATE(1673), 1, - sym_aspect_specification, - [46130] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3867), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [46139] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3869), 1, - anon_sym_EQ_GT, - ACTIONS(3871), 1, - anon_sym_PIPE, - STATE(1262), 1, - aux_sym_component_choice_list_repeat1, - [46152] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3874), 1, - anon_sym_SEMI, - STATE(1517), 1, - sym_aspect_specification, - [46165] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3876), 1, - anon_sym_COMMA, - ACTIONS(3879), 1, - anon_sym_RPAREN, - STATE(1264), 1, - aux_sym_actual_parameter_part_repeat1, - [46178] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3881), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [46187] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3883), 1, - anon_sym_SEMI, - STATE(1882), 1, - sym_aspect_specification, - [46200] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3885), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46209] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3887), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46218] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3889), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46227] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3891), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46236] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3893), 3, - sym_identifier, - sym_string_literal, - sym_character_literal, - [46245] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3895), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46254] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3897), 3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_expression_token3, - [46263] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3899), 1, - anon_sym_SEMI, - ACTIONS(3901), 1, - aux_sym_package_specification_token2, - ACTIONS(3903), 1, - aux_sym_expression_token3, - [46276] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3425), 1, - aux_sym_expression_token2, - ACTIONS(3905), 2, - aux_sym_expression_token3, - aux_sym_expression_token4, - [46287] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3755), 1, - anon_sym_COMMA, - ACTIONS(3907), 1, - anon_sym_RPAREN, - STATE(1215), 1, - aux_sym_index_constraint_repeat1, - [46300] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3909), 1, - aux_sym_package_specification_token2, - STATE(1617), 1, - sym_aspect_specification, - [46313] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3911), 1, - anon_sym_COMMA, - ACTIONS(3914), 1, - anon_sym_RPAREN, - STATE(1278), 1, - aux_sym__index_subtype_definition_list_repeat1, - [46326] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3916), 1, - anon_sym_SEMI, - STATE(1543), 1, - sym_aspect_specification, - [46339] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3918), 1, - anon_sym_COMMA, - ACTIONS(3920), 1, - anon_sym_RPAREN, - STATE(1264), 1, - aux_sym_actual_parameter_part_repeat1, - [46352] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3781), 1, - anon_sym_COMMA, - ACTIONS(3922), 1, - anon_sym_RPAREN, - STATE(1224), 1, - aux_sym_positional_array_aggregate_repeat1, - [46365] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2983), 1, - anon_sym_COMMA, - ACTIONS(3924), 1, - anon_sym_SEMI, - STATE(1052), 1, - aux_sym__name_list_repeat1, - [46378] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3926), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [46387] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3515), 1, - sym_identifier, - STATE(941), 1, - sym__aspect_mark, - STATE(1036), 1, - sym_aspect_association, - [46400] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3926), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [46409] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3928), 1, - anon_sym_SEMI, - STATE(1790), 1, - sym_aspect_specification, - [46422] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3930), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [46431] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3932), 1, - anon_sym_SEMI, - STATE(1792), 1, - sym_aspect_specification, - [46444] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3934), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_aspect_specification, - [46457] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3244), 1, - sym_identifier, - STATE(1483), 1, - sym_discriminant_specification, - STATE(1887), 1, - sym__defining_identifier_list, - [46470] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3936), 1, - anon_sym_COMMA, - ACTIONS(3939), 1, - anon_sym_RPAREN, - STATE(1291), 1, - aux_sym__discrete_subtype_definition_list_repeat1, - [46483] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3763), 1, - anon_sym_SEMI, - ACTIONS(3941), 1, - anon_sym_RPAREN, - STATE(1155), 1, - aux_sym_discriminant_specification_list_repeat1, - [46496] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3943), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46505] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3720), 1, - anon_sym_SEMI, - ACTIONS(3945), 1, - anon_sym_RPAREN, - STATE(1213), 1, - aux_sym__parameter_specification_list_repeat1, - [46518] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3293), 1, - anon_sym_SEMI, - STATE(1540), 1, - sym_aspect_specification, - [46531] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3947), 1, - anon_sym_SEMI, - STATE(1541), 1, - sym_aspect_specification, - [46544] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3949), 1, - anon_sym_SEMI, - STATE(1542), 1, - sym_aspect_specification, - [46557] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3244), 1, - sym_identifier, - STATE(1435), 1, - sym_parameter_specification, - STATE(1872), 1, - sym__defining_identifier_list, - [46570] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3918), 1, - anon_sym_COMMA, - ACTIONS(3951), 1, - anon_sym_RPAREN, - STATE(1280), 1, - aux_sym_actual_parameter_part_repeat1, - [46583] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3953), 1, - anon_sym_EQ_GT, - STATE(1193), 1, - aux_sym_exception_choice_list_repeat1, - [46596] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3955), 1, - anon_sym_COMMA, - ACTIONS(3957), 1, - anon_sym_RPAREN, - STATE(1336), 1, - aux_sym__discrete_subtype_definition_list_repeat1, - [46609] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2983), 1, - anon_sym_COMMA, - ACTIONS(3698), 1, - anon_sym_SEMI, - STATE(1052), 1, - aux_sym__name_list_repeat1, - [46622] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3959), 1, - anon_sym_COMMA, - ACTIONS(3962), 1, - anon_sym_RPAREN, - STATE(1303), 1, - aux_sym_pragma_g_repeat1, - [46635] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(3967), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_case_expression_repeat1, - [46648] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3633), 1, - anon_sym_COMMA, - ACTIONS(3969), 1, - anon_sym_RPAREN, - STATE(1158), 1, - aux_sym__enumeration_literal_list_repeat1, - [46661] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3702), 1, - anon_sym_COMMA, - ACTIONS(3971), 1, - anon_sym_RPAREN, - STATE(1191), 1, - aux_sym_pragma_g_repeat1, - [46674] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3973), 3, - anon_sym_SEMI, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - [46683] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3975), 3, - aux_sym_terminate_alternative_token1, - aux_sym_accept_statement_token1, - aux_sym_delay_until_statement_token1, - [46692] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3820), 1, - anon_sym_COMMA, - ACTIONS(3977), 1, - anon_sym_RPAREN, - STATE(1242), 1, - aux_sym_global_aspect_definition_repeat1, - [46705] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3979), 1, - anon_sym_COMMA, - ACTIONS(3981), 1, - anon_sym_RPAREN, - STATE(1322), 1, - aux_sym__index_subtype_definition_list_repeat1, - [46718] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3423), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [46727] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3983), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [46736] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3985), 1, - aux_sym_package_specification_token2, - STATE(1875), 1, - sym_aspect_specification, - [46749] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3351), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [46758] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3987), 1, - anon_sym_COMMA, - ACTIONS(3990), 1, - anon_sym_RPAREN, - STATE(1315), 1, - aux_sym_global_aspect_definition_repeat1, - [46771] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3992), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46780] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(3994), 1, - anon_sym_SEMI, - STATE(1610), 1, - sym_aspect_specification, - [46793] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1180), 1, - sym_quantifier, - ACTIONS(3065), 2, - aux_sym_use_clause_token1, - aux_sym_quantifier_token1, - [46804] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1957), 1, - anon_sym_COMMA, - ACTIONS(3996), 1, - anon_sym_COLON, - STATE(1226), 1, - aux_sym__defining_identifier_list_repeat1, - [46817] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(499), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(3998), 1, - anon_sym_LPAREN, - STATE(1849), 1, - sym_iterated_element_association, - [46830] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4000), 3, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - [46839] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3979), 1, - anon_sym_COMMA, - ACTIONS(4002), 1, - anon_sym_RPAREN, - STATE(1278), 1, - aux_sym__index_subtype_definition_list_repeat1, - [46852] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(4004), 1, - anon_sym_SEMI, - STATE(1838), 1, - sym_aspect_specification, - [46865] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(4006), 1, - anon_sym_SEMI, - STATE(1714), 1, - sym_aspect_specification, - [46878] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4008), 3, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - [46887] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(4010), 1, - anon_sym_SEMI, - STATE(1578), 1, - sym_aspect_specification, - [46900] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3608), 1, - sym_identifier, - STATE(1493), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - [46911] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(4012), 1, - anon_sym_SEMI, - STATE(1579), 1, - sym_aspect_specification, - [46924] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(4014), 1, - anon_sym_SEMI, - STATE(1810), 1, - sym_aspect_specification, - [46937] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(4016), 1, - anon_sym_SEMI, - STATE(1926), 1, - sym_aspect_specification, - [46950] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4018), 1, - sym_identifier, - ACTIONS(4020), 1, - aux_sym_use_clause_token2, - ACTIONS(4022), 1, - aux_sym_package_body_token1, - [46963] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(4024), 1, - anon_sym_SEMI, - STATE(1804), 1, - sym_aspect_specification, - [46976] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4026), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46985] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3371), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(4028), 1, - aux_sym_attribute_designator_token3, - STATE(1479), 1, - sym_real_range_specification, - [46998] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(4030), 1, - anon_sym_SEMI, - STATE(1668), 1, - sym_aspect_specification, - [47011] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3955), 1, - anon_sym_COMMA, - ACTIONS(4032), 1, - anon_sym_RPAREN, - STATE(1291), 1, - aux_sym__discrete_subtype_definition_list_repeat1, - [47024] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - aux_sym_with_clause_token2, - ACTIONS(4034), 1, + ACTIONS(3840), 1, anon_sym_SEMI, STATE(1666), 1, sym_aspect_specification, - [47037] = 4, + [45685] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4036), 1, - anon_sym_COMMA, - ACTIONS(4038), 1, - anon_sym_RBRACK, - STATE(1141), 1, - aux_sym_positional_array_aggregate_repeat1, - [47050] = 3, + ACTIONS(3842), 1, + anon_sym_EQ_GT, + ACTIONS(3844), 1, + anon_sym_PIPE, + STATE(1235), 1, + aux_sym_exception_choice_list_repeat1, + [45698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4018), 1, - sym_identifier, - ACTIONS(4020), 1, - aux_sym_use_clause_token2, - [47060] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4040), 1, + ACTIONS(3847), 3, + aux_sym_iterator_filter_token1, aux_sym_package_specification_token3, - ACTIONS(4042), 1, - aux_sym_exception_declaration_token1, - [47070] = 3, + aux_sym_pragma_g_token1, + [45707] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4044), 1, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3849), 1, anon_sym_SEMI, - ACTIONS(4046), 1, - aux_sym_accept_statement_token2, - [47080] = 3, + STATE(1621), 1, + sym_aspect_specification, + [45720] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4048), 1, - sym_identifier, - ACTIONS(4050), 1, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3851), 1, + aux_sym_package_specification_token2, + STATE(1565), 1, + sym_aspect_specification, + [45733] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1827), 1, + anon_sym_PIPE, + ACTIONS(3853), 1, + anon_sym_EQ_GT, + STATE(1198), 1, + aux_sym_component_choice_list_repeat1, + [45746] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3855), 1, anon_sym_SEMI, - [47090] = 3, + STATE(1893), 1, + sym_aspect_specification, + [45759] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4052), 1, - sym_identifier, - ACTIONS(4054), 1, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3857), 1, + aux_sym_package_specification_token2, + STATE(1841), 1, + sym_aspect_specification, + [45772] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3066), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3430), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3538), 1, + aux_sym_allocator_token1, + [45785] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3859), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [45794] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + aux_sym_primary_null_token1, + ACTIONS(1789), 1, + aux_sym_record_component_association_list_token1, + STATE(1429), 1, + sym_record_definition, + [45807] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3861), 1, anon_sym_SEMI, - [47100] = 2, + STATE(1895), 1, + sym_aspect_specification, + [45820] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3356), 2, + ACTIONS(3863), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [45829] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + aux_sym_primary_null_token1, + ACTIONS(1789), 1, + aux_sym_record_component_association_list_token1, + STATE(1418), 1, + sym_record_definition, + [45842] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3865), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45851] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3867), 1, + anon_sym_COMMA, + ACTIONS(3869), 1, anon_sym_RPAREN, - anon_sym_SEMI, - [47108] = 3, + STATE(1151), 1, + aux_sym_global_aspect_definition_repeat1, + [45864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4056), 1, + ACTIONS(3871), 3, + anon_sym_RPAREN, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + [45873] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3873), 1, + anon_sym_SEMI, + STATE(1640), 1, + sym_aspect_specification, + [45886] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3875), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3877), 1, + sym_identifier, + ACTIONS(3879), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [45906] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 1, + anon_sym_PIPE, + ACTIONS(3881), 1, + anon_sym_EQ_GT, + STATE(1176), 1, + aux_sym_exception_choice_list_repeat1, + [45919] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3883), 1, + anon_sym_SEMI, + STATE(1815), 1, + sym_aspect_specification, + [45932] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3779), 1, + anon_sym_SEMI, + ACTIONS(3885), 1, + anon_sym_RPAREN, + STATE(1208), 1, + aux_sym__parameter_specification_list_repeat1, + [45945] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3887), 1, + anon_sym_COMMA, + ACTIONS(3890), 1, + anon_sym_RPAREN, + STATE(1257), 1, + aux_sym_actual_parameter_part_repeat1, + [45958] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3892), 1, + anon_sym_SEMI, + STATE(1515), 1, + sym_aspect_specification, + [45971] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3894), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45980] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3896), 1, + anon_sym_COMMA, + ACTIONS(3899), 1, + anon_sym_RPAREN, + STATE(1260), 1, + aux_sym_case_expression_repeat1, + [45993] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3901), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46002] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3903), 1, + anon_sym_SEMI, + STATE(1889), 1, + sym_aspect_specification, + [46015] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3905), 1, + anon_sym_SEMI, + STATE(1624), 1, + sym_aspect_specification, + [46028] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3907), 1, + anon_sym_SEMI, + STATE(1519), 1, + sym_aspect_specification, + [46041] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3909), 1, + aux_sym_package_specification_token2, + STATE(1527), 1, + sym_aspect_specification, + [46054] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3911), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46063] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3913), 1, + anon_sym_SEMI, + STATE(1531), 1, + sym_aspect_specification, + [46076] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3915), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [46085] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3917), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46094] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3919), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46103] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3921), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46112] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3923), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [46121] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3925), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46130] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3243), 1, + aux_sym_allocator_token1, + ACTIONS(3927), 1, + aux_sym_with_clause_token1, + ACTIONS(3929), 1, + aux_sym_private_type_declaration_token2, + [46143] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3931), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [46152] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3223), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3933), 1, + anon_sym_SEMI, + ACTIONS(3935), 1, + aux_sym_with_clause_token1, + [46165] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3937), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46174] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3939), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [46183] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3941), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46192] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3939), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [46201] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3943), 1, + anon_sym_COMMA, + ACTIONS(3946), 1, + anon_sym_RPAREN, + STATE(1281), 1, + aux_sym__enumeration_literal_list_repeat1, + [46214] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3948), 1, + anon_sym_SEMI, + STATE(1913), 1, + sym_aspect_specification, + [46227] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3950), 1, + anon_sym_SEMI, + STATE(1915), 1, + sym_aspect_specification, + [46240] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3828), 1, + anon_sym_COMMA, + ACTIONS(3952), 1, + anon_sym_RPAREN, + STATE(1229), 1, + aux_sym_pragma_g_repeat1, + [46253] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3954), 1, + anon_sym_SEMI, + STATE(1894), 1, + sym_aspect_specification, + [46266] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3956), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46275] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3958), 1, + anon_sym_SEMI, + STATE(1568), 1, + sym_aspect_specification, + [46288] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3960), 3, + anon_sym_SEMI, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + [46297] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3499), 1, + sym_identifier, + STATE(938), 1, + sym__aspect_mark, + STATE(1041), 1, + sym_aspect_association, + [46310] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3761), 1, + anon_sym_COMMA, + ACTIONS(3962), 1, + anon_sym_RPAREN, + STATE(1203), 1, + aux_sym_record_component_association_list_repeat2, + [46323] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3964), 1, + aux_sym_package_specification_token2, + STATE(1565), 1, + sym_aspect_specification, + [46336] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3966), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46345] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3968), 1, + anon_sym_SEMI, + STATE(1888), 1, + sym_aspect_specification, + [46358] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3970), 1, + anon_sym_SEMI, + STATE(1874), 1, + sym_aspect_specification, + [46371] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3972), 1, + anon_sym_SEMI, + STATE(1572), 1, + sym_aspect_specification, + [46384] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3974), 1, + anon_sym_RPAREN, + ACTIONS(3976), 1, + anon_sym_SEMI, + STATE(1311), 1, + aux_sym_discriminant_specification_list_repeat1, + [46397] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3978), 1, + anon_sym_SEMI, + STATE(1543), 1, + sym_aspect_specification, + [46410] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3980), 1, + anon_sym_SEMI, + STATE(1544), 1, + sym_aspect_specification, + [46423] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(3982), 1, + anon_sym_SEMI, + STATE(1928), 1, + sym_aspect_specification, + [46436] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3984), 3, + aux_sym_terminate_alternative_token1, + aux_sym_accept_statement_token1, + aux_sym_delay_until_statement_token1, + [46445] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3411), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(3986), 1, + aux_sym_attribute_designator_token3, + STATE(1461), 1, + sym_real_range_specification, + [46458] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3818), 1, + anon_sym_COMMA, + ACTIONS(3988), 1, + anon_sym_RPAREN, + STATE(1225), 1, + aux_sym_positional_array_aggregate_repeat1, + [46471] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3990), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [46480] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3992), 1, + anon_sym_COMMA, + ACTIONS(3995), 1, + anon_sym_RPAREN, + STATE(1304), 1, + aux_sym_pragma_g_repeat1, + [46493] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3997), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46502] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3990), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [46511] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3999), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46520] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3728), 1, + anon_sym_COMMA, + ACTIONS(4001), 1, + anon_sym_RPAREN, + STATE(1192), 1, + aux_sym__enumeration_literal_list_repeat1, + [46533] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(4003), 1, + anon_sym_SEMI, + STATE(1755), 1, + sym_aspect_specification, + [46546] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4005), 1, + anon_sym_COMMA, + ACTIONS(4008), 1, + anon_sym_COLON, + STATE(1310), 1, + aux_sym__defining_identifier_list_repeat1, + [46559] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_SEMI, + ACTIONS(4010), 1, + anon_sym_RPAREN, + STATE(1199), 1, + aux_sym_discriminant_specification_list_repeat1, + [46572] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4012), 3, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(4058), 1, aux_sym_access_to_subprogram_definition_token3, - [47118] = 3, + aux_sym_entry_declaration_token1, + [46581] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3724), 1, + sym_identifier, + STATE(1495), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [46592] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(4014), 1, + anon_sym_SEMI, + STATE(1764), 1, + sym_aspect_specification, + [46605] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(4016), 1, + anon_sym_SEMI, + STATE(1771), 1, + sym_aspect_specification, + [46618] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3190), 1, + sym_identifier, + STATE(1458), 1, + sym_discriminant_specification, + STATE(1793), 1, + sym__defining_identifier_list, + [46631] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4018), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [46640] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3792), 1, + anon_sym_COMMA, + ACTIONS(4020), 1, + anon_sym_RPAREN, + STATE(1153), 1, + aux_sym__discrete_subtype_definition_list_repeat1, + [46653] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4022), 1, + anon_sym_COMMA, + ACTIONS(4024), 1, + anon_sym_RPAREN, + STATE(1197), 1, + aux_sym__index_subtype_definition_list_repeat1, + [46666] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(4026), 1, + anon_sym_SEMI, + STATE(1580), 1, + sym_aspect_specification, + [46679] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(4028), 1, + anon_sym_SEMI, + STATE(1581), 1, + sym_aspect_specification, + [46692] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4030), 3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_expression_token3, + [46701] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3572), 1, + aux_sym_iterator_filter_token1, + STATE(1130), 2, + sym_case_statement_alternative, + aux_sym_case_statement_repeat1, + [46712] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4032), 3, + sym_identifier, + sym_string_literal, + sym_character_literal, + [46721] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(4034), 1, + anon_sym_SEMI, + STATE(1598), 1, + sym_aspect_specification, + [46734] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(509), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(513), 1, + aux_sym_value_sequence_token1, + STATE(1500), 1, + sym_iterated_element_association, + [46747] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(4036), 1, + anon_sym_SEMI, + STATE(1775), 1, + sym_aspect_specification, + [46760] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(4038), 1, + anon_sym_SEMI, + STATE(1891), 1, + sym_aspect_specification, + [46773] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1767), 1, + aux_sym_attribute_designator_token1, + STATE(1286), 2, + sym_access_to_subprogram_definition, + sym_access_to_object_definition, + [46784] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3524), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [46793] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1098), 1, + aux_sym__name_list_repeat1, + ACTIONS(3644), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46804] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(4040), 1, + anon_sym_SEMI, + STATE(1925), 1, + sym_aspect_specification, + [46817] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4042), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [46826] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3867), 1, + anon_sym_COMMA, + ACTIONS(4044), 1, + anon_sym_RPAREN, + STATE(1249), 1, + aux_sym_global_aspect_definition_repeat1, + [46839] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4046), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [46848] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + aux_sym_with_clause_token2, + ACTIONS(4048), 1, + anon_sym_SEMI, + STATE(1922), 1, + sym_aspect_specification, + [46861] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3363), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [46870] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4050), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [46879] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4022), 1, + anon_sym_COMMA, + ACTIONS(4052), 1, + anon_sym_RPAREN, + STATE(1319), 1, + aux_sym__index_subtype_definition_list_repeat1, + [46892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4054), 1, + aux_sym_with_clause_token2, + ACTIONS(4056), 1, + aux_sym_expression_token1, + [46902] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4058), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46910] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4060), 1, - sym_identifier, + aux_sym_access_to_subprogram_definition_token2, ACTIONS(4062), 1, - anon_sym_SEMI, - [47128] = 2, + aux_sym_access_to_subprogram_definition_token3, + [46920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3367), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47136] = 3, + ACTIONS(509), 1, + aux_sym_iterated_element_association_token1, + STATE(1603), 1, + sym_iterated_element_association, + [46930] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4064), 1, sym_identifier, + STATE(237), 1, + sym_reduction_attribute_designator, + [46940] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(259), 1, + aux_sym_package_specification_token3, + ACTIONS(261), 1, + aux_sym_subprogram_body_token1, + [46950] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(4066), 1, - anon_sym_SEMI, - [47146] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4068), 1, sym_identifier, - ACTIONS(4070), 1, + ACTIONS(4068), 1, anon_sym_SEMI, - [47156] = 2, + [46960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 2, - anon_sym_RPAREN, + ACTIONS(4070), 1, + sym_identifier, + ACTIONS(4072), 1, anon_sym_SEMI, - [47164] = 3, + [46970] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4074), 1, - anon_sym_SEMI, + aux_sym_access_to_subprogram_definition_token2, ACTIONS(4076), 1, - aux_sym_package_specification_token2, - [47174] = 2, + aux_sym_access_to_subprogram_definition_token3, + [46980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4078), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47182] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4080), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47190] = 3, + ACTIONS(4078), 1, + aux_sym_package_specification_token3, + ACTIONS(4080), 1, + aux_sym_exception_declaration_token1, + [46990] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4082), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(4084), 1, - anon_sym_SEMI, - [47200] = 3, + aux_sym_accept_statement_token2, + [47000] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4086), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4086), 1, - sym_identifier, ACTIONS(4088), 1, - anon_sym_SEMI, - [47210] = 3, - ACTIONS(3), 1, - sym_comment, + sym_identifier, ACTIONS(4090), 1, - sym_identifier, + anon_sym_SEMI, + [47018] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(4092), 1, - anon_sym_SEMI, - [47220] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3144), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(3548), 1, - aux_sym_allocator_token1, - [47230] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 1, sym_identifier, - ACTIONS(4096), 1, + ACTIONS(4094), 1, anon_sym_SEMI, - [47240] = 3, + [47028] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4096), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47036] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4098), 1, sym_identifier, ACTIONS(4100), 1, anon_sym_SEMI, - [47250] = 2, + [47046] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4102), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47258] = 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47054] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4104), 1, - aux_sym_compilation_unit_token1, + sym_identifier, ACTIONS(4106), 1, - aux_sym_with_clause_token1, - [47268] = 3, + anon_sym_SEMI, + [47064] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4108), 1, + ACTIONS(4108), 2, + anon_sym_SEMI, aux_sym_with_clause_token2, - STATE(1419), 1, - sym_record_extension_part, - [47278] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3967), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47286] = 2, + [47072] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4110), 2, anon_sym_SEMI, aux_sym_accept_statement_token2, - [47294] = 3, + [47080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2946), 1, - aux_sym_iterator_filter_token1, - STATE(1786), 1, - sym_entry_barrier, - [47304] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2722), 1, - aux_sym_result_profile_token1, - STATE(828), 1, - sym_result_profile, - [47314] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4112), 2, + ACTIONS(4112), 1, anon_sym_SEMI, - aux_sym_accept_statement_token2, - [47322] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4112), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [47330] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3790), 2, - anon_sym_COMMA, - anon_sym_COLON, - [47338] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(4114), 1, - aux_sym_with_clause_token2, - STATE(1408), 1, - sym_record_extension_part, - [47348] = 3, + aux_sym_package_specification_token2, + [47090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4116), 1, - sym_identifier, - ACTIONS(4118), 1, + ACTIONS(2615), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [47098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3066), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3160), 1, + aux_sym_allocator_token1, + [47108] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4116), 2, + anon_sym_RPAREN, anon_sym_SEMI, - [47358] = 3, + [47116] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(4118), 1, + sym_identifier, ACTIONS(4120), 1, anon_sym_SEMI, - ACTIONS(4122), 1, - aux_sym_accept_statement_token2, - [47368] = 2, + [47126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3962), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47376] = 2, + ACTIONS(3223), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3446), 1, + aux_sym_allocator_token1, + [47136] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4122), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [47144] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4124), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47384] = 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [47152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 2, - anon_sym_SEMI, + ACTIONS(4126), 1, + aux_sym_compilation_unit_token1, + ACTIONS(4128), 1, aux_sym_with_clause_token2, - [47392] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4128), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47400] = 2, + [47162] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4130), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47408] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4132), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47416] = 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + [47170] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(4132), 1, + sym_identifier, ACTIONS(4134), 1, anon_sym_SEMI, - ACTIONS(4136), 1, - aux_sym_package_specification_token2, - [47426] = 2, + [47180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4139), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [47434] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4141), 2, + ACTIONS(3480), 2, anon_sym_RPAREN, anon_sym_SEMI, - [47442] = 2, + [47188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4143), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47450] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4145), 1, - sym_identifier, - ACTIONS(4147), 1, + ACTIONS(4110), 2, anon_sym_SEMI, - [47460] = 3, + aux_sym_accept_statement_token2, + [47196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4114), 1, + ACTIONS(4136), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47204] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4138), 2, + aux_sym_iterator_filter_token1, aux_sym_with_clause_token2, - STATE(1471), 1, - sym_record_extension_part, - [47470] = 2, + [47212] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3914), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47478] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3037), 2, + ACTIONS(3052), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [47486] = 3, + [47220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4149), 1, + ACTIONS(4140), 1, + aux_sym_with_clause_token2, + STATE(1379), 1, + sym_record_extension_part, + [47230] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4142), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [47238] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4144), 1, sym_identifier, - ACTIONS(4151), 1, + ACTIONS(4146), 1, anon_sym_SEMI, - [47496] = 2, + [47248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4153), 2, + ACTIONS(4148), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4150), 1, + sym_identifier, + ACTIONS(4152), 1, + anon_sym_SEMI, + [47266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4154), 1, + sym_identifier, + ACTIONS(4156), 1, + anon_sym_SEMI, + [47276] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4158), 2, anon_sym_COMMA, anon_sym_RPAREN, - [47504] = 3, + [47284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4155), 1, - aux_sym_package_specification_token3, - ACTIONS(4157), 1, - aux_sym_subprogram_body_token1, - [47514] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4159), 2, + ACTIONS(3822), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [47522] = 3, + ACTIONS(4160), 1, + anon_sym_RBRACK, + [47294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4161), 1, - aux_sym_access_to_subprogram_definition_token2, ACTIONS(4163), 1, - aux_sym_access_to_subprogram_definition_token3, - [47532] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(499), 1, - aux_sym_iterated_element_association_token1, - STATE(1644), 1, - sym_iterated_element_association, - [47542] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3879), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47550] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4165), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47558] = 3, + sym_identifier, + ACTIONS(4165), 1, + anon_sym_SEMI, + [47304] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4167), 1, - anon_sym_LPAREN, - ACTIONS(4169), 1, - anon_sym_SEMI, - [47568] = 2, + aux_sym_iterator_filter_token1, + STATE(1218), 1, + sym_case_expression_alternative, + [47314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3869), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [47576] = 2, + ACTIONS(3995), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47322] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4169), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47330] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4171), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47584] = 3, + anon_sym_COMMA, + anon_sym_RPAREN, + [47338] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3708), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47346] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4173), 1, sym_identifier, ACTIONS(4175), 1, anon_sym_SEMI, - [47594] = 3, + [47356] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3696), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [47364] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4177), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(4179), 1, - anon_sym_SEMI, - [47604] = 2, + aux_sym_accept_statement_token2, + [47374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3990), 2, + ACTIONS(4181), 1, anon_sym_COMMA, + ACTIONS(4183), 1, anon_sym_RPAREN, - [47612] = 2, + [47384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4181), 2, + ACTIONS(3588), 2, anon_sym_RPAREN, anon_sym_SEMI, - [47620] = 2, + [47392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4183), 2, + ACTIONS(4186), 2, anon_sym_RPAREN, anon_sym_SEMI, - [47628] = 3, + [47400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4185), 1, + ACTIONS(2653), 1, + anon_sym_LPAREN, + STATE(1374), 1, + sym_formal_part, + [47410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2742), 1, + aux_sym_result_profile_token1, + STATE(823), 1, + sym_result_profile, + [47420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4140), 1, + aux_sym_with_clause_token2, + STATE(1402), 1, + sym_record_extension_part, + [47430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4188), 1, + aux_sym_with_clause_token2, + STATE(1379), 1, + sym_record_extension_part, + [47440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4190), 1, sym_identifier, - ACTIONS(4187), 1, + ACTIONS(4192), 1, anon_sym_SEMI, - [47638] = 2, + [47450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 2, + ACTIONS(4194), 1, + anon_sym_SEMI, + ACTIONS(4196), 1, + aux_sym_package_specification_token2, + [47460] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4198), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47468] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4200), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47476] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4202), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47484] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4204), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47492] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3946), 2, anon_sym_COMMA, anon_sym_RPAREN, + [47500] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4206), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47508] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4208), 1, + sym_identifier, + ACTIONS(4210), 1, + anon_sym_SEMI, + [47518] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4212), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47526] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3635), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47534] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3066), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3538), 1, + aux_sym_allocator_token1, + [47544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4214), 1, + aux_sym_compilation_unit_token1, + ACTIONS(4216), 1, + aux_sym_with_clause_token1, + [47554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4218), 1, + aux_sym_expression_token3, + ACTIONS(4220), 1, + aux_sym_expression_token4, + [47564] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4222), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47572] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4224), 1, + sym_identifier, + ACTIONS(4226), 1, + anon_sym_SEMI, + [47582] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4228), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47590] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4230), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [47598] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4232), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47606] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4234), 1, + aux_sym_with_clause_token2, + STATE(1445), 1, + sym_record_extension_part, + [47616] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4236), 1, + anon_sym_SEMI, + ACTIONS(4238), 1, + aux_sym_accept_statement_token2, + [47626] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4240), 1, + sym_identifier, + ACTIONS(4242), 1, + anon_sym_SEMI, + [47636] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4244), 1, + anon_sym_LPAREN, + ACTIONS(4246), 1, + anon_sym_SEMI, [47646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4189), 1, + ACTIONS(4248), 1, + sym_identifier, + ACTIONS(4250), 1, anon_sym_SEMI, - ACTIONS(4191), 1, - aux_sym_package_specification_token2, [47656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2240), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2242), 1, - aux_sym_access_to_subprogram_definition_token3, - [47666] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4193), 1, - aux_sym_with_clause_token2, - ACTIONS(4195), 1, - aux_sym_expression_token1, - [47676] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4197), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47684] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 2, - anon_sym_EQ_GT, + ACTIONS(3052), 1, anon_sym_PIPE, - [47692] = 3, + ACTIONS(4252), 1, + anon_sym_EQ_GT, + [47666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3457), 1, - anon_sym_SEMI, - ACTIONS(3459), 1, - aux_sym_package_specification_token2, - [47702] = 3, + ACTIONS(3890), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47674] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4201), 1, - aux_sym_chunk_specification_token1, - ACTIONS(4203), 1, - aux_sym_iterator_specification_token1, - [47712] = 2, + ACTIONS(4255), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4205), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47720] = 2, + ACTIONS(3899), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4207), 2, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - [47728] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4209), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47736] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4211), 1, - aux_sym_iterator_filter_token1, - STATE(1220), 1, - sym_case_expression_alternative, - [47746] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4213), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47754] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4215), 1, - aux_sym_with_clause_token2, - STATE(1471), 1, - sym_record_extension_part, - [47764] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4217), 1, - anon_sym_SEMI, - ACTIONS(4219), 1, - aux_sym_accept_statement_token2, - [47774] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47782] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4223), 2, + ACTIONS(4257), 2, anon_sym_RPAREN, anon_sym_SEMI, + [47698] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4259), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47706] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4261), 1, + aux_sym_with_clause_token2, + ACTIONS(4263), 1, + aux_sym_expression_token1, + [47716] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4265), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47724] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3688), 1, + sym_identifier, + ACTIONS(3690), 1, + aux_sym_use_clause_token2, + [47734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3732), 1, + sym_identifier, + ACTIONS(3734), 1, + aux_sym_use_clause_token2, + [47744] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3368), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47752] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2972), 1, + aux_sym_iterator_filter_token1, + STATE(1788), 1, + sym_entry_barrier, + [47762] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4267), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4269), 1, + sym_identifier, + ACTIONS(4271), 1, + anon_sym_SEMI, + [47780] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4140), 1, + aux_sym_with_clause_token2, + STATE(1445), 1, + sym_record_extension_part, [47790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, + ACTIONS(4273), 1, sym_identifier, - ACTIONS(4227), 1, + ACTIONS(4275), 1, anon_sym_SEMI, [47800] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4277), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, [47808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(257), 1, - aux_sym_package_specification_token3, - ACTIONS(259), 1, - aux_sym_subprogram_body_token1, + ACTIONS(4279), 1, + sym_identifier, + ACTIONS(4281), 1, + anon_sym_SEMI, [47818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, - sym_identifier, - STATE(237), 1, - sym_reduction_attribute_designator, - [47828] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4233), 1, + ACTIONS(3231), 1, anon_sym_SEMI, - ACTIONS(4235), 1, + ACTIONS(3682), 1, aux_sym_package_specification_token2, - [47838] = 2, + [47828] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4237), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47846] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4239), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47854] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4241), 1, - aux_sym_with_clause_token2, - ACTIONS(4243), 1, - aux_sym_expression_token1, - [47864] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3830), 1, - sym_identifier, - ACTIONS(3832), 1, - aux_sym_use_clause_token2, - [47874] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4245), 1, - sym_identifier, - ACTIONS(4247), 1, - anon_sym_SEMI, - [47884] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4249), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47892] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4251), 1, + ACTIONS(4008), 2, anon_sym_COMMA, - ACTIONS(4253), 1, + anon_sym_COLON, + [47836] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4283), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47844] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4285), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47852] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3842), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [47860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4287), 1, + aux_sym_with_clause_token2, + STATE(1402), 1, + sym_record_extension_part, + [47870] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4289), 1, + anon_sym_SEMI, + ACTIONS(4291), 1, + aux_sym_package_specification_token2, + [47880] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4293), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47888] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4295), 2, anon_sym_RPAREN, - [47902] = 2, + anon_sym_SEMI, + [47896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4256), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [47910] = 2, + ACTIONS(4297), 1, + anon_sym_SEMI, + ACTIONS(4299), 1, + aux_sym_package_specification_token2, + [47906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4258), 2, - aux_sym_iterator_filter_token1, + ACTIONS(4302), 1, + sym_identifier, + ACTIONS(4304), 1, + anon_sym_SEMI, + [47916] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4306), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47924] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4308), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47932] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4310), 1, + anon_sym_SEMI, + ACTIONS(4312), 1, + aux_sym_package_specification_token2, + [47942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4314), 1, aux_sym_package_specification_token3, - [47918] = 2, + ACTIONS(4316), 1, + aux_sym_subprogram_body_token1, + [47952] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2256), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2258), 1, + aux_sym_access_to_subprogram_definition_token3, + [47962] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3748), 2, anon_sym_RPAREN, anon_sym_SEMI, - [47926] = 3, + [47970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2639), 1, - anon_sym_LPAREN, - STATE(1476), 1, - sym_formal_part, - [47936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3019), 1, - aux_sym_allocator_token1, - ACTIONS(3144), 1, - aux_sym_interface_type_definition_token2, - [47946] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4260), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [47954] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4262), 1, - sym_identifier, - ACTIONS(4264), 1, - anon_sym_SEMI, - [47964] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4266), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47972] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4268), 2, + ACTIONS(4318), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [47980] = 2, + [47978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3731), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [47988] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3727), 2, + ACTIONS(3743), 2, anon_sym_COMMA, anon_sym_RPAREN, - [47996] = 3, + [47986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4270), 1, - sym_identifier, - ACTIONS(4272), 1, + ACTIONS(4320), 2, anon_sym_SEMI, - [48006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4274), 1, - aux_sym_compilation_unit_token1, - ACTIONS(4276), 1, aux_sym_with_clause_token2, - [48016] = 3, + [47994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4278), 1, - sym_identifier, - ACTIONS(4280), 1, + ACTIONS(4322), 2, anon_sym_SEMI, - [48026] = 3, + aux_sym_with_clause_token2, + [48002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3867), 1, - anon_sym_COMMA, - ACTIONS(4282), 1, - anon_sym_RBRACK, - [48036] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4285), 1, - sym_identifier, - ACTIONS(4287), 1, - anon_sym_SEMI, - [48046] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3662), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [48054] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4289), 1, - sym_identifier, - ACTIONS(4291), 1, - anon_sym_SEMI, - [48064] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4293), 1, - aux_sym_expression_token3, - ACTIONS(4295), 1, - aux_sym_expression_token4, - [48074] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - sym_identifier, - ACTIONS(4299), 1, - anon_sym_SEMI, - [48084] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4301), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [48092] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2946), 1, + ACTIONS(2972), 1, aux_sym_iterator_filter_token1, - STATE(1661), 1, + STATE(1663), 1, sym_entry_barrier, - [48102] = 2, + [48012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4303), 2, - aux_sym_iterator_filter_token1, - aux_sym_with_clause_token2, - [48110] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4305), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48118] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3236), 1, - anon_sym_SEMI, - ACTIONS(3696), 1, - aux_sym_package_specification_token2, - [48128] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4307), 1, - sym_identifier, - ACTIONS(4309), 1, - anon_sym_SEMI, - [48138] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3152), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3509), 1, - aux_sym_allocator_token1, - [48148] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4311), 1, - aux_sym_with_clause_token2, - STATE(1408), 1, - sym_record_extension_part, - [48158] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3517), 1, - aux_sym_compilation_unit_token1, - ACTIONS(4313), 1, - aux_sym_with_clause_token1, - [48168] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3525), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [48176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4315), 1, - aux_sym_with_clause_token2, - ACTIONS(4317), 1, - aux_sym_expression_token1, - [48186] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3554), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [48194] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4319), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48202] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3523), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [48210] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4321), 2, + ACTIONS(4324), 2, anon_sym_COMMA, anon_sym_RPAREN, - [48218] = 3, + [48020] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4323), 1, - anon_sym_SEMI, - ACTIONS(4325), 1, - aux_sym_package_specification_token2, - [48228] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4327), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [48236] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4211), 1, + ACTIONS(4326), 2, aux_sym_iterator_filter_token1, - STATE(1363), 1, - sym_case_expression_alternative, - [48246] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4329), 2, - anon_sym_SEMI, aux_sym_with_clause_token2, - [48254] = 2, + [48028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4331), 2, + ACTIONS(4328), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48036] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4330), 2, aux_sym_iterator_filter_token1, aux_sym_package_specification_token3, - [48262] = 2, + [48044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4333), 2, + ACTIONS(4332), 2, anon_sym_SEMI, - aux_sym_with_clause_token2, - [48270] = 2, + aux_sym_accept_statement_token2, + [48052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4335), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48278] = 2, + ACTIONS(4334), 1, + sym_identifier, + ACTIONS(4336), 1, + anon_sym_SEMI, + [48062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3652), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48286] = 2, + ACTIONS(3580), 1, + anon_sym_SEMI, + ACTIONS(3582), 1, + aux_sym_package_specification_token2, + [48072] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4338), 2, - aux_sym_iterator_filter_token1, + anon_sym_SEMI, aux_sym_with_clause_token2, - [48294] = 3, + [48080] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4340), 1, - anon_sym_COMMA, - STATE(1141), 1, - aux_sym_positional_array_aggregate_repeat1, - [48304] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4342), 2, - anon_sym_SEMI, aux_sym_with_clause_token2, - [48312] = 2, + ACTIONS(4342), 1, + aux_sym_expression_token1, + [48090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4344), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48320] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4346), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [48328] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4348), 1, - sym_identifier, - ACTIONS(4350), 1, - anon_sym_SEMI, - [48338] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4352), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48346] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3624), 2, + ACTIONS(3506), 2, anon_sym_RPAREN, anon_sym_SEMI, - [48354] = 2, + [48098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [48362] = 3, + ACTIONS(3576), 1, + aux_sym_compilation_unit_token1, + ACTIONS(4344), 1, + aux_sym_with_clause_token1, + [48108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4114), 1, - aux_sym_with_clause_token2, - STATE(1419), 1, - sym_record_extension_part, - [48372] = 2, + ACTIONS(3508), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [48116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4346), 1, + sym_identifier, + ACTIONS(4348), 1, + anon_sym_SEMI, + [48126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4350), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(4352), 1, + anon_sym_EQ_GT, + [48136] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4354), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48380] = 3, + anon_sym_COMMA, + anon_sym_RPAREN, + [48144] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4356), 1, sym_identifier, ACTIONS(4358), 1, anon_sym_SEMI, - [48390] = 3, + [48154] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4360), 1, - aux_sym_iterated_element_association_token2, + aux_sym_chunk_specification_token1, ACTIONS(4362), 1, - anon_sym_EQ_GT, - [48400] = 2, + aux_sym_iterator_specification_token1, + [48164] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4364), 1, - aux_sym_loop_statement_token1, - [48407] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3112), 1, - aux_sym_loop_statement_token1, - [48414] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4235), 1, - aux_sym_package_specification_token2, - [48421] = 2, + ACTIONS(4364), 2, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + [48172] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4366), 1, - aux_sym_use_clause_token2, - [48428] = 2, + sym_identifier, + ACTIONS(4368), 1, + anon_sym_SEMI, + [48182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 1, - aux_sym_loop_statement_token1, - [48435] = 2, + ACTIONS(4167), 1, + aux_sym_iterator_filter_token1, + STATE(1427), 1, + sym_case_expression_alternative, + [48192] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4370), 1, - aux_sym_with_clause_token2, - [48442] = 2, - ACTIONS(3), 1, - sym_comment, + sym_identifier, ACTIONS(4372), 1, - anon_sym_RBRACK, - [48449] = 2, + anon_sym_SEMI, + [48202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 1, - anon_sym_RPAREN, - [48456] = 2, + ACTIONS(4374), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [48210] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4376), 1, - anon_sym_EQ_GT, - [48463] = 2, + anon_sym_COMMA, + STATE(1126), 1, + aux_sym_positional_array_aggregate_repeat1, + [48220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4378), 1, - anon_sym_RBRACK, - [48470] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4380), 1, - anon_sym_SEMI, - [48477] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4382), 1, - anon_sym_SEMI, - [48484] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4384), 1, - aux_sym_package_specification_token2, - [48491] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4386), 1, - anon_sym_SEMI, - [48498] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4388), 1, - aux_sym_with_clause_token2, - [48505] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4280), 1, - anon_sym_SEMI, - [48512] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4390), 1, - anon_sym_SEMI, - [48519] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4392), 1, - anon_sym_SEMI, - [48526] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4394), 1, + ACTIONS(3770), 2, anon_sym_RPAREN, - [48533] = 2, + anon_sym_SEMI, + [48228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 1, + ACTIONS(3768), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [48540] = 2, + [48236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4396), 1, - aux_sym_package_specification_token3, - [48547] = 2, + ACTIONS(4378), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48244] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4398), 1, - anon_sym_EQ_GT, - [48554] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4309), 1, + ACTIONS(4381), 1, anon_sym_SEMI, - [48561] = 2, + [48251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4400), 1, - aux_sym_if_expression_token1, - [48568] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4402), 1, + ACTIONS(4383), 1, anon_sym_SEMI, - [48575] = 2, + [48258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4404), 1, - aux_sym_compilation_unit_token1, - [48582] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4406), 1, - aux_sym_compilation_unit_token1, - [48589] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3792), 1, + ACTIONS(4090), 1, anon_sym_SEMI, - [48596] = 2, + [48265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4408), 1, + ACTIONS(4385), 1, anon_sym_SEMI, - [48603] = 2, + [48272] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4410), 1, - anon_sym_DOT_DOT, - [48610] = 2, + ACTIONS(4387), 1, + aux_sym_use_clause_token2, + [48279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4412), 1, - aux_sym_package_specification_token3, - [48617] = 2, + ACTIONS(4389), 1, + aux_sym_loop_statement_token1, + [48286] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4414), 1, - anon_sym_LT_GT, - [48624] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4416), 1, - aux_sym_record_component_association_list_token1, - [48631] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4418), 1, - aux_sym_compilation_unit_token1, - [48638] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4420), 1, - aux_sym_range_attribute_designator_token1, - [48645] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4422), 1, - anon_sym_SEMI, - [48652] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4424), 1, - aux_sym_with_clause_token2, - [48659] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4426), 1, - aux_sym_compilation_unit_token1, - [48666] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4428), 1, - sym_tick, - [48673] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4430), 1, - anon_sym_SEMI, - [48680] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4432), 1, - aux_sym_package_specification_token3, - [48687] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4434), 1, - anon_sym_SEMI, - [48694] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4436), 1, - anon_sym_SEMI, - [48701] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4438), 1, - aux_sym_iterated_element_association_token2, - [48708] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4440), 1, - aux_sym_iterated_element_association_token2, - [48715] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4442), 1, - anon_sym_SEMI, - [48722] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4444), 1, - anon_sym_SEMI, - [48729] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4446), 1, - anon_sym_SEMI, - [48736] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4448), 1, - aux_sym_iterator_specification_token1, - [48743] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4450), 1, - aux_sym_iterator_specification_token1, - [48750] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4452), 1, - anon_sym_LT_GT, - [48757] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4012), 1, - anon_sym_SEMI, - [48764] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4454), 1, - anon_sym_SEMI, - [48771] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4456), 1, - anon_sym_SEMI, - [48778] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4458), 1, - anon_sym_SEMI, - [48785] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4006), 1, - anon_sym_SEMI, - [48792] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4460), 1, - aux_sym_package_specification_token3, - [48799] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4462), 1, - anon_sym_SEMI, - [48806] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4464), 1, - aux_sym_package_specification_token3, - [48813] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4466), 1, - aux_sym_if_expression_token1, - [48820] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4468), 1, - anon_sym_SEMI, - [48827] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4470), 1, - anon_sym_SEMI, - [48834] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4472), 1, - aux_sym_package_specification_token3, - [48841] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4474), 1, - aux_sym_asynchronous_select_token1, - [48848] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4476), 1, - aux_sym_asynchronous_select_token1, - [48855] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4478), 1, - sym_identifier, - [48862] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4480), 1, - anon_sym_SEMI, - [48869] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4482), 1, - anon_sym_SEMI, - [48876] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4484), 1, - anon_sym_SEMI, - [48883] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4486), 1, - anon_sym_SEMI, - [48890] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4488), 1, - aux_sym_asynchronous_select_token1, - [48897] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4490), 1, - aux_sym_package_specification_token3, - [48904] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4492), 1, - anon_sym_SEMI, - [48911] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4494), 1, - aux_sym_with_clause_token2, - [48918] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 1, + ACTIONS(4391), 1, aux_sym_expression_token2, - [48925] = 2, + [48293] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, - anon_sym_SEMI, - [48932] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4500), 1, - aux_sym_package_specification_token3, - [48939] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4502), 1, - anon_sym_SEMI, - [48946] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4504), 1, - anon_sym_SEMI, - [48953] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4506), 1, - sym_identifier, - [48960] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3947), 1, - anon_sym_SEMI, - [48967] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3949), 1, - anon_sym_SEMI, - [48974] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4508), 1, - anon_sym_SEMI, - [48981] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4510), 1, - anon_sym_SEMI, - [48988] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4512), 1, - anon_sym_SEMI, - [48995] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3373), 1, - anon_sym_SEMI, - [49002] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4514), 1, - aux_sym_iterated_element_association_token2, - [49009] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4516), 1, - aux_sym_iterated_element_association_token2, - [49016] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4104), 1, - aux_sym_compilation_unit_token1, - [49023] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4518), 1, - anon_sym_SEMI, - [49030] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4520), 1, - anon_sym_SEMI, - [49037] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4522), 1, - aux_sym_allocator_token1, - [49044] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4524), 1, - anon_sym_RPAREN, - [49051] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4526), 1, - anon_sym_SEMI, - [49058] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4528), 1, - anon_sym_RPAREN, - [49065] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4530), 1, - anon_sym_SEMI, - [49072] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4532), 1, - anon_sym_SEMI, - [49079] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3874), 1, - anon_sym_SEMI, - [49086] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4534), 1, - anon_sym_SEMI, - [49093] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4536), 1, - anon_sym_SEMI, - [49100] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4538), 1, - anon_sym_SEMI, - [49107] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4540), 1, - anon_sym_SEMI, - [49114] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4542), 1, - aux_sym_subprogram_body_token1, - [49121] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4544), 1, - sym_identifier, - [49128] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4546), 1, - aux_sym_package_specification_token3, - [49135] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4548), 1, - aux_sym_package_specification_token3, - [49142] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4550), 1, - anon_sym_SEMI, - [49149] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4552), 1, - anon_sym_SEMI, - [49156] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4554), 1, - aux_sym_with_clause_token2, - [49163] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4556), 1, - aux_sym_with_clause_token2, - [49170] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4558), 1, - anon_sym_SEMI, - [49177] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4560), 1, - anon_sym_SEMI, - [49184] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4562), 1, - anon_sym_EQ_GT, - [49191] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4564), 1, + ACTIONS(4393), 1, anon_sym_RBRACK, - [49198] = 2, + [48300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(321), 1, - aux_sym_subprogram_body_token1, - [49205] = 2, + ACTIONS(4395), 1, + aux_sym_at_clause_token1, + [48307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4566), 1, + ACTIONS(4397), 1, + anon_sym_SEMI, + [48314] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4399), 1, + anon_sym_RBRACK, + [48321] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4401), 1, + anon_sym_SEMI, + [48328] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4403), 1, + aux_sym_package_specification_token2, + [48335] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4405), 1, + sym_tick, + [48342] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4407), 1, anon_sym_EQ_GT, - [49212] = 2, + [48349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4564), 1, - anon_sym_RPAREN, - [49219] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4568), 1, - anon_sym_RPAREN, - [49226] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4570), 1, - aux_sym_package_specification_token2, - [49233] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4572), 1, - anon_sym_RPAREN, - [49240] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4088), 1, - anon_sym_SEMI, - [49247] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4574), 1, - anon_sym_SEMI, - [49254] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4264), 1, - anon_sym_SEMI, - [49261] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4576), 1, - anon_sym_SEMI, - [49268] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4578), 1, - aux_sym_package_specification_token3, - [49275] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4580), 1, + ACTIONS(4409), 1, aux_sym_with_clause_token2, - [49282] = 2, + [48356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, + ACTIONS(4411), 1, anon_sym_SEMI, - [49289] = 2, + [48363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4287), 1, + ACTIONS(4413), 1, + anon_sym_RPAREN, + [48370] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4415), 1, anon_sym_SEMI, - [49296] = 2, + [48377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3696), 1, - aux_sym_package_specification_token2, - [49303] = 2, + ACTIONS(4417), 1, + anon_sym_COLON, + [48384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4584), 1, - sym_identifier, - [49310] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4586), 1, - sym_identifier, - [49317] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4588), 1, + ACTIONS(4419), 1, anon_sym_SEMI, - [49324] = 2, + [48391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4590), 1, - aux_sym_allocator_token1, - [49331] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4592), 1, - anon_sym_SEMI, - [49338] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3517), 1, - aux_sym_compilation_unit_token1, - [49345] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4594), 1, - aux_sym_allocator_token1, - [49352] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4596), 1, - anon_sym_SEMI, - [49359] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4598), 1, + ACTIONS(4421), 1, aux_sym_package_specification_token3, - [49366] = 2, + [48398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4600), 1, - aux_sym_record_component_association_list_token1, - [49373] = 2, + ACTIONS(4423), 1, + sym_identifier, + [48405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4602), 1, + ACTIONS(2146), 1, + anon_sym_DOT_DOT, + [48412] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4368), 1, + anon_sym_SEMI, + [48419] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4425), 1, + anon_sym_SEMI, + [48426] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4427), 1, + anon_sym_SEMI, + [48433] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4429), 1, + anon_sym_RBRACK, + [48440] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4431), 1, + aux_sym_attribute_designator_token2, + [48447] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4433), 1, + anon_sym_SEMI, + [48454] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4435), 1, + aux_sym_with_clause_token2, + [48461] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4437), 1, + aux_sym_with_clause_token2, + [48468] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4439), 1, + anon_sym_LT_GT, + [48475] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4441), 1, + sym_identifier, + [48482] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4443), 1, + aux_sym_compilation_unit_token1, + [48489] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4348), 1, + anon_sym_SEMI, + [48496] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4445), 1, + aux_sym_object_renaming_declaration_token1, + [48503] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3682), 1, aux_sym_package_specification_token2, - [49380] = 2, + [48510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3676), 1, - anon_sym_SEMI, - [49387] = 2, + ACTIONS(4447), 1, + aux_sym_compilation_unit_token1, + [48517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4604), 1, + ACTIONS(4449), 1, sym_identifier, - [49394] = 2, + [48524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3616), 1, - anon_sym_SEMI, - [49401] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4606), 1, + ACTIONS(4451), 1, sym_identifier, - [49408] = 2, + [48531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4233), 1, + ACTIONS(4453), 1, anon_sym_SEMI, - [49415] = 2, + [48538] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4455), 1, + aux_sym_allocator_token1, + [48545] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4457), 1, + aux_sym_object_renaming_declaration_token1, + [48552] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4459), 1, + aux_sym_iterated_element_association_token2, + [48559] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4461), 1, + aux_sym_iterated_element_association_token2, + [48566] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4463), 1, + anon_sym_SEMI, + [48573] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3576), 1, + aux_sym_compilation_unit_token1, + [48580] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4465), 1, + sym_tick, + [48587] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4467), 1, + anon_sym_RPAREN, + [48594] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4469), 1, + anon_sym_SEMI, + [48601] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4471), 1, + anon_sym_RPAREN, + [48608] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4473), 1, + aux_sym_allocator_token1, + [48615] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4475), 1, + anon_sym_SEMI, + [48622] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4477), 1, + anon_sym_SEMI, + [48629] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3086), 1, + aux_sym_entry_declaration_token1, + [48636] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3660), 1, + anon_sym_SEMI, + [48643] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + anon_sym_SEMI, + [48650] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4481), 1, + aux_sym_package_specification_token2, + [48657] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4483), 1, + anon_sym_SEMI, + [48664] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4485), 1, + aux_sym_if_expression_token1, + [48671] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4487), 1, + aux_sym_record_component_association_list_token1, + [48678] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4489), 1, + anon_sym_SEMI, + [48685] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4491), 1, + aux_sym_package_specification_token3, + [48692] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4336), 1, + anon_sym_SEMI, + [48699] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4493), 1, + anon_sym_RPAREN, + [48706] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4495), 1, + sym_identifier, + [48713] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4497), 1, + aux_sym_primary_null_token1, + [48720] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4499), 1, + anon_sym_SEMI, + [48727] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4501), 1, + anon_sym_SEMI, + [48734] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4503), 1, + aux_sym_package_specification_token2, + [48741] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4505), 1, + aux_sym_asynchronous_select_token1, + [48748] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4507), 1, + aux_sym_package_specification_token3, + [48755] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3763), 1, + anon_sym_RPAREN, + [48762] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4509), 1, + sym_identifier, + [48769] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4511), 1, + aux_sym_package_specification_token2, + [48776] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4513), 1, + anon_sym_SEMI, + [48783] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4515), 1, + anon_sym_RPAREN, + [48790] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4517), 1, + anon_sym_SEMI, + [48797] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4519), 1, + anon_sym_SEMI, + [48804] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4521), 1, + anon_sym_RPAREN, + [48811] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4523), 1, + aux_sym_package_specification_token2, + [48818] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_SEMI, + [48825] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_SEMI, + [48832] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4527), 1, + anon_sym_RPAREN, + [48839] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4529), 1, + aux_sym_package_specification_token2, + [48846] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3090), 1, + aux_sym_loop_statement_token1, + [48853] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4531), 1, + aux_sym_package_specification_token3, + [48860] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4533), 1, + sym_identifier, + [48867] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 1, + anon_sym_SEMI, + [48874] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4537), 1, + anon_sym_SEMI, + [48881] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_SEMI, + [48888] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4541), 1, + sym_identifier, + [48895] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4543), 1, + anon_sym_RPAREN, + [48902] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4545), 1, + anon_sym_SEMI, + [48909] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4547), 1, + anon_sym_SEMI, + [48916] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4549), 1, + anon_sym_SEMI, + [48923] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4289), 1, + anon_sym_SEMI, + [48930] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(209), 1, aux_sym_private_type_declaration_token1, - [49422] = 2, + [48937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 1, + ACTIONS(4551), 1, anon_sym_SEMI, - [49429] = 2, + [48944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4155), 1, - aux_sym_package_specification_token3, - [49436] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4610), 1, + ACTIONS(4553), 1, anon_sym_SEMI, - [49443] = 2, + [48951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3854), 1, + ACTIONS(4555), 1, anon_sym_SEMI, - [49450] = 2, + [48958] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4612), 1, - aux_sym_compilation_unit_token1, - [49457] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4614), 1, - aux_sym_record_component_association_list_token1, - [49464] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4616), 1, - sym_identifier, - [49471] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4618), 1, - aux_sym_with_clause_token2, - [49478] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4620), 1, - anon_sym_SEMI, - [49485] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4622), 1, - anon_sym_RBRACK, - [49492] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4624), 1, - anon_sym_RPAREN, - [49499] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4626), 1, - anon_sym_SEMI, - [49506] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4628), 1, - anon_sym_SEMI, - [49513] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4630), 1, - anon_sym_SEMI, - [49520] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4632), 1, - anon_sym_COLON, - [49527] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4634), 1, - sym_tick, - [49534] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4636), 1, - aux_sym_subprogram_body_token1, - [49541] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4638), 1, - anon_sym_SEMI, - [49548] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4640), 1, - anon_sym_SEMI, - [49555] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4642), 1, - anon_sym_SEMI, - [49562] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4644), 1, - anon_sym_SEMI, - [49569] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4646), 1, - aux_sym_with_clause_token2, - [49576] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4648), 1, - anon_sym_SEMI, - [49583] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4650), 1, - sym_identifier, - [49590] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4652), 1, - anon_sym_RPAREN, - [49597] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4654), 1, - aux_sym_package_specification_token2, - [49604] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4656), 1, - aux_sym_package_specification_token2, - [49611] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4658), 1, - anon_sym_COLON, - [49618] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4660), 1, - aux_sym_package_specification_token3, - [49625] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4662), 1, - anon_sym_SEMI, - [49632] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4664), 1, - anon_sym_SEMI, - [49639] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4666), 1, - anon_sym_SEMI, - [49646] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4668), 1, - anon_sym_SEMI, - [49653] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4670), 1, - anon_sym_SEMI, - [49660] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4672), 1, - anon_sym_RPAREN, - [49667] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4674), 1, - aux_sym_loop_statement_token1, - [49674] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4676), 1, - aux_sym_package_specification_token3, - [49681] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4678), 1, - anon_sym_RPAREN, - [49688] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4680), 1, - anon_sym_SEMI, - [49695] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4682), 1, - anon_sym_SEMI, - [49702] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4684), 1, - anon_sym_RPAREN, - [49709] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4686), 1, - aux_sym_expression_token2, - [49716] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4688), 1, - ts_builtin_sym_end, - [49723] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4690), 1, - anon_sym_RPAREN, - [49730] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4692), 1, - anon_sym_RPAREN, - [49737] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4694), 1, - sym_identifier, - [49744] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4696), 1, - anon_sym_RPAREN, - [49751] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4696), 1, - anon_sym_RBRACK, - [49758] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3293), 1, - anon_sym_SEMI, - [49765] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4698), 1, - anon_sym_SEMI, - [49772] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4700), 1, - anon_sym_SEMI, - [49779] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4702), 1, - anon_sym_SEMI, - [49786] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4704), 1, - anon_sym_SEMI, - [49793] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4706), 1, - aux_sym_with_clause_token2, - [49800] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4708), 1, - anon_sym_GT_GT, - [49807] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4175), 1, - anon_sym_SEMI, - [49814] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4710), 1, - aux_sym_with_clause_token2, - [49821] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4712), 1, - anon_sym_SEMI, - [49828] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4714), 1, - aux_sym_package_specification_token3, - [49835] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4716), 1, - aux_sym_expression_token2, - [49842] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4718), 1, - aux_sym_package_specification_token3, - [49849] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4720), 1, - anon_sym_SEMI, - [49856] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4722), 1, - anon_sym_SEMI, - [49863] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4724), 1, - aux_sym_asynchronous_select_token1, - [49870] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4726), 1, - aux_sym_compilation_unit_token1, - [49877] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4728), 1, - aux_sym_package_specification_token3, - [49884] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4730), 1, - anon_sym_SEMI, - [49891] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4732), 1, - aux_sym_with_clause_token2, - [49898] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4734), 1, - aux_sym_package_specification_token3, - [49905] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4736), 1, - aux_sym_asynchronous_select_token1, - [49912] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4738), 1, - aux_sym_asynchronous_select_token1, - [49919] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4740), 1, - aux_sym_result_profile_token1, - [49926] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4742), 1, - anon_sym_SEMI, - [49933] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4744), 1, - aux_sym_if_expression_token1, - [49940] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4746), 1, - aux_sym_expression_token2, - [49947] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4748), 1, - anon_sym_SEMI, - [49954] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3186), 1, - anon_sym_SEMI, - [49961] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3672), 1, - anon_sym_SEMI, - [49968] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4750), 1, + ACTIONS(4557), 1, aux_sym_iterated_element_association_token2, - [49975] = 2, + [48965] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4752), 1, - anon_sym_SEMI, - [49982] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4754), 1, - anon_sym_SEMI, - [49989] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4756), 1, - anon_sym_LT_GT, - [49996] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4758), 1, - anon_sym_LT_GT, - [50003] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4760), 1, - aux_sym_if_expression_token1, - [50010] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4762), 1, - anon_sym_LT_GT, - [50017] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4764), 1, - sym_identifier, - [50024] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4766), 1, - anon_sym_SEMI, - [50031] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4768), 1, - anon_sym_LT_GT, - [50038] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4770), 1, - aux_sym_package_specification_token3, - [50045] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4772), 1, - anon_sym_LT_GT, - [50052] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4774), 1, - aux_sym_allocator_token1, - [50059] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(319), 1, - aux_sym_subprogram_body_token1, - [50066] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4074), 1, - anon_sym_SEMI, - [50073] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4776), 1, - anon_sym_SEMI, - [50080] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3765), 1, - anon_sym_SEMI, - [50087] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4778), 1, - aux_sym_case_expression_token1, - [50094] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4780), 1, + ACTIONS(4559), 1, anon_sym_EQ_GT, - [50101] = 2, + [48972] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4782), 1, - anon_sym_EQ_GT, - [50108] = 2, + ACTIONS(4561), 1, + aux_sym_subunit_token1, + [48979] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4784), 1, - anon_sym_RPAREN, - [50115] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4786), 1, - anon_sym_SEMI, - [50122] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3602), 1, - anon_sym_COMMA, - [50129] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4788), 1, - anon_sym_EQ_GT, - [50136] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4790), 1, - anon_sym_SEMI, - [50143] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4792), 1, - aux_sym_package_specification_token3, - [50150] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4794), 1, - anon_sym_RPAREN, - [50157] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4796), 1, - anon_sym_EQ_GT, - [50164] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4151), 1, - anon_sym_SEMI, - [50171] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4798), 1, - anon_sym_DOT_DOT, - [50178] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4800), 1, - sym_identifier, - [50185] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4802), 1, - sym_identifier, - [50192] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4804), 1, - sym_identifier, - [50199] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4806), 1, - aux_sym_package_specification_token2, - [50206] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4808), 1, - anon_sym_SEMI, - [50213] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4810), 1, - anon_sym_SEMI, - [50220] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4812), 1, + ACTIONS(4563), 1, aux_sym_with_clause_token2, - [50227] = 2, + [48986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_SEMI, - [50234] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4814), 1, - aux_sym_loop_statement_token1, - [50241] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4816), 1, - anon_sym_EQ_GT, - [50248] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4818), 1, - anon_sym_SEMI, - [50255] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4820), 1, - anon_sym_COLON, - [50262] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4822), 1, - aux_sym_package_body_token1, - [50269] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4824), 1, - aux_sym_package_body_token1, - [50276] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4826), 1, - aux_sym_package_body_token1, - [50283] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4828), 1, - anon_sym_EQ_GT, - [50290] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4830), 1, - aux_sym_case_expression_token1, - [50297] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3785), 1, - anon_sym_SEMI, - [50304] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3509), 1, - aux_sym_allocator_token1, - [50311] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4832), 1, - anon_sym_SEMI, - [50318] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4834), 1, - aux_sym_allocator_token1, - [50325] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, + ACTIONS(4565), 1, aux_sym_package_specification_token3, - [50332] = 2, + [48993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, - anon_sym_COLON, - [50339] = 2, + ACTIONS(4314), 1, + aux_sym_package_specification_token3, + [49000] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4840), 1, - sym_identifier, - [50346] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4842), 1, - aux_sym_with_clause_token2, - [50353] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4844), 1, - aux_sym_component_list_token1, - [50360] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4846), 1, + ACTIONS(4567), 1, anon_sym_SEMI, - [50367] = 2, + [49007] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - aux_sym_compilation_unit_token1, - [50374] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4850), 1, - aux_sym_compilation_unit_token1, - [50381] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4852), 1, - anon_sym_DOT_DOT, - [50388] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4854), 1, - anon_sym_SEMI, - [50395] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4856), 1, - anon_sym_SEMI, - [50402] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4858), 1, - anon_sym_RPAREN, - [50409] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4860), 1, - anon_sym_SEMI, - [50416] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3236), 1, - anon_sym_SEMI, - [50423] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(215), 1, - aux_sym_private_type_declaration_token1, - [50430] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4862), 1, - anon_sym_SEMI, - [50437] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4864), 1, - anon_sym_SEMI, - [50444] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4866), 1, - aux_sym_chunk_specification_token1, - [50451] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4868), 1, - aux_sym_attribute_designator_token4, - [50458] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4870), 1, + ACTIONS(4569), 1, aux_sym_record_component_association_list_token1, - [50465] = 2, + [49014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4872), 1, - anon_sym_SEMI, - [50472] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(269), 1, - aux_sym_subprogram_body_token1, - [50479] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4874), 1, - aux_sym_package_specification_token2, - [50486] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4876), 1, - anon_sym_EQ_GT, - [50493] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4878), 1, - anon_sym_SEMI, - [50500] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4880), 1, - aux_sym__aspect_mark_token1, - [50507] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4882), 1, - anon_sym_SEMI, - [50514] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4884), 1, - aux_sym_package_specification_token3, - [50521] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3643), 1, - anon_sym_SEMI, - [50528] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4886), 1, + ACTIONS(4571), 1, sym_identifier, - [50535] = 2, + [49021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4888), 1, - anon_sym_RPAREN, - [50542] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3645), 1, - anon_sym_SEMI, - [50549] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4890), 1, - anon_sym_SEMI, - [50556] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(325), 1, - aux_sym_subprogram_body_token1, - [50563] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4892), 1, - anon_sym_SEMI, - [50570] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4894), 1, - anon_sym_SEMI, - [50577] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - aux_sym_loop_statement_token1, - [50584] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4299), 1, - anon_sym_SEMI, - [50591] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4898), 1, - aux_sym_allocator_token1, - [50598] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4900), 1, - aux_sym_package_specification_token3, - [50605] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3654), 1, - anon_sym_SEMI, - [50612] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4902), 1, - aux_sym_with_clause_token2, - [50619] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4904), 1, - aux_sym_compilation_unit_token1, - [50626] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4906), 1, - aux_sym_compilation_unit_token1, - [50633] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3266), 1, - anon_sym_SEMI, - [50640] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4908), 1, - anon_sym_SEMI, - [50647] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4910), 1, - anon_sym_SEMI, - [50654] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4912), 1, - anon_sym_SEMI, - [50661] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4914), 1, - sym_identifier, - [50668] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4916), 1, - anon_sym_SEMI, - [50675] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4918), 1, - aux_sym_primary_null_token1, - [50682] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4920), 1, - aux_sym_package_specification_token3, - [50689] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4922), 1, - anon_sym_SEMI, - [50696] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4924), 1, + ACTIONS(4573), 1, aux_sym_package_specification_token2, - [50703] = 2, + [49028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4926), 1, + ACTIONS(4575), 1, anon_sym_SEMI, - [50710] = 2, + [49035] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4928), 1, - sym_identifier, - [50717] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4930), 1, - anon_sym_RPAREN, - [50724] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4932), 1, - anon_sym_SEMI, - [50731] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3345), 1, - aux_sym_package_specification_token3, - [50738] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4934), 1, - anon_sym_SEMI, - [50745] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4936), 1, - aux_sym_asynchronous_select_token1, - [50752] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4938), 1, - aux_sym_package_specification_token3, - [50759] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4940), 1, - anon_sym_SEMI, - [50766] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4942), 1, - aux_sym_package_specification_token3, - [50773] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4944), 1, - aux_sym_package_specification_token3, - [50780] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4946), 1, - anon_sym_EQ_GT, - [50787] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3971), 1, - anon_sym_RPAREN, - [50794] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4948), 1, - aux_sym_iterated_element_association_token2, - [50801] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4950), 1, - anon_sym_SEMI, - [50808] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4952), 1, - anon_sym_SEMI, - [50815] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4954), 1, - aux_sym_package_specification_token2, - [50822] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4956), 1, - anon_sym_SEMI, - [50829] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4958), 1, - anon_sym_SEMI, - [50836] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4960), 1, - anon_sym_RPAREN, - [50843] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4962), 1, - anon_sym_SEMI, - [50850] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4964), 1, - aux_sym_package_specification_token2, - [50857] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4966), 1, - aux_sym_primary_null_token1, - [50864] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3124), 1, - aux_sym_entry_declaration_token1, - [50871] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4968), 1, - anon_sym_SEMI, - [50878] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4970), 1, - aux_sym_compilation_unit_token1, - [50885] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4972), 1, - anon_sym_SEMI, - [50892] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4974), 1, - aux_sym_object_renaming_declaration_token1, - [50899] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4976), 1, - aux_sym_object_renaming_declaration_token1, - [50906] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4978), 1, - aux_sym_with_clause_token2, - [50913] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4980), 1, - aux_sym_attribute_designator_token2, - [50920] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4982), 1, + ACTIONS(4577), 1, anon_sym_RBRACK, - [50927] = 2, + [49042] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4984), 1, - sym_tick, - [50934] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4986), 1, - anon_sym_SEMI, - [50941] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4988), 1, - aux_sym_at_clause_token1, - [50948] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4990), 1, - aux_sym_expression_token2, - [50955] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4992), 1, - aux_sym_global_mode_token1, - [50962] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(271), 1, - aux_sym_subprogram_body_token1, - [50969] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4994), 1, - aux_sym_package_specification_token3, - [50976] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - [50983] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4998), 1, - aux_sym_package_specification_token2, - [50990] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5000), 1, - anon_sym_COLON, - [50997] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, - sym_identifier, - [51004] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5004), 1, - sym_identifier, - [51011] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5006), 1, - anon_sym_SEMI, - [51018] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5008), 1, - anon_sym_SEMI, - [51025] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3641), 1, + ACTIONS(4579), 1, anon_sym_RPAREN, - [51032] = 2, + [49049] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5010), 1, + ACTIONS(4581), 1, anon_sym_SEMI, - [51039] = 2, + [49056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, - aux_sym_compilation_unit_token1, - [51046] = 2, + ACTIONS(4583), 1, + aux_sym_package_specification_token2, + [49063] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4585), 1, + anon_sym_SEMI, + [49070] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3952), 1, + anon_sym_RPAREN, + [49077] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4587), 1, + anon_sym_SEMI, + [49084] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(207), 1, aux_sym_subprogram_body_token1, - [51053] = 2, + [49091] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4589), 1, + anon_sym_EQ_GT, + [49098] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4591), 1, + anon_sym_COLON, + [49105] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4593), 1, + anon_sym_SEMI, + [49112] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4595), 1, + aux_sym_subprogram_body_token1, + [49119] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4597), 1, + aux_sym_package_specification_token3, + [49126] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4599), 1, + anon_sym_SEMI, + [49133] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4601), 1, + aux_sym_package_specification_token3, + [49140] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(323), 1, + aux_sym_subprogram_body_token1, + [49147] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4527), 1, + anon_sym_RBRACK, + [49154] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4304), 1, + anon_sym_SEMI, + [49161] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_SEMI, + [49168] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4605), 1, + anon_sym_EQ_GT, + [49175] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4607), 1, + aux_sym_package_specification_token3, + [49182] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4609), 1, + anon_sym_SEMI, + [49189] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4611), 1, + anon_sym_SEMI, + [49196] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4613), 1, + anon_sym_SEMI, + [49203] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4615), 1, + anon_sym_SEMI, + [49210] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4617), 1, + aux_sym_package_specification_token3, + [49217] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4619), 1, + anon_sym_SEMI, + [49224] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4621), 1, + aux_sym_package_specification_token3, + [49231] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4623), 1, + anon_sym_SEMI, + [49238] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4625), 1, + anon_sym_SEMI, + [49245] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_SEMI, + [49252] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4627), 1, + aux_sym_asynchronous_select_token1, + [49259] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4629), 1, + anon_sym_EQ_GT, + [49266] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4291), 1, + aux_sym_package_specification_token2, + [49273] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4631), 1, + anon_sym_SEMI, + [49280] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4633), 1, + aux_sym_with_clause_token2, + [49287] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4635), 1, + aux_sym_primary_null_token1, + [49294] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + anon_sym_SEMI, + [49301] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4637), 1, + aux_sym_compilation_unit_token1, + [49308] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4639), 1, + anon_sym_RPAREN, + [49315] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4641), 1, + aux_sym_loop_statement_token1, + [49322] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4643), 1, + aux_sym_with_clause_token2, + [49329] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4645), 1, + aux_sym_package_specification_token3, + [49336] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4647), 1, + aux_sym_package_specification_token3, + [49343] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4649), 1, + anon_sym_RPAREN, + [49350] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4651), 1, + aux_sym_with_clause_token2, + [49357] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4653), 1, + anon_sym_SEMI, + [49364] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4655), 1, + anon_sym_SEMI, + [49371] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4657), 1, + anon_sym_SEMI, + [49378] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4659), 1, + sym_tick, + [49385] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4661), 1, + anon_sym_RPAREN, + [49392] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4663), 1, + anon_sym_SEMI, + [49399] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4665), 1, + anon_sym_SEMI, + [49406] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4667), 1, + anon_sym_SEMI, + [49413] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4669), 1, + aux_sym_package_specification_token3, + [49420] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4671), 1, + aux_sym_with_clause_token2, + [49427] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4673), 1, + aux_sym_subprogram_body_token1, + [49434] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4675), 1, + sym_identifier, + [49441] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4677), 1, + anon_sym_RPAREN, + [49448] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + aux_sym_package_specification_token2, + [49455] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4681), 1, + aux_sym_package_specification_token2, + [49462] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4683), 1, + anon_sym_COLON, + [49469] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4685), 1, + anon_sym_RPAREN, + [49476] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4687), 1, + anon_sym_SEMI, + [49483] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4689), 1, + anon_sym_SEMI, + [49490] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4691), 1, + aux_sym_compilation_unit_token1, + [49497] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4693), 1, + anon_sym_RPAREN, + [49504] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3352), 1, + aux_sym_package_specification_token3, + [49511] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3314), 1, + anon_sym_SEMI, + [49518] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4695), 1, + aux_sym_compilation_unit_token1, + [49525] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4697), 1, + anon_sym_SEMI, + [49532] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4699), 1, + anon_sym_SEMI, + [49539] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3873), 1, + anon_sym_SEMI, + [49546] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4701), 1, + anon_sym_SEMI, + [49553] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4703), 1, + anon_sym_RPAREN, + [49560] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4705), 1, + aux_sym_expression_token2, + [49567] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4707), 1, + ts_builtin_sym_end, + [49574] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4709), 1, + anon_sym_RPAREN, + [49581] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4711), 1, + aux_sym_package_specification_token3, + [49588] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4713), 1, + sym_identifier, + [49595] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_RPAREN, + [49602] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_RBRACK, + [49609] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4717), 1, + sym_identifier, + [49616] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4719), 1, + anon_sym_SEMI, + [49623] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4721), 1, + anon_sym_SEMI, + [49630] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4723), 1, + anon_sym_SEMI, + [49637] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4725), 1, + anon_sym_GT_GT, + [49644] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4727), 1, + aux_sym_with_clause_token2, + [49651] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4729), 1, + anon_sym_SEMI, + [49658] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4250), 1, + anon_sym_SEMI, + [49665] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4731), 1, + anon_sym_SEMI, + [49672] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4733), 1, + anon_sym_SEMI, + [49679] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4393), 1, + anon_sym_RPAREN, + [49686] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4735), 1, + anon_sym_LPAREN, + [49693] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4737), 1, + aux_sym_package_specification_token3, + [49700] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4739), 1, + anon_sym_SEMI, + [49707] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4741), 1, + anon_sym_COLON, + [49714] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4743), 1, + anon_sym_SEMI, + [49721] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4745), 1, + aux_sym_compilation_unit_token1, + [49728] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4747), 1, + aux_sym_expression_token2, + [49735] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4749), 1, + aux_sym_package_specification_token3, + [49742] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4751), 1, + aux_sym_with_clause_token2, + [49749] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4753), 1, + anon_sym_SEMI, + [49756] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4755), 1, + aux_sym_package_specification_token3, + [49763] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4757), 1, + anon_sym_SEMI, + [49770] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3907), 1, + anon_sym_SEMI, + [49777] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4759), 1, + aux_sym_asynchronous_select_token1, + [49784] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4761), 1, + anon_sym_RPAREN, + [49791] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4763), 1, + anon_sym_SEMI, + [49798] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4765), 1, + aux_sym_package_specification_token3, + [49805] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4767), 1, + aux_sym_asynchronous_select_token1, + [49812] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4769), 1, + aux_sym_asynchronous_select_token1, + [49819] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4771), 1, + aux_sym_result_profile_token1, + [49826] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4773), 1, + anon_sym_SEMI, + [49833] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4775), 1, + anon_sym_SEMI, + [49840] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4777), 1, + aux_sym_package_specification_token3, + [49847] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4779), 1, + anon_sym_RPAREN, + [49854] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4781), 1, + anon_sym_LT_GT, + [49861] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4783), 1, + aux_sym_if_expression_token1, + [49868] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4785), 1, + sym_identifier, + [49875] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4787), 1, + anon_sym_SEMI, + [49882] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4789), 1, + anon_sym_RPAREN, + [49889] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4791), 1, + aux_sym_package_specification_token3, + [49896] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4793), 1, + aux_sym_allocator_token1, + [49903] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4795), 1, + aux_sym_expression_token2, + [49910] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4797), 1, + anon_sym_SEMI, + [49917] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3217), 1, + anon_sym_SEMI, + [49924] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3798), 1, + anon_sym_SEMI, + [49931] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4799), 1, + aux_sym_iterated_element_association_token2, + [49938] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4801), 1, + anon_sym_LPAREN, + [49945] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4803), 1, + anon_sym_SEMI, + [49952] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4214), 1, + aux_sym_compilation_unit_token1, + [49959] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4805), 1, + anon_sym_EQ_GT, + [49966] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4807), 1, + anon_sym_SEMI, + [49973] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_RPAREN, + [49980] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4809), 1, + anon_sym_LT_GT, + [49987] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4811), 1, + anon_sym_LT_GT, + [49994] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4813), 1, + anon_sym_RPAREN, + [50001] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4815), 1, + anon_sym_DOT_DOT, + [50008] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4817), 1, + anon_sym_LT_GT, + [50015] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4819), 1, + anon_sym_LT_GT, + [50022] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4821), 1, + anon_sym_DOT_DOT, + [50029] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4823), 1, + sym_identifier, + [50036] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4825), 1, + sym_identifier, + [50043] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4827), 1, + aux_sym_if_expression_token1, + [50050] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1825), 1, + anon_sym_EQ_GT, + [50057] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4829), 1, + aux_sym_iterated_element_association_token2, + [50064] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4831), 1, + aux_sym_iterated_element_association_token2, + [50071] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3426), 1, + anon_sym_SEMI, + [50078] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4833), 1, + aux_sym_allocator_token1, + [50085] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4835), 1, + aux_sym_package_specification_token2, + [50092] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4837), 1, + aux_sym_package_specification_token2, + [50099] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4839), 1, + anon_sym_SEMI, + [50106] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(321), 1, + aux_sym_subprogram_body_token1, + [50113] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4841), 1, + anon_sym_SEMI, + [50120] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3857), 1, + aux_sym_package_specification_token2, + [50127] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4843), 1, + aux_sym_primary_null_token1, + [50134] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4845), 1, + anon_sym_EQ_GT, + [50141] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4847), 1, + aux_sym_case_expression_token1, + [50148] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4194), 1, + anon_sym_SEMI, + [50155] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4849), 1, + anon_sym_SEMI, + [50162] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4851), 1, + anon_sym_SEMI, + [50169] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4853), 1, + anon_sym_SEMI, + [50176] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4855), 1, + anon_sym_SEMI, + [50183] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4857), 1, + aux_sym_with_clause_token2, + [50190] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4859), 1, + aux_sym_package_specification_token2, + [50197] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4861), 1, + aux_sym_with_clause_token2, + [50204] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(445), 1, + aux_sym_allocator_token1, + [50211] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4863), 1, + anon_sym_SEMI, + [50218] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4865), 1, + aux_sym_compilation_unit_token1, + [50225] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4867), 1, + aux_sym_compilation_unit_token1, + [50232] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4869), 1, + anon_sym_SEMI, + [50239] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4871), 1, + anon_sym_SEMI, + [50246] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3980), 1, + anon_sym_SEMI, + [50253] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4873), 1, + aux_sym_loop_statement_token1, + [50260] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4875), 1, + sym_identifier, + [50267] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4877), 1, + aux_sym_package_specification_token3, + [50274] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4879), 1, + anon_sym_SEMI, + [50281] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4881), 1, + anon_sym_SEMI, + [50288] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4883), 1, + aux_sym_case_expression_token1, + [50295] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4885), 1, + aux_sym_chunk_specification_token1, + [50302] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_SEMI, + [50309] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4887), 1, + anon_sym_EQ_GT, + [50316] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4889), 1, + aux_sym_package_specification_token3, + [50323] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(271), 1, + aux_sym_subprogram_body_token1, + [50330] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4891), 1, + aux_sym_package_specification_token2, + [50337] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4893), 1, + anon_sym_SEMI, + [50344] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4895), 1, + anon_sym_SEMI, + [50351] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4897), 1, + anon_sym_RPAREN, + [50358] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4899), 1, + anon_sym_SEMI, + [50365] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4901), 1, + anon_sym_COLON, + [50372] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4903), 1, + aux_sym_asynchronous_select_token1, + [50379] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4905), 1, + sym_identifier, + [50386] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4907), 1, + anon_sym_RPAREN, + [50393] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4909), 1, + anon_sym_SEMI, + [50400] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4911), 1, + anon_sym_RPAREN, + [50407] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4913), 1, + anon_sym_EQ_GT, + [50414] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4915), 1, + anon_sym_SEMI, + [50421] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4917), 1, + aux_sym_asynchronous_select_token2, + [50428] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4919), 1, + aux_sym_record_component_association_list_token1, + [50435] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4175), 1, + anon_sym_SEMI, + [50442] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4921), 1, + sym_identifier, + [50449] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4923), 1, + aux_sym_range_attribute_designator_token1, + [50456] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4925), 1, + anon_sym_SEMI, + [50463] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4927), 1, + aux_sym_with_clause_token2, + [50470] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4929), 1, + aux_sym_compilation_unit_token1, + [50477] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4931), 1, + aux_sym_compilation_unit_token1, + [50484] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3180), 1, + anon_sym_SEMI, + [50491] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4933), 1, + anon_sym_RPAREN, + [50498] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3824), 1, + anon_sym_COMMA, + [50505] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4935), 1, + anon_sym_SEMI, + [50512] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4937), 1, + anon_sym_EQ_GT, + [50519] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3808), 1, + anon_sym_SEMI, + [50526] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4940), 1, + anon_sym_SEMI, + [50533] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4942), 1, + anon_sym_SEMI, + [50540] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4944), 1, + anon_sym_SEMI, + [50547] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4946), 1, + aux_sym_package_specification_token3, + [50554] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4948), 1, + anon_sym_SEMI, + [50561] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4950), 1, + aux_sym_loop_statement_token1, + [50568] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4952), 1, + anon_sym_EQ_GT, + [50575] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4954), 1, + aux_sym_with_clause_token2, + [50582] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4956), 1, + anon_sym_EQ_GT, + [50589] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4958), 1, + aux_sym_loop_statement_token1, + [50596] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4960), 1, + aux_sym_package_specification_token3, + [50603] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4962), 1, + aux_sym_allocator_token1, + [50610] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4964), 1, + anon_sym_SEMI, + [50617] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4966), 1, + anon_sym_SEMI, + [50624] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4968), 1, + aux_sym_package_specification_token3, + [50631] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_SEMI, + [50638] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4970), 1, + aux_sym_asynchronous_select_token1, + [50645] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4972), 1, + anon_sym_SEMI, + [50652] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4974), 1, + anon_sym_SEMI, + [50659] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4976), 1, + anon_sym_SEMI, + [50666] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + sym_identifier, + [50673] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4980), 1, + anon_sym_SEMI, + [50680] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4982), 1, + aux_sym_expression_token2, + [50687] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4984), 1, + aux_sym_asynchronous_select_token2, + [50694] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4986), 1, + anon_sym_SEMI, + [50701] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4988), 1, + aux_sym_package_specification_token2, + [50708] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4990), 1, + aux_sym_subprogram_body_token1, + [50715] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4992), 1, + sym_tick, + [50722] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4994), 1, + anon_sym_SEMI, + [50729] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4996), 1, + aux_sym_compilation_unit_token1, + [50736] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4998), 1, + anon_sym_SEMI, + [50743] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5000), 1, + anon_sym_SEMI, + [50750] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(327), 1, + aux_sym_subprogram_body_token1, + [50757] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 1, + aux_sym_with_clause_token2, + [50764] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + aux_sym_with_clause_token2, + [50771] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5006), 1, + anon_sym_SEMI, + [50778] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5008), 1, + anon_sym_EQ_GT, + [50785] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5010), 1, + anon_sym_SEMI, + [50792] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5012), 1, + aux_sym_iterator_specification_token1, + [50799] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5014), 1, - sym_identifier, - [51060] = 2, + aux_sym_iterator_specification_token1, + [50806] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5016), 1, - aux_sym_with_clause_token2, - [51067] = 2, + aux_sym_global_mode_token1, + [50813] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(273), 1, + aux_sym_subprogram_body_token1, + [50820] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5018), 1, aux_sym_package_specification_token3, - [51074] = 2, + [50827] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5020), 1, - anon_sym_RPAREN, - [51081] = 2, + anon_sym_LPAREN, + [50834] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5022), 1, - anon_sym_COLON, - [51088] = 2, + anon_sym_SEMI, + [50841] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5024), 1, + aux_sym_asynchronous_select_token1, + [50848] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4134), 1, anon_sym_SEMI, - [51095] = 2, + [50855] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5026), 1, - sym_identifier, - [51102] = 2, + anon_sym_SEMI, + [50862] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5028), 1, - aux_sym_package_specification_token2, - [51109] = 2, + anon_sym_LT_GT, + [50869] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5030), 1, anon_sym_SEMI, - [51116] = 2, + [50876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3722), 1, - aux_sym_package_specification_token2, - [51123] = 2, + ACTIONS(3120), 1, + anon_sym_RPAREN, + [50883] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5032), 1, anon_sym_SEMI, - [51130] = 2, + [50890] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5034), 1, - anon_sym_SEMI, - [51137] = 2, + aux_sym_compilation_unit_token1, + [50897] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5036), 1, - anon_sym_SEMI, - [51144] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4291), 1, - anon_sym_SEMI, - [51151] = 2, + aux_sym_loop_statement_token1, + [50904] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5038), 1, - anon_sym_SEMI, - [51158] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3144), 1, - aux_sym_interface_type_definition_token2, - [51165] = 2, + anon_sym_EQ_GT, + [50911] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5040), 1, - aux_sym_record_component_association_list_token1, - [51172] = 2, + aux_sym_with_clause_token2, + [50918] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5042), 1, + anon_sym_COLON, + [50925] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4028), 1, anon_sym_SEMI, - [51179] = 2, + [50932] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3834), 1, + anon_sym_SEMI, + [50939] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5044), 1, - anon_sym_RPAREN, - [51186] = 2, + anon_sym_SEMI, + [50946] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5046), 1, - anon_sym_COLON, - [51193] = 2, + sym_identifier, + [50953] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5048), 1, - anon_sym_RPAREN, - [51200] = 2, + anon_sym_EQ_GT, + [50960] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5050), 1, anon_sym_SEMI, - [51207] = 2, + [50967] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5052), 1, - aux_sym_package_specification_token2, - [51214] = 2, + anon_sym_SEMI, + [50974] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5054), 1, - anon_sym_SEMI, - [51221] = 2, + anon_sym_RPAREN, + [50981] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5056), 1, - aux_sym_package_specification_token2, - [51228] = 2, + anon_sym_SEMI, + [50988] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5058), 1, - anon_sym_SEMI, - [51235] = 2, + aux_sym_package_body_token1, + [50995] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5060), 1, - aux_sym_compilation_unit_token1, - [51242] = 2, + aux_sym_package_body_token1, + [51002] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5062), 1, - aux_sym_subunit_token1, - [51249] = 2, + anon_sym_SEMI, + [51009] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5064), 1, - anon_sym_RPAREN, - [51256] = 2, + aux_sym_package_body_token1, + [51016] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5066), 1, - aux_sym_package_specification_token3, - [51263] = 2, + aux_sym_record_component_association_list_token1, + [51023] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3066), 1, + aux_sym_interface_type_definition_token2, + [51030] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3838), 1, + anon_sym_SEMI, + [51037] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5068), 1, anon_sym_SEMI, - [51270] = 2, + [51044] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5070), 1, + sym_identifier, + [51051] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3913), 1, anon_sym_SEMI, - [51277] = 2, + [51058] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5072), 1, - aux_sym_subprogram_body_token1, - [51284] = 2, + aux_sym_package_specification_token3, + [51065] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5074), 1, anon_sym_SEMI, - [51291] = 2, + [51072] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5076), 1, anon_sym_SEMI, - [51298] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2125), 1, - anon_sym_DOT_DOT, - [51305] = 2, + [51079] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5078), 1, - sym_tick, - [51312] = 2, + anon_sym_SEMI, + [51086] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5080), 1, aux_sym_compilation_unit_token1, - [51319] = 2, + [51093] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3330), 1, + anon_sym_SEMI, + [51100] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5082), 1, anon_sym_RPAREN, - [51326] = 2, + [51107] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5084), 1, - anon_sym_RPAREN, - [51333] = 2, + aux_sym_package_specification_token3, + [51114] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5086), 1, - anon_sym_SEMI, - [51340] = 2, + aux_sym__aspect_mark_token1, + [51121] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5088), 1, - anon_sym_RBRACK, - [51347] = 2, + aux_sym_package_specification_token3, + [51128] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5090), 1, - aux_sym_primary_null_token1, - [51354] = 2, + aux_sym_subprogram_body_token1, + [51135] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5092), 1, anon_sym_SEMI, - [51361] = 2, + [51142] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3446), 1, + aux_sym_allocator_token1, + [51149] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5094), 1, - aux_sym_package_specification_token3, - [51368] = 2, + aux_sym_allocator_token1, + [51156] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5096), 1, anon_sym_SEMI, - [51375] = 2, + [51163] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5098), 1, - aux_sym_subprogram_body_token1, - [51382] = 2, + aux_sym_compilation_unit_token1, + [51170] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5100), 1, - anon_sym_SEMI, - [51389] = 2, + aux_sym_package_specification_token3, + [51177] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5102), 1, - anon_sym_LPAREN, - [51396] = 2, + anon_sym_SEMI, + [51184] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5104), 1, - anon_sym_LPAREN, - [51403] = 2, + anon_sym_COLON, + [51191] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5106), 1, - aux_sym_package_specification_token3, - [51410] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4096), 1, - anon_sym_SEMI, - [51417] = 2, + sym_identifier, + [51198] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5108), 1, - anon_sym_EQ_GT, - [51424] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3951), 1, - anon_sym_RPAREN, - [51431] = 2, + aux_sym_component_list_token1, + [51205] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5110), 1, - anon_sym_RPAREN, - [51438] = 2, + anon_sym_SEMI, + [51212] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5112), 1, - aux_sym_package_specification_token2, - [51445] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(437), 1, - aux_sym_allocator_token1, - [51452] = 2, + aux_sym_chunk_specification_token1, + [51219] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5114), 1, - aux_sym_loop_statement_token1, - [51459] = 2, + anon_sym_SEMI, + [51226] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5116), 1, - anon_sym_SEMI, - [51466] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4118), 1, - anon_sym_SEMI, - [51473] = 2, + aux_sym_package_specification_token3, + [51233] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5118), 1, - anon_sym_SEMI, - [51480] = 2, + anon_sym_DOT_DOT, + [51240] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5120), 1, - aux_sym_package_specification_token3, - [51487] = 2, + anon_sym_SEMI, + [51247] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5122), 1, - aux_sym_package_specification_token3, - [51494] = 2, + anon_sym_SEMI, + [51254] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5124), 1, + aux_sym_package_specification_token3, + [51261] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4094), 1, anon_sym_SEMI, - [51501] = 2, + [51268] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3972), 1, + anon_sym_SEMI, + [51275] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5126), 1, - aux_sym_asynchronous_select_token2, - [51508] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4179), 1, - anon_sym_SEMI, - [51515] = 2, + anon_sym_RPAREN, + [51282] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5128), 1, - aux_sym_asynchronous_select_token1, - [51522] = 2, + anon_sym_SEMI, + [51289] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5130), 1, - aux_sym_asynchronous_select_token2, - [51529] = 2, + anon_sym_SEMI, + [51296] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5132), 1, - anon_sym_SEMI, - [51536] = 2, + anon_sym_EQ_GT, + [51303] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5134), 1, - anon_sym_EQ_GT, - [51543] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3086), 1, anon_sym_RPAREN, - [51550] = 2, + [51310] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5136), 1, - anon_sym_EQ_GT, - [51557] = 2, + anon_sym_SEMI, + [51317] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4072), 1, + anon_sym_SEMI, + [51324] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5138), 1, - anon_sym_RPAREN, - [51564] = 2, + anon_sym_SEMI, + [51331] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4271), 1, + anon_sym_SEMI, + [51338] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5140), 1, - sym_identifier, - [51571] = 2, + aux_sym_package_specification_token3, + [51345] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3325), 1, + ACTIONS(3231), 1, anon_sym_SEMI, - [51578] = 2, + [51352] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(215), 1, + aux_sym_private_type_declaration_token1, + [51359] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4068), 1, + anon_sym_SEMI, + [51366] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5142), 1, - aux_sym_chunk_specification_token1, - [51585] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5088), 1, - anon_sym_RPAREN, - [51592] = 2, + aux_sym_if_expression_token1, + [51373] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5144), 1, + anon_sym_SEMI, + [51380] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5146), 1, + anon_sym_SEMI, + [51387] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5148), 1, + aux_sym_package_specification_token3, + [51394] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5150), 1, + anon_sym_SEMI, + [51401] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5152), 1, + aux_sym_attribute_designator_token4, + [51408] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5154), 1, + aux_sym_record_component_association_list_token1, + [51415] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5156), 1, + anon_sym_SEMI, + [51422] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5158), 1, anon_sym_EQ_GT, + [51429] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5160), 1, + anon_sym_SEMI, + [51436] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5126), 1, + anon_sym_RBRACK, + [51443] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 1, + anon_sym_SEMI, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(73)] = 0, - [SMALL_STATE(74)] = 135, - [SMALL_STATE(75)] = 268, - [SMALL_STATE(76)] = 392, - [SMALL_STATE(77)] = 512, - [SMALL_STATE(78)] = 629, - [SMALL_STATE(79)] = 746, - [SMALL_STATE(80)] = 861, - [SMALL_STATE(81)] = 978, - [SMALL_STATE(82)] = 1095, - [SMALL_STATE(83)] = 1209, - [SMALL_STATE(84)] = 1323, - [SMALL_STATE(85)] = 1437, - [SMALL_STATE(86)] = 1551, - [SMALL_STATE(87)] = 1685, - [SMALL_STATE(88)] = 1799, - [SMALL_STATE(89)] = 1923, - [SMALL_STATE(90)] = 2037, - [SMALL_STATE(91)] = 2171, - [SMALL_STATE(92)] = 2302, - [SMALL_STATE(93)] = 2430, - [SMALL_STATE(94)] = 2558, - [SMALL_STATE(95)] = 2681, - [SMALL_STATE(96)] = 2806, - [SMALL_STATE(97)] = 2926, - [SMALL_STATE(98)] = 3040, - [SMALL_STATE(99)] = 3150, - [SMALL_STATE(100)] = 3261, - [SMALL_STATE(101)] = 3372, - [SMALL_STATE(102)] = 3483, - [SMALL_STATE(103)] = 3591, - [SMALL_STATE(104)] = 3696, - [SMALL_STATE(105)] = 3798, - [SMALL_STATE(106)] = 3900, - [SMALL_STATE(107)] = 4002, - [SMALL_STATE(108)] = 4099, - [SMALL_STATE(109)] = 4198, - [SMALL_STATE(110)] = 4295, - [SMALL_STATE(111)] = 4398, - [SMALL_STATE(112)] = 4497, - [SMALL_STATE(113)] = 4600, - [SMALL_STATE(114)] = 4703, - [SMALL_STATE(115)] = 4802, - [SMALL_STATE(116)] = 4858, - [SMALL_STATE(117)] = 4914, - [SMALL_STATE(118)] = 5010, - [SMALL_STATE(119)] = 5106, - [SMALL_STATE(120)] = 5162, - [SMALL_STATE(121)] = 5218, - [SMALL_STATE(122)] = 5274, - [SMALL_STATE(123)] = 5330, - [SMALL_STATE(124)] = 5386, - [SMALL_STATE(125)] = 5482, - [SMALL_STATE(126)] = 5538, - [SMALL_STATE(127)] = 5594, - [SMALL_STATE(128)] = 5650, - [SMALL_STATE(129)] = 5706, - [SMALL_STATE(130)] = 5762, - [SMALL_STATE(131)] = 5818, - [SMALL_STATE(132)] = 5874, - [SMALL_STATE(133)] = 5930, - [SMALL_STATE(134)] = 5986, - [SMALL_STATE(135)] = 6042, - [SMALL_STATE(136)] = 6098, - [SMALL_STATE(137)] = 6154, - [SMALL_STATE(138)] = 6210, - [SMALL_STATE(139)] = 6266, - [SMALL_STATE(140)] = 6322, - [SMALL_STATE(141)] = 6378, - [SMALL_STATE(142)] = 6434, - [SMALL_STATE(143)] = 6530, - [SMALL_STATE(144)] = 6626, - [SMALL_STATE(145)] = 6722, - [SMALL_STATE(146)] = 6778, - [SMALL_STATE(147)] = 6834, - [SMALL_STATE(148)] = 6890, - [SMALL_STATE(149)] = 6946, - [SMALL_STATE(150)] = 7042, - [SMALL_STATE(151)] = 7098, - [SMALL_STATE(152)] = 7194, - [SMALL_STATE(153)] = 7250, - [SMALL_STATE(154)] = 7306, - [SMALL_STATE(155)] = 7362, - [SMALL_STATE(156)] = 7418, - [SMALL_STATE(157)] = 7474, - [SMALL_STATE(158)] = 7530, - [SMALL_STATE(159)] = 7586, - [SMALL_STATE(160)] = 7642, - [SMALL_STATE(161)] = 7698, - [SMALL_STATE(162)] = 7754, - [SMALL_STATE(163)] = 7850, - [SMALL_STATE(164)] = 7906, - [SMALL_STATE(165)] = 7962, - [SMALL_STATE(166)] = 8018, - [SMALL_STATE(167)] = 8114, - [SMALL_STATE(168)] = 8170, - [SMALL_STATE(169)] = 8226, - [SMALL_STATE(170)] = 8282, - [SMALL_STATE(171)] = 8338, - [SMALL_STATE(172)] = 8394, - [SMALL_STATE(173)] = 8490, - [SMALL_STATE(174)] = 8546, - [SMALL_STATE(175)] = 8602, - [SMALL_STATE(176)] = 8658, - [SMALL_STATE(177)] = 8714, - [SMALL_STATE(178)] = 8770, - [SMALL_STATE(179)] = 8826, - [SMALL_STATE(180)] = 8882, - [SMALL_STATE(181)] = 8938, - [SMALL_STATE(182)] = 8994, - [SMALL_STATE(183)] = 9050, - [SMALL_STATE(184)] = 9106, - [SMALL_STATE(185)] = 9162, - [SMALL_STATE(186)] = 9218, - [SMALL_STATE(187)] = 9274, - [SMALL_STATE(188)] = 9370, - [SMALL_STATE(189)] = 9426, - [SMALL_STATE(190)] = 9519, - [SMALL_STATE(191)] = 9612, - [SMALL_STATE(192)] = 9705, - [SMALL_STATE(193)] = 9798, - [SMALL_STATE(194)] = 9891, - [SMALL_STATE(195)] = 9984, - [SMALL_STATE(196)] = 10077, - [SMALL_STATE(197)] = 10170, - [SMALL_STATE(198)] = 10263, - [SMALL_STATE(199)] = 10356, - [SMALL_STATE(200)] = 10449, - [SMALL_STATE(201)] = 10542, - [SMALL_STATE(202)] = 10635, - [SMALL_STATE(203)] = 10728, - [SMALL_STATE(204)] = 10821, - [SMALL_STATE(205)] = 10914, - [SMALL_STATE(206)] = 11007, - [SMALL_STATE(207)] = 11100, - [SMALL_STATE(208)] = 11193, - [SMALL_STATE(209)] = 11290, - [SMALL_STATE(210)] = 11383, - [SMALL_STATE(211)] = 11476, - [SMALL_STATE(212)] = 11569, - [SMALL_STATE(213)] = 11662, - [SMALL_STATE(214)] = 11755, - [SMALL_STATE(215)] = 11848, - [SMALL_STATE(216)] = 11941, - [SMALL_STATE(217)] = 12034, - [SMALL_STATE(218)] = 12127, - [SMALL_STATE(219)] = 12220, - [SMALL_STATE(220)] = 12313, - [SMALL_STATE(221)] = 12406, - [SMALL_STATE(222)] = 12499, - [SMALL_STATE(223)] = 12592, - [SMALL_STATE(224)] = 12685, - [SMALL_STATE(225)] = 12778, - [SMALL_STATE(226)] = 12871, - [SMALL_STATE(227)] = 12964, - [SMALL_STATE(228)] = 13057, - [SMALL_STATE(229)] = 13150, - [SMALL_STATE(230)] = 13243, - [SMALL_STATE(231)] = 13297, - [SMALL_STATE(232)] = 13351, - [SMALL_STATE(233)] = 13405, - [SMALL_STATE(234)] = 13499, - [SMALL_STATE(235)] = 13593, - [SMALL_STATE(236)] = 13687, - [SMALL_STATE(237)] = 13777, - [SMALL_STATE(238)] = 13831, - [SMALL_STATE(239)] = 13885, - [SMALL_STATE(240)] = 13939, - [SMALL_STATE(241)] = 13993, - [SMALL_STATE(242)] = 14087, - [SMALL_STATE(243)] = 14181, - [SMALL_STATE(244)] = 14271, - [SMALL_STATE(245)] = 14325, - [SMALL_STATE(246)] = 14379, - [SMALL_STATE(247)] = 14433, - [SMALL_STATE(248)] = 14487, - [SMALL_STATE(249)] = 14541, - [SMALL_STATE(250)] = 14595, - [SMALL_STATE(251)] = 14649, - [SMALL_STATE(252)] = 14743, - [SMALL_STATE(253)] = 14797, - [SMALL_STATE(254)] = 14851, - [SMALL_STATE(255)] = 14905, - [SMALL_STATE(256)] = 14959, - [SMALL_STATE(257)] = 15013, - [SMALL_STATE(258)] = 15067, - [SMALL_STATE(259)] = 15157, - [SMALL_STATE(260)] = 15210, - [SMALL_STATE(261)] = 15299, - [SMALL_STATE(262)] = 15352, - [SMALL_STATE(263)] = 15405, - [SMALL_STATE(264)] = 15494, - [SMALL_STATE(265)] = 15580, - [SMALL_STATE(266)] = 15642, - [SMALL_STATE(267)] = 15708, - [SMALL_STATE(268)] = 15770, - [SMALL_STATE(269)] = 15821, - [SMALL_STATE(270)] = 15872, - [SMALL_STATE(271)] = 15923, - [SMALL_STATE(272)] = 15974, - [SMALL_STATE(273)] = 16025, - [SMALL_STATE(274)] = 16110, - [SMALL_STATE(275)] = 16161, - [SMALL_STATE(276)] = 16212, - [SMALL_STATE(277)] = 16263, - [SMALL_STATE(278)] = 16314, - [SMALL_STATE(279)] = 16399, - [SMALL_STATE(280)] = 16458, - [SMALL_STATE(281)] = 16508, - [SMALL_STATE(282)] = 16558, - [SMALL_STATE(283)] = 16608, - [SMALL_STATE(284)] = 16658, - [SMALL_STATE(285)] = 16708, - [SMALL_STATE(286)] = 16758, - [SMALL_STATE(287)] = 16808, - [SMALL_STATE(288)] = 16858, - [SMALL_STATE(289)] = 16908, - [SMALL_STATE(290)] = 16958, - [SMALL_STATE(291)] = 17008, - [SMALL_STATE(292)] = 17058, - [SMALL_STATE(293)] = 17108, - [SMALL_STATE(294)] = 17158, - [SMALL_STATE(295)] = 17208, - [SMALL_STATE(296)] = 17258, - [SMALL_STATE(297)] = 17308, - [SMALL_STATE(298)] = 17358, - [SMALL_STATE(299)] = 17408, - [SMALL_STATE(300)] = 17458, - [SMALL_STATE(301)] = 17508, - [SMALL_STATE(302)] = 17558, - [SMALL_STATE(303)] = 17608, - [SMALL_STATE(304)] = 17690, - [SMALL_STATE(305)] = 17740, - [SMALL_STATE(306)] = 17790, - [SMALL_STATE(307)] = 17840, - [SMALL_STATE(308)] = 17890, - [SMALL_STATE(309)] = 17940, - [SMALL_STATE(310)] = 17990, - [SMALL_STATE(311)] = 18040, - [SMALL_STATE(312)] = 18090, - [SMALL_STATE(313)] = 18140, - [SMALL_STATE(314)] = 18190, - [SMALL_STATE(315)] = 18240, - [SMALL_STATE(316)] = 18290, - [SMALL_STATE(317)] = 18340, - [SMALL_STATE(318)] = 18390, - [SMALL_STATE(319)] = 18440, - [SMALL_STATE(320)] = 18490, - [SMALL_STATE(321)] = 18540, - [SMALL_STATE(322)] = 18590, - [SMALL_STATE(323)] = 18640, - [SMALL_STATE(324)] = 18690, - [SMALL_STATE(325)] = 18740, - [SMALL_STATE(326)] = 18790, - [SMALL_STATE(327)] = 18840, - [SMALL_STATE(328)] = 18890, - [SMALL_STATE(329)] = 18940, - [SMALL_STATE(330)] = 18990, - [SMALL_STATE(331)] = 19040, - [SMALL_STATE(332)] = 19090, - [SMALL_STATE(333)] = 19140, - [SMALL_STATE(334)] = 19190, - [SMALL_STATE(335)] = 19240, - [SMALL_STATE(336)] = 19290, - [SMALL_STATE(337)] = 19340, - [SMALL_STATE(338)] = 19390, - [SMALL_STATE(339)] = 19440, - [SMALL_STATE(340)] = 19490, - [SMALL_STATE(341)] = 19540, - [SMALL_STATE(342)] = 19590, - [SMALL_STATE(343)] = 19640, - [SMALL_STATE(344)] = 19690, - [SMALL_STATE(345)] = 19740, - [SMALL_STATE(346)] = 19790, - [SMALL_STATE(347)] = 19840, - [SMALL_STATE(348)] = 19890, - [SMALL_STATE(349)] = 19940, - [SMALL_STATE(350)] = 19990, - [SMALL_STATE(351)] = 20040, - [SMALL_STATE(352)] = 20090, - [SMALL_STATE(353)] = 20140, - [SMALL_STATE(354)] = 20190, - [SMALL_STATE(355)] = 20240, - [SMALL_STATE(356)] = 20290, - [SMALL_STATE(357)] = 20340, - [SMALL_STATE(358)] = 20390, - [SMALL_STATE(359)] = 20440, - [SMALL_STATE(360)] = 20490, - [SMALL_STATE(361)] = 20540, - [SMALL_STATE(362)] = 20590, - [SMALL_STATE(363)] = 20640, - [SMALL_STATE(364)] = 20690, - [SMALL_STATE(365)] = 20740, - [SMALL_STATE(366)] = 20790, - [SMALL_STATE(367)] = 20840, - [SMALL_STATE(368)] = 20890, - [SMALL_STATE(369)] = 20940, - [SMALL_STATE(370)] = 20990, - [SMALL_STATE(371)] = 21040, - [SMALL_STATE(372)] = 21090, - [SMALL_STATE(373)] = 21172, - [SMALL_STATE(374)] = 21222, - [SMALL_STATE(375)] = 21272, - [SMALL_STATE(376)] = 21322, - [SMALL_STATE(377)] = 21372, - [SMALL_STATE(378)] = 21422, - [SMALL_STATE(379)] = 21472, - [SMALL_STATE(380)] = 21522, - [SMALL_STATE(381)] = 21572, - [SMALL_STATE(382)] = 21622, - [SMALL_STATE(383)] = 21672, - [SMALL_STATE(384)] = 21722, - [SMALL_STATE(385)] = 21772, - [SMALL_STATE(386)] = 21822, - [SMALL_STATE(387)] = 21872, - [SMALL_STATE(388)] = 21922, - [SMALL_STATE(389)] = 21972, - [SMALL_STATE(390)] = 22022, - [SMALL_STATE(391)] = 22072, - [SMALL_STATE(392)] = 22122, - [SMALL_STATE(393)] = 22172, - [SMALL_STATE(394)] = 22222, - [SMALL_STATE(395)] = 22272, - [SMALL_STATE(396)] = 22322, - [SMALL_STATE(397)] = 22372, - [SMALL_STATE(398)] = 22422, - [SMALL_STATE(399)] = 22472, - [SMALL_STATE(400)] = 22522, - [SMALL_STATE(401)] = 22572, - [SMALL_STATE(402)] = 22622, - [SMALL_STATE(403)] = 22672, - [SMALL_STATE(404)] = 22722, - [SMALL_STATE(405)] = 22772, - [SMALL_STATE(406)] = 22822, - [SMALL_STATE(407)] = 22872, - [SMALL_STATE(408)] = 22922, - [SMALL_STATE(409)] = 22972, - [SMALL_STATE(410)] = 23022, - [SMALL_STATE(411)] = 23072, - [SMALL_STATE(412)] = 23122, - [SMALL_STATE(413)] = 23172, - [SMALL_STATE(414)] = 23222, - [SMALL_STATE(415)] = 23272, - [SMALL_STATE(416)] = 23322, - [SMALL_STATE(417)] = 23372, - [SMALL_STATE(418)] = 23422, - [SMALL_STATE(419)] = 23472, - [SMALL_STATE(420)] = 23522, - [SMALL_STATE(421)] = 23572, - [SMALL_STATE(422)] = 23622, - [SMALL_STATE(423)] = 23672, - [SMALL_STATE(424)] = 23722, - [SMALL_STATE(425)] = 23772, - [SMALL_STATE(426)] = 23854, - [SMALL_STATE(427)] = 23904, - [SMALL_STATE(428)] = 23954, - [SMALL_STATE(429)] = 24004, - [SMALL_STATE(430)] = 24054, - [SMALL_STATE(431)] = 24104, - [SMALL_STATE(432)] = 24154, - [SMALL_STATE(433)] = 24204, - [SMALL_STATE(434)] = 24254, - [SMALL_STATE(435)] = 24304, - [SMALL_STATE(436)] = 24386, - [SMALL_STATE(437)] = 24468, - [SMALL_STATE(438)] = 24518, - [SMALL_STATE(439)] = 24568, - [SMALL_STATE(440)] = 24618, - [SMALL_STATE(441)] = 24668, - [SMALL_STATE(442)] = 24750, - [SMALL_STATE(443)] = 24800, - [SMALL_STATE(444)] = 24850, - [SMALL_STATE(445)] = 24900, - [SMALL_STATE(446)] = 24950, - [SMALL_STATE(447)] = 25000, - [SMALL_STATE(448)] = 25050, - [SMALL_STATE(449)] = 25100, - [SMALL_STATE(450)] = 25150, - [SMALL_STATE(451)] = 25200, - [SMALL_STATE(452)] = 25282, - [SMALL_STATE(453)] = 25364, - [SMALL_STATE(454)] = 25446, - [SMALL_STATE(455)] = 25496, - [SMALL_STATE(456)] = 25546, - [SMALL_STATE(457)] = 25596, - [SMALL_STATE(458)] = 25646, - [SMALL_STATE(459)] = 25696, - [SMALL_STATE(460)] = 25746, - [SMALL_STATE(461)] = 25796, - [SMALL_STATE(462)] = 25846, - [SMALL_STATE(463)] = 25896, - [SMALL_STATE(464)] = 25946, - [SMALL_STATE(465)] = 25996, - [SMALL_STATE(466)] = 26046, - [SMALL_STATE(467)] = 26096, - [SMALL_STATE(468)] = 26146, - [SMALL_STATE(469)] = 26196, - [SMALL_STATE(470)] = 26278, - [SMALL_STATE(471)] = 26328, - [SMALL_STATE(472)] = 26378, - [SMALL_STATE(473)] = 26428, - [SMALL_STATE(474)] = 26510, - [SMALL_STATE(475)] = 26560, - [SMALL_STATE(476)] = 26610, - [SMALL_STATE(477)] = 26660, - [SMALL_STATE(478)] = 26709, - [SMALL_STATE(479)] = 26766, - [SMALL_STATE(480)] = 26815, - [SMALL_STATE(481)] = 26864, - [SMALL_STATE(482)] = 26913, - [SMALL_STATE(483)] = 26962, - [SMALL_STATE(484)] = 27011, - [SMALL_STATE(485)] = 27060, - [SMALL_STATE(486)] = 27116, - [SMALL_STATE(487)] = 27172, - [SMALL_STATE(488)] = 27228, - [SMALL_STATE(489)] = 27277, - [SMALL_STATE(490)] = 27324, - [SMALL_STATE(491)] = 27371, - [SMALL_STATE(492)] = 27418, - [SMALL_STATE(493)] = 27465, - [SMALL_STATE(494)] = 27512, - [SMALL_STATE(495)] = 27559, - [SMALL_STATE(496)] = 27606, - [SMALL_STATE(497)] = 27653, - [SMALL_STATE(498)] = 27699, - [SMALL_STATE(499)] = 27745, - [SMALL_STATE(500)] = 27815, - [SMALL_STATE(501)] = 27885, - [SMALL_STATE(502)] = 27931, - [SMALL_STATE(503)] = 28015, - [SMALL_STATE(504)] = 28061, - [SMALL_STATE(505)] = 28123, - [SMALL_STATE(506)] = 28202, - [SMALL_STATE(507)] = 28265, - [SMALL_STATE(508)] = 28332, - [SMALL_STATE(509)] = 28384, - [SMALL_STATE(510)] = 28436, - [SMALL_STATE(511)] = 28488, - [SMALL_STATE(512)] = 28540, - [SMALL_STATE(513)] = 28592, - [SMALL_STATE(514)] = 28673, - [SMALL_STATE(515)] = 28754, - [SMALL_STATE(516)] = 28808, - [SMALL_STATE(517)] = 28850, - [SMALL_STATE(518)] = 28895, - [SMALL_STATE(519)] = 28950, - [SMALL_STATE(520)] = 28989, - [SMALL_STATE(521)] = 29044, - [SMALL_STATE(522)] = 29099, - [SMALL_STATE(523)] = 29154, - [SMALL_STATE(524)] = 29204, - [SMALL_STATE(525)] = 29254, - [SMALL_STATE(526)] = 29296, - [SMALL_STATE(527)] = 29365, - [SMALL_STATE(528)] = 29410, - [SMALL_STATE(529)] = 29452, - [SMALL_STATE(530)] = 29497, - [SMALL_STATE(531)] = 29553, - [SMALL_STATE(532)] = 29609, - [SMALL_STATE(533)] = 29665, - [SMALL_STATE(534)] = 29721, - [SMALL_STATE(535)] = 29761, - [SMALL_STATE(536)] = 29817, - [SMALL_STATE(537)] = 29853, - [SMALL_STATE(538)] = 29910, - [SMALL_STATE(539)] = 29967, - [SMALL_STATE(540)] = 30018, - [SMALL_STATE(541)] = 30075, - [SMALL_STATE(542)] = 30132, - [SMALL_STATE(543)] = 30169, - [SMALL_STATE(544)] = 30226, - [SMALL_STATE(545)] = 30280, - [SMALL_STATE(546)] = 30334, - [SMALL_STATE(547)] = 30368, - [SMALL_STATE(548)] = 30422, - [SMALL_STATE(549)] = 30476, - [SMALL_STATE(550)] = 30508, - [SMALL_STATE(551)] = 30548, - [SMALL_STATE(552)] = 30602, - [SMALL_STATE(553)] = 30656, - [SMALL_STATE(554)] = 30685, - [SMALL_STATE(555)] = 30736, - [SMALL_STATE(556)] = 30787, - [SMALL_STATE(557)] = 30838, - [SMALL_STATE(558)] = 30887, - [SMALL_STATE(559)] = 30916, - [SMALL_STATE(560)] = 30967, - [SMALL_STATE(561)] = 31018, - [SMALL_STATE(562)] = 31047, - [SMALL_STATE(563)] = 31104, - [SMALL_STATE(564)] = 31153, - [SMALL_STATE(565)] = 31204, - [SMALL_STATE(566)] = 31247, - [SMALL_STATE(567)] = 31288, - [SMALL_STATE(568)] = 31342, - [SMALL_STATE(569)] = 31396, - [SMALL_STATE(570)] = 31450, - [SMALL_STATE(571)] = 31501, - [SMALL_STATE(572)] = 31532, - [SMALL_STATE(573)] = 31575, - [SMALL_STATE(574)] = 31618, - [SMALL_STATE(575)] = 31647, - [SMALL_STATE(576)] = 31698, - [SMALL_STATE(577)] = 31729, - [SMALL_STATE(578)] = 31760, - [SMALL_STATE(579)] = 31807, - [SMALL_STATE(580)] = 31858, - [SMALL_STATE(581)] = 31898, - [SMALL_STATE(582)] = 31948, - [SMALL_STATE(583)] = 31998, - [SMALL_STATE(584)] = 32024, - [SMALL_STATE(585)] = 32072, - [SMALL_STATE(586)] = 32120, - [SMALL_STATE(587)] = 32168, - [SMALL_STATE(588)] = 32194, - [SMALL_STATE(589)] = 32220, - [SMALL_STATE(590)] = 32246, - [SMALL_STATE(591)] = 32294, - [SMALL_STATE(592)] = 32320, - [SMALL_STATE(593)] = 32370, - [SMALL_STATE(594)] = 32415, - [SMALL_STATE(595)] = 32460, - [SMALL_STATE(596)] = 32489, - [SMALL_STATE(597)] = 32518, - [SMALL_STATE(598)] = 32547, - [SMALL_STATE(599)] = 32584, - [SMALL_STATE(600)] = 32613, - [SMALL_STATE(601)] = 32656, - [SMALL_STATE(602)] = 32701, - [SMALL_STATE(603)] = 32730, - [SMALL_STATE(604)] = 32759, - [SMALL_STATE(605)] = 32783, - [SMALL_STATE(606)] = 32823, - [SMALL_STATE(607)] = 32847, - [SMALL_STATE(608)] = 32871, - [SMALL_STATE(609)] = 32913, - [SMALL_STATE(610)] = 32947, - [SMALL_STATE(611)] = 32989, - [SMALL_STATE(612)] = 33031, - [SMALL_STATE(613)] = 33055, - [SMALL_STATE(614)] = 33095, - [SMALL_STATE(615)] = 33139, - [SMALL_STATE(616)] = 33173, - [SMALL_STATE(617)] = 33197, - [SMALL_STATE(618)] = 33237, - [SMALL_STATE(619)] = 33276, - [SMALL_STATE(620)] = 33315, - [SMALL_STATE(621)] = 33342, - [SMALL_STATE(622)] = 33381, - [SMALL_STATE(623)] = 33420, - [SMALL_STATE(624)] = 33447, - [SMALL_STATE(625)] = 33486, - [SMALL_STATE(626)] = 33523, - [SMALL_STATE(627)] = 33562, - [SMALL_STATE(628)] = 33601, - [SMALL_STATE(629)] = 33635, - [SMALL_STATE(630)] = 33673, - [SMALL_STATE(631)] = 33711, - [SMALL_STATE(632)] = 33751, - [SMALL_STATE(633)] = 33789, - [SMALL_STATE(634)] = 33827, - [SMALL_STATE(635)] = 33865, - [SMALL_STATE(636)] = 33901, - [SMALL_STATE(637)] = 33935, - [SMALL_STATE(638)] = 33969, - [SMALL_STATE(639)] = 34007, - [SMALL_STATE(640)] = 34043, - [SMALL_STATE(641)] = 34081, - [SMALL_STATE(642)] = 34115, - [SMALL_STATE(643)] = 34153, - [SMALL_STATE(644)] = 34191, - [SMALL_STATE(645)] = 34229, - [SMALL_STATE(646)] = 34265, - [SMALL_STATE(647)] = 34303, - [SMALL_STATE(648)] = 34340, - [SMALL_STATE(649)] = 34373, - [SMALL_STATE(650)] = 34406, - [SMALL_STATE(651)] = 34437, - [SMALL_STATE(652)] = 34472, - [SMALL_STATE(653)] = 34493, - [SMALL_STATE(654)] = 34514, - [SMALL_STATE(655)] = 34551, - [SMALL_STATE(656)] = 34586, - [SMALL_STATE(657)] = 34619, - [SMALL_STATE(658)] = 34654, - [SMALL_STATE(659)] = 34689, - [SMALL_STATE(660)] = 34710, - [SMALL_STATE(661)] = 34743, - [SMALL_STATE(662)] = 34764, - [SMALL_STATE(663)] = 34785, - [SMALL_STATE(664)] = 34820, - [SMALL_STATE(665)] = 34855, - [SMALL_STATE(666)] = 34888, - [SMALL_STATE(667)] = 34918, - [SMALL_STATE(668)] = 34946, - [SMALL_STATE(669)] = 34976, - [SMALL_STATE(670)] = 35004, - [SMALL_STATE(671)] = 35032, - [SMALL_STATE(672)] = 35060, - [SMALL_STATE(673)] = 35088, - [SMALL_STATE(674)] = 35118, - [SMALL_STATE(675)] = 35146, - [SMALL_STATE(676)] = 35178, - [SMALL_STATE(677)] = 35206, - [SMALL_STATE(678)] = 35234, - [SMALL_STATE(679)] = 35262, - [SMALL_STATE(680)] = 35290, - [SMALL_STATE(681)] = 35322, - [SMALL_STATE(682)] = 35350, - [SMALL_STATE(683)] = 35378, - [SMALL_STATE(684)] = 35406, - [SMALL_STATE(685)] = 35434, - [SMALL_STATE(686)] = 35462, - [SMALL_STATE(687)] = 35490, - [SMALL_STATE(688)] = 35518, - [SMALL_STATE(689)] = 35546, - [SMALL_STATE(690)] = 35574, - [SMALL_STATE(691)] = 35602, - [SMALL_STATE(692)] = 35630, - [SMALL_STATE(693)] = 35658, - [SMALL_STATE(694)] = 35686, - [SMALL_STATE(695)] = 35714, - [SMALL_STATE(696)] = 35742, - [SMALL_STATE(697)] = 35770, - [SMALL_STATE(698)] = 35798, - [SMALL_STATE(699)] = 35828, - [SMALL_STATE(700)] = 35856, - [SMALL_STATE(701)] = 35888, - [SMALL_STATE(702)] = 35918, - [SMALL_STATE(703)] = 35948, - [SMALL_STATE(704)] = 35976, - [SMALL_STATE(705)] = 36004, - [SMALL_STATE(706)] = 36036, - [SMALL_STATE(707)] = 36064, - [SMALL_STATE(708)] = 36096, - [SMALL_STATE(709)] = 36128, - [SMALL_STATE(710)] = 36156, - [SMALL_STATE(711)] = 36184, - [SMALL_STATE(712)] = 36212, - [SMALL_STATE(713)] = 36240, - [SMALL_STATE(714)] = 36268, - [SMALL_STATE(715)] = 36296, - [SMALL_STATE(716)] = 36324, - [SMALL_STATE(717)] = 36356, - [SMALL_STATE(718)] = 36384, - [SMALL_STATE(719)] = 36412, - [SMALL_STATE(720)] = 36440, - [SMALL_STATE(721)] = 36468, - [SMALL_STATE(722)] = 36500, - [SMALL_STATE(723)] = 36528, - [SMALL_STATE(724)] = 36556, - [SMALL_STATE(725)] = 36586, - [SMALL_STATE(726)] = 36614, - [SMALL_STATE(727)] = 36642, - [SMALL_STATE(728)] = 36670, - [SMALL_STATE(729)] = 36698, - [SMALL_STATE(730)] = 36726, - [SMALL_STATE(731)] = 36754, - [SMALL_STATE(732)] = 36782, - [SMALL_STATE(733)] = 36810, - [SMALL_STATE(734)] = 36838, - [SMALL_STATE(735)] = 36868, - [SMALL_STATE(736)] = 36898, - [SMALL_STATE(737)] = 36928, - [SMALL_STATE(738)] = 36956, - [SMALL_STATE(739)] = 36984, - [SMALL_STATE(740)] = 37012, - [SMALL_STATE(741)] = 37035, - [SMALL_STATE(742)] = 37060, - [SMALL_STATE(743)] = 37085, - [SMALL_STATE(744)] = 37110, - [SMALL_STATE(745)] = 37135, - [SMALL_STATE(746)] = 37160, - [SMALL_STATE(747)] = 37185, - [SMALL_STATE(748)] = 37210, - [SMALL_STATE(749)] = 37235, - [SMALL_STATE(750)] = 37260, - [SMALL_STATE(751)] = 37283, - [SMALL_STATE(752)] = 37308, - [SMALL_STATE(753)] = 37333, - [SMALL_STATE(754)] = 37358, - [SMALL_STATE(755)] = 37383, - [SMALL_STATE(756)] = 37408, - [SMALL_STATE(757)] = 37433, - [SMALL_STATE(758)] = 37454, - [SMALL_STATE(759)] = 37477, - [SMALL_STATE(760)] = 37502, - [SMALL_STATE(761)] = 37531, - [SMALL_STATE(762)] = 37556, - [SMALL_STATE(763)] = 37581, - [SMALL_STATE(764)] = 37604, - [SMALL_STATE(765)] = 37629, - [SMALL_STATE(766)] = 37654, - [SMALL_STATE(767)] = 37679, - [SMALL_STATE(768)] = 37704, - [SMALL_STATE(769)] = 37729, - [SMALL_STATE(770)] = 37754, - [SMALL_STATE(771)] = 37781, - [SMALL_STATE(772)] = 37808, - [SMALL_STATE(773)] = 37833, - [SMALL_STATE(774)] = 37860, - [SMALL_STATE(775)] = 37885, - [SMALL_STATE(776)] = 37910, - [SMALL_STATE(777)] = 37935, - [SMALL_STATE(778)] = 37960, - [SMALL_STATE(779)] = 37985, - [SMALL_STATE(780)] = 38010, - [SMALL_STATE(781)] = 38035, - [SMALL_STATE(782)] = 38060, - [SMALL_STATE(783)] = 38085, - [SMALL_STATE(784)] = 38110, - [SMALL_STATE(785)] = 38135, - [SMALL_STATE(786)] = 38160, - [SMALL_STATE(787)] = 38185, - [SMALL_STATE(788)] = 38210, - [SMALL_STATE(789)] = 38235, - [SMALL_STATE(790)] = 38260, - [SMALL_STATE(791)] = 38285, - [SMALL_STATE(792)] = 38310, - [SMALL_STATE(793)] = 38335, - [SMALL_STATE(794)] = 38360, - [SMALL_STATE(795)] = 38385, - [SMALL_STATE(796)] = 38410, - [SMALL_STATE(797)] = 38435, - [SMALL_STATE(798)] = 38460, - [SMALL_STATE(799)] = 38487, - [SMALL_STATE(800)] = 38514, - [SMALL_STATE(801)] = 38539, - [SMALL_STATE(802)] = 38574, - [SMALL_STATE(803)] = 38599, - [SMALL_STATE(804)] = 38619, - [SMALL_STATE(805)] = 38637, - [SMALL_STATE(806)] = 38657, - [SMALL_STATE(807)] = 38679, - [SMALL_STATE(808)] = 38701, - [SMALL_STATE(809)] = 38723, - [SMALL_STATE(810)] = 38752, - [SMALL_STATE(811)] = 38771, - [SMALL_STATE(812)] = 38790, - [SMALL_STATE(813)] = 38819, - [SMALL_STATE(814)] = 38838, - [SMALL_STATE(815)] = 38867, - [SMALL_STATE(816)] = 38896, - [SMALL_STATE(817)] = 38915, - [SMALL_STATE(818)] = 38934, - [SMALL_STATE(819)] = 38953, - [SMALL_STATE(820)] = 38982, - [SMALL_STATE(821)] = 39014, - [SMALL_STATE(822)] = 39030, - [SMALL_STATE(823)] = 39062, - [SMALL_STATE(824)] = 39094, - [SMALL_STATE(825)] = 39126, - [SMALL_STATE(826)] = 39144, - [SMALL_STATE(827)] = 39160, - [SMALL_STATE(828)] = 39176, - [SMALL_STATE(829)] = 39192, - [SMALL_STATE(830)] = 39208, - [SMALL_STATE(831)] = 39235, - [SMALL_STATE(832)] = 39266, - [SMALL_STATE(833)] = 39293, - [SMALL_STATE(834)] = 39320, - [SMALL_STATE(835)] = 39347, - [SMALL_STATE(836)] = 39378, - [SMALL_STATE(837)] = 39405, - [SMALL_STATE(838)] = 39434, - [SMALL_STATE(839)] = 39465, - [SMALL_STATE(840)] = 39490, - [SMALL_STATE(841)] = 39517, - [SMALL_STATE(842)] = 39544, - [SMALL_STATE(843)] = 39571, - [SMALL_STATE(844)] = 39598, - [SMALL_STATE(845)] = 39627, - [SMALL_STATE(846)] = 39643, - [SMALL_STATE(847)] = 39671, - [SMALL_STATE(848)] = 39687, - [SMALL_STATE(849)] = 39703, - [SMALL_STATE(850)] = 39719, - [SMALL_STATE(851)] = 39735, - [SMALL_STATE(852)] = 39751, - [SMALL_STATE(853)] = 39767, - [SMALL_STATE(854)] = 39783, - [SMALL_STATE(855)] = 39799, - [SMALL_STATE(856)] = 39815, - [SMALL_STATE(857)] = 39831, - [SMALL_STATE(858)] = 39847, - [SMALL_STATE(859)] = 39871, - [SMALL_STATE(860)] = 39897, - [SMALL_STATE(861)] = 39913, - [SMALL_STATE(862)] = 39929, - [SMALL_STATE(863)] = 39945, - [SMALL_STATE(864)] = 39961, - [SMALL_STATE(865)] = 39977, - [SMALL_STATE(866)] = 40003, - [SMALL_STATE(867)] = 40019, - [SMALL_STATE(868)] = 40035, - [SMALL_STATE(869)] = 40051, - [SMALL_STATE(870)] = 40067, - [SMALL_STATE(871)] = 40083, - [SMALL_STATE(872)] = 40099, - [SMALL_STATE(873)] = 40115, - [SMALL_STATE(874)] = 40131, - [SMALL_STATE(875)] = 40157, - [SMALL_STATE(876)] = 40173, - [SMALL_STATE(877)] = 40189, - [SMALL_STATE(878)] = 40205, - [SMALL_STATE(879)] = 40221, - [SMALL_STATE(880)] = 40237, - [SMALL_STATE(881)] = 40253, - [SMALL_STATE(882)] = 40275, - [SMALL_STATE(883)] = 40291, - [SMALL_STATE(884)] = 40307, - [SMALL_STATE(885)] = 40323, - [SMALL_STATE(886)] = 40349, - [SMALL_STATE(887)] = 40375, - [SMALL_STATE(888)] = 40391, - [SMALL_STATE(889)] = 40413, - [SMALL_STATE(890)] = 40439, - [SMALL_STATE(891)] = 40455, - [SMALL_STATE(892)] = 40471, - [SMALL_STATE(893)] = 40487, - [SMALL_STATE(894)] = 40502, - [SMALL_STATE(895)] = 40527, - [SMALL_STATE(896)] = 40540, - [SMALL_STATE(897)] = 40565, - [SMALL_STATE(898)] = 40590, - [SMALL_STATE(899)] = 40613, - [SMALL_STATE(900)] = 40638, - [SMALL_STATE(901)] = 40663, - [SMALL_STATE(902)] = 40688, - [SMALL_STATE(903)] = 40713, - [SMALL_STATE(904)] = 40738, - [SMALL_STATE(905)] = 40763, - [SMALL_STATE(906)] = 40788, - [SMALL_STATE(907)] = 40801, - [SMALL_STATE(908)] = 40822, - [SMALL_STATE(909)] = 40835, - [SMALL_STATE(910)] = 40860, - [SMALL_STATE(911)] = 40881, - [SMALL_STATE(912)] = 40902, - [SMALL_STATE(913)] = 40927, - [SMALL_STATE(914)] = 40952, - [SMALL_STATE(915)] = 40977, - [SMALL_STATE(916)] = 41002, - [SMALL_STATE(917)] = 41027, - [SMALL_STATE(918)] = 41052, - [SMALL_STATE(919)] = 41065, - [SMALL_STATE(920)] = 41090, - [SMALL_STATE(921)] = 41111, - [SMALL_STATE(922)] = 41136, - [SMALL_STATE(923)] = 41149, - [SMALL_STATE(924)] = 41174, - [SMALL_STATE(925)] = 41199, - [SMALL_STATE(926)] = 41221, - [SMALL_STATE(927)] = 41237, - [SMALL_STATE(928)] = 41257, - [SMALL_STATE(929)] = 41277, - [SMALL_STATE(930)] = 41299, - [SMALL_STATE(931)] = 41315, - [SMALL_STATE(932)] = 41327, - [SMALL_STATE(933)] = 41349, - [SMALL_STATE(934)] = 41371, - [SMALL_STATE(935)] = 41393, - [SMALL_STATE(936)] = 41407, - [SMALL_STATE(937)] = 41429, - [SMALL_STATE(938)] = 41449, - [SMALL_STATE(939)] = 41467, - [SMALL_STATE(940)] = 41485, - [SMALL_STATE(941)] = 41501, - [SMALL_STATE(942)] = 41515, - [SMALL_STATE(943)] = 41529, - [SMALL_STATE(944)] = 41551, - [SMALL_STATE(945)] = 41571, - [SMALL_STATE(946)] = 41593, - [SMALL_STATE(947)] = 41607, - [SMALL_STATE(948)] = 41627, - [SMALL_STATE(949)] = 41645, - [SMALL_STATE(950)] = 41659, - [SMALL_STATE(951)] = 41681, - [SMALL_STATE(952)] = 41701, - [SMALL_STATE(953)] = 41715, - [SMALL_STATE(954)] = 41737, - [SMALL_STATE(955)] = 41755, - [SMALL_STATE(956)] = 41777, - [SMALL_STATE(957)] = 41789, - [SMALL_STATE(958)] = 41805, - [SMALL_STATE(959)] = 41825, - [SMALL_STATE(960)] = 41847, - [SMALL_STATE(961)] = 41865, - [SMALL_STATE(962)] = 41883, - [SMALL_STATE(963)] = 41897, - [SMALL_STATE(964)] = 41908, - [SMALL_STATE(965)] = 41927, - [SMALL_STATE(966)] = 41944, - [SMALL_STATE(967)] = 41963, - [SMALL_STATE(968)] = 41982, - [SMALL_STATE(969)] = 42001, - [SMALL_STATE(970)] = 42018, - [SMALL_STATE(971)] = 42033, - [SMALL_STATE(972)] = 42050, - [SMALL_STATE(973)] = 42067, - [SMALL_STATE(974)] = 42082, - [SMALL_STATE(975)] = 42101, - [SMALL_STATE(976)] = 42120, - [SMALL_STATE(977)] = 42139, - [SMALL_STATE(978)] = 42152, - [SMALL_STATE(979)] = 42171, - [SMALL_STATE(980)] = 42190, - [SMALL_STATE(981)] = 42203, - [SMALL_STATE(982)] = 42222, - [SMALL_STATE(983)] = 42241, - [SMALL_STATE(984)] = 42260, - [SMALL_STATE(985)] = 42279, - [SMALL_STATE(986)] = 42294, - [SMALL_STATE(987)] = 42313, - [SMALL_STATE(988)] = 42332, - [SMALL_STATE(989)] = 42349, - [SMALL_STATE(990)] = 42368, - [SMALL_STATE(991)] = 42387, - [SMALL_STATE(992)] = 42406, - [SMALL_STATE(993)] = 42425, - [SMALL_STATE(994)] = 42444, - [SMALL_STATE(995)] = 42463, - [SMALL_STATE(996)] = 42482, - [SMALL_STATE(997)] = 42501, - [SMALL_STATE(998)] = 42512, - [SMALL_STATE(999)] = 42527, - [SMALL_STATE(1000)] = 42546, - [SMALL_STATE(1001)] = 42561, - [SMALL_STATE(1002)] = 42580, - [SMALL_STATE(1003)] = 42595, - [SMALL_STATE(1004)] = 42614, - [SMALL_STATE(1005)] = 42633, - [SMALL_STATE(1006)] = 42652, - [SMALL_STATE(1007)] = 42671, - [SMALL_STATE(1008)] = 42690, - [SMALL_STATE(1009)] = 42703, - [SMALL_STATE(1010)] = 42722, - [SMALL_STATE(1011)] = 42741, - [SMALL_STATE(1012)] = 42756, - [SMALL_STATE(1013)] = 42775, - [SMALL_STATE(1014)] = 42792, - [SMALL_STATE(1015)] = 42811, - [SMALL_STATE(1016)] = 42828, - [SMALL_STATE(1017)] = 42847, - [SMALL_STATE(1018)] = 42866, - [SMALL_STATE(1019)] = 42885, - [SMALL_STATE(1020)] = 42904, - [SMALL_STATE(1021)] = 42923, - [SMALL_STATE(1022)] = 42942, - [SMALL_STATE(1023)] = 42961, - [SMALL_STATE(1024)] = 42980, - [SMALL_STATE(1025)] = 42999, - [SMALL_STATE(1026)] = 43010, - [SMALL_STATE(1027)] = 43025, - [SMALL_STATE(1028)] = 43044, - [SMALL_STATE(1029)] = 43055, - [SMALL_STATE(1030)] = 43074, - [SMALL_STATE(1031)] = 43093, - [SMALL_STATE(1032)] = 43112, - [SMALL_STATE(1033)] = 43131, - [SMALL_STATE(1034)] = 43148, - [SMALL_STATE(1035)] = 43167, - [SMALL_STATE(1036)] = 43186, - [SMALL_STATE(1037)] = 43197, - [SMALL_STATE(1038)] = 43212, - [SMALL_STATE(1039)] = 43231, - [SMALL_STATE(1040)] = 43250, - [SMALL_STATE(1041)] = 43261, - [SMALL_STATE(1042)] = 43280, - [SMALL_STATE(1043)] = 43299, - [SMALL_STATE(1044)] = 43316, - [SMALL_STATE(1045)] = 43335, - [SMALL_STATE(1046)] = 43352, - [SMALL_STATE(1047)] = 43367, - [SMALL_STATE(1048)] = 43386, - [SMALL_STATE(1049)] = 43405, - [SMALL_STATE(1050)] = 43424, - [SMALL_STATE(1051)] = 43439, - [SMALL_STATE(1052)] = 43449, - [SMALL_STATE(1053)] = 43463, - [SMALL_STATE(1054)] = 43477, - [SMALL_STATE(1055)] = 43491, - [SMALL_STATE(1056)] = 43507, - [SMALL_STATE(1057)] = 43521, - [SMALL_STATE(1058)] = 43535, - [SMALL_STATE(1059)] = 43547, - [SMALL_STATE(1060)] = 43561, - [SMALL_STATE(1061)] = 43577, - [SMALL_STATE(1062)] = 43591, - [SMALL_STATE(1063)] = 43605, - [SMALL_STATE(1064)] = 43621, - [SMALL_STATE(1065)] = 43637, - [SMALL_STATE(1066)] = 43653, - [SMALL_STATE(1067)] = 43663, - [SMALL_STATE(1068)] = 43679, - [SMALL_STATE(1069)] = 43691, - [SMALL_STATE(1070)] = 43701, - [SMALL_STATE(1071)] = 43711, - [SMALL_STATE(1072)] = 43723, - [SMALL_STATE(1073)] = 43735, - [SMALL_STATE(1074)] = 43751, - [SMALL_STATE(1075)] = 43767, - [SMALL_STATE(1076)] = 43777, - [SMALL_STATE(1077)] = 43789, - [SMALL_STATE(1078)] = 43799, - [SMALL_STATE(1079)] = 43811, - [SMALL_STATE(1080)] = 43827, - [SMALL_STATE(1081)] = 43839, - [SMALL_STATE(1082)] = 43855, - [SMALL_STATE(1083)] = 43871, - [SMALL_STATE(1084)] = 43887, - [SMALL_STATE(1085)] = 43901, - [SMALL_STATE(1086)] = 43917, - [SMALL_STATE(1087)] = 43933, - [SMALL_STATE(1088)] = 43947, - [SMALL_STATE(1089)] = 43963, - [SMALL_STATE(1090)] = 43979, - [SMALL_STATE(1091)] = 43993, - [SMALL_STATE(1092)] = 44009, - [SMALL_STATE(1093)] = 44019, - [SMALL_STATE(1094)] = 44031, - [SMALL_STATE(1095)] = 44041, - [SMALL_STATE(1096)] = 44057, - [SMALL_STATE(1097)] = 44073, - [SMALL_STATE(1098)] = 44089, - [SMALL_STATE(1099)] = 44103, - [SMALL_STATE(1100)] = 44119, - [SMALL_STATE(1101)] = 44135, - [SMALL_STATE(1102)] = 44151, - [SMALL_STATE(1103)] = 44165, - [SMALL_STATE(1104)] = 44179, - [SMALL_STATE(1105)] = 44193, - [SMALL_STATE(1106)] = 44209, - [SMALL_STATE(1107)] = 44225, - [SMALL_STATE(1108)] = 44239, - [SMALL_STATE(1109)] = 44253, - [SMALL_STATE(1110)] = 44269, - [SMALL_STATE(1111)] = 44285, - [SMALL_STATE(1112)] = 44301, - [SMALL_STATE(1113)] = 44317, - [SMALL_STATE(1114)] = 44333, - [SMALL_STATE(1115)] = 44347, - [SMALL_STATE(1116)] = 44361, - [SMALL_STATE(1117)] = 44377, - [SMALL_STATE(1118)] = 44391, - [SMALL_STATE(1119)] = 44407, - [SMALL_STATE(1120)] = 44421, - [SMALL_STATE(1121)] = 44435, - [SMALL_STATE(1122)] = 44449, - [SMALL_STATE(1123)] = 44465, - [SMALL_STATE(1124)] = 44479, - [SMALL_STATE(1125)] = 44495, - [SMALL_STATE(1126)] = 44505, - [SMALL_STATE(1127)] = 44521, - [SMALL_STATE(1128)] = 44537, - [SMALL_STATE(1129)] = 44551, - [SMALL_STATE(1130)] = 44567, - [SMALL_STATE(1131)] = 44577, - [SMALL_STATE(1132)] = 44593, - [SMALL_STATE(1133)] = 44609, - [SMALL_STATE(1134)] = 44621, - [SMALL_STATE(1135)] = 44637, - [SMALL_STATE(1136)] = 44647, - [SMALL_STATE(1137)] = 44663, - [SMALL_STATE(1138)] = 44679, - [SMALL_STATE(1139)] = 44691, - [SMALL_STATE(1140)] = 44707, - [SMALL_STATE(1141)] = 44721, - [SMALL_STATE(1142)] = 44735, - [SMALL_STATE(1143)] = 44746, - [SMALL_STATE(1144)] = 44759, - [SMALL_STATE(1145)] = 44772, - [SMALL_STATE(1146)] = 44785, - [SMALL_STATE(1147)] = 44798, - [SMALL_STATE(1148)] = 44809, - [SMALL_STATE(1149)] = 44822, - [SMALL_STATE(1150)] = 44835, - [SMALL_STATE(1151)] = 44846, - [SMALL_STATE(1152)] = 44859, - [SMALL_STATE(1153)] = 44868, - [SMALL_STATE(1154)] = 44881, - [SMALL_STATE(1155)] = 44890, - [SMALL_STATE(1156)] = 44903, - [SMALL_STATE(1157)] = 44912, - [SMALL_STATE(1158)] = 44923, - [SMALL_STATE(1159)] = 44936, - [SMALL_STATE(1160)] = 44945, - [SMALL_STATE(1161)] = 44954, - [SMALL_STATE(1162)] = 44967, - [SMALL_STATE(1163)] = 44980, - [SMALL_STATE(1164)] = 44993, - [SMALL_STATE(1165)] = 45006, - [SMALL_STATE(1166)] = 45019, - [SMALL_STATE(1167)] = 45028, - [SMALL_STATE(1168)] = 45041, - [SMALL_STATE(1169)] = 45050, - [SMALL_STATE(1170)] = 45063, - [SMALL_STATE(1171)] = 45076, - [SMALL_STATE(1172)] = 45089, - [SMALL_STATE(1173)] = 45102, - [SMALL_STATE(1174)] = 45115, - [SMALL_STATE(1175)] = 45128, - [SMALL_STATE(1176)] = 45141, - [SMALL_STATE(1177)] = 45154, - [SMALL_STATE(1178)] = 45163, - [SMALL_STATE(1179)] = 45172, - [SMALL_STATE(1180)] = 45185, - [SMALL_STATE(1181)] = 45196, - [SMALL_STATE(1182)] = 45209, - [SMALL_STATE(1183)] = 45222, - [SMALL_STATE(1184)] = 45235, - [SMALL_STATE(1185)] = 45248, - [SMALL_STATE(1186)] = 45261, - [SMALL_STATE(1187)] = 45270, - [SMALL_STATE(1188)] = 45283, - [SMALL_STATE(1189)] = 45296, - [SMALL_STATE(1190)] = 45307, - [SMALL_STATE(1191)] = 45316, - [SMALL_STATE(1192)] = 45329, - [SMALL_STATE(1193)] = 45342, - [SMALL_STATE(1194)] = 45355, - [SMALL_STATE(1195)] = 45364, - [SMALL_STATE(1196)] = 45373, - [SMALL_STATE(1197)] = 45386, - [SMALL_STATE(1198)] = 45395, - [SMALL_STATE(1199)] = 45408, - [SMALL_STATE(1200)] = 45421, - [SMALL_STATE(1201)] = 45434, - [SMALL_STATE(1202)] = 45447, - [SMALL_STATE(1203)] = 45456, - [SMALL_STATE(1204)] = 45469, - [SMALL_STATE(1205)] = 45482, - [SMALL_STATE(1206)] = 45495, - [SMALL_STATE(1207)] = 45508, - [SMALL_STATE(1208)] = 45521, - [SMALL_STATE(1209)] = 45534, - [SMALL_STATE(1210)] = 45545, - [SMALL_STATE(1211)] = 45558, - [SMALL_STATE(1212)] = 45571, - [SMALL_STATE(1213)] = 45584, - [SMALL_STATE(1214)] = 45597, - [SMALL_STATE(1215)] = 45610, - [SMALL_STATE(1216)] = 45623, - [SMALL_STATE(1217)] = 45632, - [SMALL_STATE(1218)] = 45645, - [SMALL_STATE(1219)] = 45658, - [SMALL_STATE(1220)] = 45671, - [SMALL_STATE(1221)] = 45684, - [SMALL_STATE(1222)] = 45697, - [SMALL_STATE(1223)] = 45710, - [SMALL_STATE(1224)] = 45723, - [SMALL_STATE(1225)] = 45736, - [SMALL_STATE(1226)] = 45749, - [SMALL_STATE(1227)] = 45762, - [SMALL_STATE(1228)] = 45775, - [SMALL_STATE(1229)] = 45788, - [SMALL_STATE(1230)] = 45797, - [SMALL_STATE(1231)] = 45810, - [SMALL_STATE(1232)] = 45819, - [SMALL_STATE(1233)] = 45828, - [SMALL_STATE(1234)] = 45839, - [SMALL_STATE(1235)] = 45848, - [SMALL_STATE(1236)] = 45861, - [SMALL_STATE(1237)] = 45874, - [SMALL_STATE(1238)] = 45883, - [SMALL_STATE(1239)] = 45892, - [SMALL_STATE(1240)] = 45905, - [SMALL_STATE(1241)] = 45914, - [SMALL_STATE(1242)] = 45927, - [SMALL_STATE(1243)] = 45940, - [SMALL_STATE(1244)] = 45953, - [SMALL_STATE(1245)] = 45962, - [SMALL_STATE(1246)] = 45971, - [SMALL_STATE(1247)] = 45984, - [SMALL_STATE(1248)] = 45993, - [SMALL_STATE(1249)] = 46002, - [SMALL_STATE(1250)] = 46011, - [SMALL_STATE(1251)] = 46020, - [SMALL_STATE(1252)] = 46029, - [SMALL_STATE(1253)] = 46038, - [SMALL_STATE(1254)] = 46047, - [SMALL_STATE(1255)] = 46060, - [SMALL_STATE(1256)] = 46069, - [SMALL_STATE(1257)] = 46082, - [SMALL_STATE(1258)] = 46095, - [SMALL_STATE(1259)] = 46104, - [SMALL_STATE(1260)] = 46117, - [SMALL_STATE(1261)] = 46130, - [SMALL_STATE(1262)] = 46139, - [SMALL_STATE(1263)] = 46152, - [SMALL_STATE(1264)] = 46165, - [SMALL_STATE(1265)] = 46178, - [SMALL_STATE(1266)] = 46187, - [SMALL_STATE(1267)] = 46200, - [SMALL_STATE(1268)] = 46209, - [SMALL_STATE(1269)] = 46218, - [SMALL_STATE(1270)] = 46227, - [SMALL_STATE(1271)] = 46236, - [SMALL_STATE(1272)] = 46245, - [SMALL_STATE(1273)] = 46254, - [SMALL_STATE(1274)] = 46263, - [SMALL_STATE(1275)] = 46276, - [SMALL_STATE(1276)] = 46287, - [SMALL_STATE(1277)] = 46300, - [SMALL_STATE(1278)] = 46313, - [SMALL_STATE(1279)] = 46326, - [SMALL_STATE(1280)] = 46339, - [SMALL_STATE(1281)] = 46352, - [SMALL_STATE(1282)] = 46365, - [SMALL_STATE(1283)] = 46378, - [SMALL_STATE(1284)] = 46387, - [SMALL_STATE(1285)] = 46400, - [SMALL_STATE(1286)] = 46409, - [SMALL_STATE(1287)] = 46422, - [SMALL_STATE(1288)] = 46431, - [SMALL_STATE(1289)] = 46444, - [SMALL_STATE(1290)] = 46457, - [SMALL_STATE(1291)] = 46470, - [SMALL_STATE(1292)] = 46483, - [SMALL_STATE(1293)] = 46496, - [SMALL_STATE(1294)] = 46505, - [SMALL_STATE(1295)] = 46518, - [SMALL_STATE(1296)] = 46531, - [SMALL_STATE(1297)] = 46544, - [SMALL_STATE(1298)] = 46557, - [SMALL_STATE(1299)] = 46570, - [SMALL_STATE(1300)] = 46583, - [SMALL_STATE(1301)] = 46596, - [SMALL_STATE(1302)] = 46609, - [SMALL_STATE(1303)] = 46622, - [SMALL_STATE(1304)] = 46635, - [SMALL_STATE(1305)] = 46648, - [SMALL_STATE(1306)] = 46661, - [SMALL_STATE(1307)] = 46674, - [SMALL_STATE(1308)] = 46683, - [SMALL_STATE(1309)] = 46692, - [SMALL_STATE(1310)] = 46705, - [SMALL_STATE(1311)] = 46718, - [SMALL_STATE(1312)] = 46727, - [SMALL_STATE(1313)] = 46736, - [SMALL_STATE(1314)] = 46749, - [SMALL_STATE(1315)] = 46758, - [SMALL_STATE(1316)] = 46771, - [SMALL_STATE(1317)] = 46780, - [SMALL_STATE(1318)] = 46793, - [SMALL_STATE(1319)] = 46804, - [SMALL_STATE(1320)] = 46817, - [SMALL_STATE(1321)] = 46830, - [SMALL_STATE(1322)] = 46839, - [SMALL_STATE(1323)] = 46852, - [SMALL_STATE(1324)] = 46865, - [SMALL_STATE(1325)] = 46878, - [SMALL_STATE(1326)] = 46887, - [SMALL_STATE(1327)] = 46900, - [SMALL_STATE(1328)] = 46911, - [SMALL_STATE(1329)] = 46924, - [SMALL_STATE(1330)] = 46937, - [SMALL_STATE(1331)] = 46950, - [SMALL_STATE(1332)] = 46963, - [SMALL_STATE(1333)] = 46976, - [SMALL_STATE(1334)] = 46985, - [SMALL_STATE(1335)] = 46998, - [SMALL_STATE(1336)] = 47011, - [SMALL_STATE(1337)] = 47024, - [SMALL_STATE(1338)] = 47037, - [SMALL_STATE(1339)] = 47050, - [SMALL_STATE(1340)] = 47060, - [SMALL_STATE(1341)] = 47070, - [SMALL_STATE(1342)] = 47080, - [SMALL_STATE(1343)] = 47090, - [SMALL_STATE(1344)] = 47100, - [SMALL_STATE(1345)] = 47108, - [SMALL_STATE(1346)] = 47118, - [SMALL_STATE(1347)] = 47128, - [SMALL_STATE(1348)] = 47136, - [SMALL_STATE(1349)] = 47146, - [SMALL_STATE(1350)] = 47156, - [SMALL_STATE(1351)] = 47164, - [SMALL_STATE(1352)] = 47174, - [SMALL_STATE(1353)] = 47182, - [SMALL_STATE(1354)] = 47190, - [SMALL_STATE(1355)] = 47200, - [SMALL_STATE(1356)] = 47210, - [SMALL_STATE(1357)] = 47220, - [SMALL_STATE(1358)] = 47230, - [SMALL_STATE(1359)] = 47240, - [SMALL_STATE(1360)] = 47250, - [SMALL_STATE(1361)] = 47258, - [SMALL_STATE(1362)] = 47268, - [SMALL_STATE(1363)] = 47278, - [SMALL_STATE(1364)] = 47286, - [SMALL_STATE(1365)] = 47294, - [SMALL_STATE(1366)] = 47304, - [SMALL_STATE(1367)] = 47314, - [SMALL_STATE(1368)] = 47322, - [SMALL_STATE(1369)] = 47330, - [SMALL_STATE(1370)] = 47338, - [SMALL_STATE(1371)] = 47348, - [SMALL_STATE(1372)] = 47358, - [SMALL_STATE(1373)] = 47368, - [SMALL_STATE(1374)] = 47376, - [SMALL_STATE(1375)] = 47384, - [SMALL_STATE(1376)] = 47392, - [SMALL_STATE(1377)] = 47400, - [SMALL_STATE(1378)] = 47408, - [SMALL_STATE(1379)] = 47416, - [SMALL_STATE(1380)] = 47426, - [SMALL_STATE(1381)] = 47434, - [SMALL_STATE(1382)] = 47442, - [SMALL_STATE(1383)] = 47450, - [SMALL_STATE(1384)] = 47460, - [SMALL_STATE(1385)] = 47470, - [SMALL_STATE(1386)] = 47478, - [SMALL_STATE(1387)] = 47486, - [SMALL_STATE(1388)] = 47496, - [SMALL_STATE(1389)] = 47504, - [SMALL_STATE(1390)] = 47514, - [SMALL_STATE(1391)] = 47522, - [SMALL_STATE(1392)] = 47532, - [SMALL_STATE(1393)] = 47542, - [SMALL_STATE(1394)] = 47550, - [SMALL_STATE(1395)] = 47558, - [SMALL_STATE(1396)] = 47568, - [SMALL_STATE(1397)] = 47576, - [SMALL_STATE(1398)] = 47584, - [SMALL_STATE(1399)] = 47594, - [SMALL_STATE(1400)] = 47604, - [SMALL_STATE(1401)] = 47612, - [SMALL_STATE(1402)] = 47620, - [SMALL_STATE(1403)] = 47628, - [SMALL_STATE(1404)] = 47638, - [SMALL_STATE(1405)] = 47646, - [SMALL_STATE(1406)] = 47656, - [SMALL_STATE(1407)] = 47666, - [SMALL_STATE(1408)] = 47676, - [SMALL_STATE(1409)] = 47684, - [SMALL_STATE(1410)] = 47692, - [SMALL_STATE(1411)] = 47702, - [SMALL_STATE(1412)] = 47712, - [SMALL_STATE(1413)] = 47720, - [SMALL_STATE(1414)] = 47728, - [SMALL_STATE(1415)] = 47736, - [SMALL_STATE(1416)] = 47746, - [SMALL_STATE(1417)] = 47754, - [SMALL_STATE(1418)] = 47764, - [SMALL_STATE(1419)] = 47774, - [SMALL_STATE(1420)] = 47782, - [SMALL_STATE(1421)] = 47790, - [SMALL_STATE(1422)] = 47800, - [SMALL_STATE(1423)] = 47808, - [SMALL_STATE(1424)] = 47818, - [SMALL_STATE(1425)] = 47828, - [SMALL_STATE(1426)] = 47838, - [SMALL_STATE(1427)] = 47846, - [SMALL_STATE(1428)] = 47854, - [SMALL_STATE(1429)] = 47864, - [SMALL_STATE(1430)] = 47874, - [SMALL_STATE(1431)] = 47884, - [SMALL_STATE(1432)] = 47892, - [SMALL_STATE(1433)] = 47902, - [SMALL_STATE(1434)] = 47910, - [SMALL_STATE(1435)] = 47918, - [SMALL_STATE(1436)] = 47926, - [SMALL_STATE(1437)] = 47936, - [SMALL_STATE(1438)] = 47946, - [SMALL_STATE(1439)] = 47954, - [SMALL_STATE(1440)] = 47964, - [SMALL_STATE(1441)] = 47972, - [SMALL_STATE(1442)] = 47980, - [SMALL_STATE(1443)] = 47988, - [SMALL_STATE(1444)] = 47996, - [SMALL_STATE(1445)] = 48006, - [SMALL_STATE(1446)] = 48016, - [SMALL_STATE(1447)] = 48026, - [SMALL_STATE(1448)] = 48036, - [SMALL_STATE(1449)] = 48046, - [SMALL_STATE(1450)] = 48054, - [SMALL_STATE(1451)] = 48064, - [SMALL_STATE(1452)] = 48074, - [SMALL_STATE(1453)] = 48084, - [SMALL_STATE(1454)] = 48092, - [SMALL_STATE(1455)] = 48102, - [SMALL_STATE(1456)] = 48110, - [SMALL_STATE(1457)] = 48118, - [SMALL_STATE(1458)] = 48128, - [SMALL_STATE(1459)] = 48138, - [SMALL_STATE(1460)] = 48148, - [SMALL_STATE(1461)] = 48158, - [SMALL_STATE(1462)] = 48168, - [SMALL_STATE(1463)] = 48176, - [SMALL_STATE(1464)] = 48186, - [SMALL_STATE(1465)] = 48194, - [SMALL_STATE(1466)] = 48202, - [SMALL_STATE(1467)] = 48210, - [SMALL_STATE(1468)] = 48218, - [SMALL_STATE(1469)] = 48228, - [SMALL_STATE(1470)] = 48236, - [SMALL_STATE(1471)] = 48246, - [SMALL_STATE(1472)] = 48254, - [SMALL_STATE(1473)] = 48262, - [SMALL_STATE(1474)] = 48270, - [SMALL_STATE(1475)] = 48278, - [SMALL_STATE(1476)] = 48286, - [SMALL_STATE(1477)] = 48294, - [SMALL_STATE(1478)] = 48304, - [SMALL_STATE(1479)] = 48312, - [SMALL_STATE(1480)] = 48320, - [SMALL_STATE(1481)] = 48328, - [SMALL_STATE(1482)] = 48338, - [SMALL_STATE(1483)] = 48346, - [SMALL_STATE(1484)] = 48354, - [SMALL_STATE(1485)] = 48362, - [SMALL_STATE(1486)] = 48372, - [SMALL_STATE(1487)] = 48380, - [SMALL_STATE(1488)] = 48390, - [SMALL_STATE(1489)] = 48400, - [SMALL_STATE(1490)] = 48407, - [SMALL_STATE(1491)] = 48414, - [SMALL_STATE(1492)] = 48421, - [SMALL_STATE(1493)] = 48428, - [SMALL_STATE(1494)] = 48435, - [SMALL_STATE(1495)] = 48442, - [SMALL_STATE(1496)] = 48449, - [SMALL_STATE(1497)] = 48456, - [SMALL_STATE(1498)] = 48463, - [SMALL_STATE(1499)] = 48470, - [SMALL_STATE(1500)] = 48477, - [SMALL_STATE(1501)] = 48484, - [SMALL_STATE(1502)] = 48491, - [SMALL_STATE(1503)] = 48498, - [SMALL_STATE(1504)] = 48505, - [SMALL_STATE(1505)] = 48512, - [SMALL_STATE(1506)] = 48519, - [SMALL_STATE(1507)] = 48526, - [SMALL_STATE(1508)] = 48533, - [SMALL_STATE(1509)] = 48540, - [SMALL_STATE(1510)] = 48547, - [SMALL_STATE(1511)] = 48554, - [SMALL_STATE(1512)] = 48561, - [SMALL_STATE(1513)] = 48568, - [SMALL_STATE(1514)] = 48575, - [SMALL_STATE(1515)] = 48582, - [SMALL_STATE(1516)] = 48589, - [SMALL_STATE(1517)] = 48596, - [SMALL_STATE(1518)] = 48603, - [SMALL_STATE(1519)] = 48610, - [SMALL_STATE(1520)] = 48617, - [SMALL_STATE(1521)] = 48624, - [SMALL_STATE(1522)] = 48631, - [SMALL_STATE(1523)] = 48638, - [SMALL_STATE(1524)] = 48645, - [SMALL_STATE(1525)] = 48652, - [SMALL_STATE(1526)] = 48659, - [SMALL_STATE(1527)] = 48666, - [SMALL_STATE(1528)] = 48673, - [SMALL_STATE(1529)] = 48680, - [SMALL_STATE(1530)] = 48687, - [SMALL_STATE(1531)] = 48694, - [SMALL_STATE(1532)] = 48701, - [SMALL_STATE(1533)] = 48708, - [SMALL_STATE(1534)] = 48715, - [SMALL_STATE(1535)] = 48722, - [SMALL_STATE(1536)] = 48729, - [SMALL_STATE(1537)] = 48736, - [SMALL_STATE(1538)] = 48743, - [SMALL_STATE(1539)] = 48750, - [SMALL_STATE(1540)] = 48757, - [SMALL_STATE(1541)] = 48764, - [SMALL_STATE(1542)] = 48771, - [SMALL_STATE(1543)] = 48778, - [SMALL_STATE(1544)] = 48785, - [SMALL_STATE(1545)] = 48792, - [SMALL_STATE(1546)] = 48799, - [SMALL_STATE(1547)] = 48806, - [SMALL_STATE(1548)] = 48813, - [SMALL_STATE(1549)] = 48820, - [SMALL_STATE(1550)] = 48827, - [SMALL_STATE(1551)] = 48834, - [SMALL_STATE(1552)] = 48841, - [SMALL_STATE(1553)] = 48848, - [SMALL_STATE(1554)] = 48855, - [SMALL_STATE(1555)] = 48862, - [SMALL_STATE(1556)] = 48869, - [SMALL_STATE(1557)] = 48876, - [SMALL_STATE(1558)] = 48883, - [SMALL_STATE(1559)] = 48890, - [SMALL_STATE(1560)] = 48897, - [SMALL_STATE(1561)] = 48904, - [SMALL_STATE(1562)] = 48911, - [SMALL_STATE(1563)] = 48918, - [SMALL_STATE(1564)] = 48925, - [SMALL_STATE(1565)] = 48932, - [SMALL_STATE(1566)] = 48939, - [SMALL_STATE(1567)] = 48946, - [SMALL_STATE(1568)] = 48953, - [SMALL_STATE(1569)] = 48960, - [SMALL_STATE(1570)] = 48967, - [SMALL_STATE(1571)] = 48974, - [SMALL_STATE(1572)] = 48981, - [SMALL_STATE(1573)] = 48988, - [SMALL_STATE(1574)] = 48995, - [SMALL_STATE(1575)] = 49002, - [SMALL_STATE(1576)] = 49009, - [SMALL_STATE(1577)] = 49016, - [SMALL_STATE(1578)] = 49023, - [SMALL_STATE(1579)] = 49030, - [SMALL_STATE(1580)] = 49037, - [SMALL_STATE(1581)] = 49044, - [SMALL_STATE(1582)] = 49051, - [SMALL_STATE(1583)] = 49058, - [SMALL_STATE(1584)] = 49065, - [SMALL_STATE(1585)] = 49072, - [SMALL_STATE(1586)] = 49079, - [SMALL_STATE(1587)] = 49086, - [SMALL_STATE(1588)] = 49093, - [SMALL_STATE(1589)] = 49100, - [SMALL_STATE(1590)] = 49107, - [SMALL_STATE(1591)] = 49114, - [SMALL_STATE(1592)] = 49121, - [SMALL_STATE(1593)] = 49128, - [SMALL_STATE(1594)] = 49135, - [SMALL_STATE(1595)] = 49142, - [SMALL_STATE(1596)] = 49149, - [SMALL_STATE(1597)] = 49156, - [SMALL_STATE(1598)] = 49163, - [SMALL_STATE(1599)] = 49170, - [SMALL_STATE(1600)] = 49177, - [SMALL_STATE(1601)] = 49184, - [SMALL_STATE(1602)] = 49191, - [SMALL_STATE(1603)] = 49198, - [SMALL_STATE(1604)] = 49205, - [SMALL_STATE(1605)] = 49212, - [SMALL_STATE(1606)] = 49219, - [SMALL_STATE(1607)] = 49226, - [SMALL_STATE(1608)] = 49233, - [SMALL_STATE(1609)] = 49240, - [SMALL_STATE(1610)] = 49247, - [SMALL_STATE(1611)] = 49254, - [SMALL_STATE(1612)] = 49261, - [SMALL_STATE(1613)] = 49268, - [SMALL_STATE(1614)] = 49275, - [SMALL_STATE(1615)] = 49282, - [SMALL_STATE(1616)] = 49289, - [SMALL_STATE(1617)] = 49296, - [SMALL_STATE(1618)] = 49303, - [SMALL_STATE(1619)] = 49310, - [SMALL_STATE(1620)] = 49317, - [SMALL_STATE(1621)] = 49324, - [SMALL_STATE(1622)] = 49331, - [SMALL_STATE(1623)] = 49338, - [SMALL_STATE(1624)] = 49345, - [SMALL_STATE(1625)] = 49352, - [SMALL_STATE(1626)] = 49359, - [SMALL_STATE(1627)] = 49366, - [SMALL_STATE(1628)] = 49373, - [SMALL_STATE(1629)] = 49380, - [SMALL_STATE(1630)] = 49387, - [SMALL_STATE(1631)] = 49394, - [SMALL_STATE(1632)] = 49401, - [SMALL_STATE(1633)] = 49408, - [SMALL_STATE(1634)] = 49415, - [SMALL_STATE(1635)] = 49422, - [SMALL_STATE(1636)] = 49429, - [SMALL_STATE(1637)] = 49436, - [SMALL_STATE(1638)] = 49443, - [SMALL_STATE(1639)] = 49450, - [SMALL_STATE(1640)] = 49457, - [SMALL_STATE(1641)] = 49464, - [SMALL_STATE(1642)] = 49471, - [SMALL_STATE(1643)] = 49478, - [SMALL_STATE(1644)] = 49485, - [SMALL_STATE(1645)] = 49492, - [SMALL_STATE(1646)] = 49499, - [SMALL_STATE(1647)] = 49506, - [SMALL_STATE(1648)] = 49513, - [SMALL_STATE(1649)] = 49520, - [SMALL_STATE(1650)] = 49527, - [SMALL_STATE(1651)] = 49534, - [SMALL_STATE(1652)] = 49541, - [SMALL_STATE(1653)] = 49548, - [SMALL_STATE(1654)] = 49555, - [SMALL_STATE(1655)] = 49562, - [SMALL_STATE(1656)] = 49569, - [SMALL_STATE(1657)] = 49576, - [SMALL_STATE(1658)] = 49583, - [SMALL_STATE(1659)] = 49590, - [SMALL_STATE(1660)] = 49597, - [SMALL_STATE(1661)] = 49604, - [SMALL_STATE(1662)] = 49611, - [SMALL_STATE(1663)] = 49618, - [SMALL_STATE(1664)] = 49625, - [SMALL_STATE(1665)] = 49632, - [SMALL_STATE(1666)] = 49639, - [SMALL_STATE(1667)] = 49646, - [SMALL_STATE(1668)] = 49653, - [SMALL_STATE(1669)] = 49660, - [SMALL_STATE(1670)] = 49667, - [SMALL_STATE(1671)] = 49674, - [SMALL_STATE(1672)] = 49681, - [SMALL_STATE(1673)] = 49688, - [SMALL_STATE(1674)] = 49695, - [SMALL_STATE(1675)] = 49702, - [SMALL_STATE(1676)] = 49709, - [SMALL_STATE(1677)] = 49716, - [SMALL_STATE(1678)] = 49723, - [SMALL_STATE(1679)] = 49730, - [SMALL_STATE(1680)] = 49737, - [SMALL_STATE(1681)] = 49744, - [SMALL_STATE(1682)] = 49751, - [SMALL_STATE(1683)] = 49758, - [SMALL_STATE(1684)] = 49765, - [SMALL_STATE(1685)] = 49772, - [SMALL_STATE(1686)] = 49779, - [SMALL_STATE(1687)] = 49786, - [SMALL_STATE(1688)] = 49793, - [SMALL_STATE(1689)] = 49800, - [SMALL_STATE(1690)] = 49807, - [SMALL_STATE(1691)] = 49814, - [SMALL_STATE(1692)] = 49821, - [SMALL_STATE(1693)] = 49828, - [SMALL_STATE(1694)] = 49835, - [SMALL_STATE(1695)] = 49842, - [SMALL_STATE(1696)] = 49849, - [SMALL_STATE(1697)] = 49856, - [SMALL_STATE(1698)] = 49863, - [SMALL_STATE(1699)] = 49870, - [SMALL_STATE(1700)] = 49877, - [SMALL_STATE(1701)] = 49884, - [SMALL_STATE(1702)] = 49891, - [SMALL_STATE(1703)] = 49898, - [SMALL_STATE(1704)] = 49905, - [SMALL_STATE(1705)] = 49912, - [SMALL_STATE(1706)] = 49919, - [SMALL_STATE(1707)] = 49926, - [SMALL_STATE(1708)] = 49933, - [SMALL_STATE(1709)] = 49940, - [SMALL_STATE(1710)] = 49947, - [SMALL_STATE(1711)] = 49954, - [SMALL_STATE(1712)] = 49961, - [SMALL_STATE(1713)] = 49968, - [SMALL_STATE(1714)] = 49975, - [SMALL_STATE(1715)] = 49982, - [SMALL_STATE(1716)] = 49989, - [SMALL_STATE(1717)] = 49996, - [SMALL_STATE(1718)] = 50003, - [SMALL_STATE(1719)] = 50010, - [SMALL_STATE(1720)] = 50017, - [SMALL_STATE(1721)] = 50024, - [SMALL_STATE(1722)] = 50031, - [SMALL_STATE(1723)] = 50038, - [SMALL_STATE(1724)] = 50045, - [SMALL_STATE(1725)] = 50052, - [SMALL_STATE(1726)] = 50059, - [SMALL_STATE(1727)] = 50066, - [SMALL_STATE(1728)] = 50073, - [SMALL_STATE(1729)] = 50080, - [SMALL_STATE(1730)] = 50087, - [SMALL_STATE(1731)] = 50094, - [SMALL_STATE(1732)] = 50101, - [SMALL_STATE(1733)] = 50108, - [SMALL_STATE(1734)] = 50115, - [SMALL_STATE(1735)] = 50122, - [SMALL_STATE(1736)] = 50129, - [SMALL_STATE(1737)] = 50136, - [SMALL_STATE(1738)] = 50143, - [SMALL_STATE(1739)] = 50150, - [SMALL_STATE(1740)] = 50157, - [SMALL_STATE(1741)] = 50164, - [SMALL_STATE(1742)] = 50171, - [SMALL_STATE(1743)] = 50178, - [SMALL_STATE(1744)] = 50185, - [SMALL_STATE(1745)] = 50192, - [SMALL_STATE(1746)] = 50199, - [SMALL_STATE(1747)] = 50206, - [SMALL_STATE(1748)] = 50213, - [SMALL_STATE(1749)] = 50220, - [SMALL_STATE(1750)] = 50227, - [SMALL_STATE(1751)] = 50234, - [SMALL_STATE(1752)] = 50241, - [SMALL_STATE(1753)] = 50248, - [SMALL_STATE(1754)] = 50255, - [SMALL_STATE(1755)] = 50262, - [SMALL_STATE(1756)] = 50269, - [SMALL_STATE(1757)] = 50276, - [SMALL_STATE(1758)] = 50283, - [SMALL_STATE(1759)] = 50290, - [SMALL_STATE(1760)] = 50297, - [SMALL_STATE(1761)] = 50304, - [SMALL_STATE(1762)] = 50311, - [SMALL_STATE(1763)] = 50318, - [SMALL_STATE(1764)] = 50325, - [SMALL_STATE(1765)] = 50332, - [SMALL_STATE(1766)] = 50339, - [SMALL_STATE(1767)] = 50346, - [SMALL_STATE(1768)] = 50353, - [SMALL_STATE(1769)] = 50360, - [SMALL_STATE(1770)] = 50367, - [SMALL_STATE(1771)] = 50374, - [SMALL_STATE(1772)] = 50381, - [SMALL_STATE(1773)] = 50388, - [SMALL_STATE(1774)] = 50395, - [SMALL_STATE(1775)] = 50402, - [SMALL_STATE(1776)] = 50409, - [SMALL_STATE(1777)] = 50416, - [SMALL_STATE(1778)] = 50423, - [SMALL_STATE(1779)] = 50430, - [SMALL_STATE(1780)] = 50437, - [SMALL_STATE(1781)] = 50444, - [SMALL_STATE(1782)] = 50451, - [SMALL_STATE(1783)] = 50458, - [SMALL_STATE(1784)] = 50465, - [SMALL_STATE(1785)] = 50472, - [SMALL_STATE(1786)] = 50479, - [SMALL_STATE(1787)] = 50486, - [SMALL_STATE(1788)] = 50493, - [SMALL_STATE(1789)] = 50500, - [SMALL_STATE(1790)] = 50507, - [SMALL_STATE(1791)] = 50514, - [SMALL_STATE(1792)] = 50521, - [SMALL_STATE(1793)] = 50528, - [SMALL_STATE(1794)] = 50535, - [SMALL_STATE(1795)] = 50542, - [SMALL_STATE(1796)] = 50549, - [SMALL_STATE(1797)] = 50556, - [SMALL_STATE(1798)] = 50563, - [SMALL_STATE(1799)] = 50570, - [SMALL_STATE(1800)] = 50577, - [SMALL_STATE(1801)] = 50584, - [SMALL_STATE(1802)] = 50591, - [SMALL_STATE(1803)] = 50598, - [SMALL_STATE(1804)] = 50605, - [SMALL_STATE(1805)] = 50612, - [SMALL_STATE(1806)] = 50619, - [SMALL_STATE(1807)] = 50626, - [SMALL_STATE(1808)] = 50633, - [SMALL_STATE(1809)] = 50640, - [SMALL_STATE(1810)] = 50647, - [SMALL_STATE(1811)] = 50654, - [SMALL_STATE(1812)] = 50661, - [SMALL_STATE(1813)] = 50668, - [SMALL_STATE(1814)] = 50675, - [SMALL_STATE(1815)] = 50682, - [SMALL_STATE(1816)] = 50689, - [SMALL_STATE(1817)] = 50696, - [SMALL_STATE(1818)] = 50703, - [SMALL_STATE(1819)] = 50710, - [SMALL_STATE(1820)] = 50717, - [SMALL_STATE(1821)] = 50724, - [SMALL_STATE(1822)] = 50731, - [SMALL_STATE(1823)] = 50738, - [SMALL_STATE(1824)] = 50745, - [SMALL_STATE(1825)] = 50752, - [SMALL_STATE(1826)] = 50759, - [SMALL_STATE(1827)] = 50766, - [SMALL_STATE(1828)] = 50773, - [SMALL_STATE(1829)] = 50780, - [SMALL_STATE(1830)] = 50787, - [SMALL_STATE(1831)] = 50794, - [SMALL_STATE(1832)] = 50801, - [SMALL_STATE(1833)] = 50808, - [SMALL_STATE(1834)] = 50815, - [SMALL_STATE(1835)] = 50822, - [SMALL_STATE(1836)] = 50829, - [SMALL_STATE(1837)] = 50836, - [SMALL_STATE(1838)] = 50843, - [SMALL_STATE(1839)] = 50850, - [SMALL_STATE(1840)] = 50857, - [SMALL_STATE(1841)] = 50864, - [SMALL_STATE(1842)] = 50871, - [SMALL_STATE(1843)] = 50878, - [SMALL_STATE(1844)] = 50885, - [SMALL_STATE(1845)] = 50892, - [SMALL_STATE(1846)] = 50899, - [SMALL_STATE(1847)] = 50906, - [SMALL_STATE(1848)] = 50913, - [SMALL_STATE(1849)] = 50920, - [SMALL_STATE(1850)] = 50927, - [SMALL_STATE(1851)] = 50934, - [SMALL_STATE(1852)] = 50941, - [SMALL_STATE(1853)] = 50948, - [SMALL_STATE(1854)] = 50955, - [SMALL_STATE(1855)] = 50962, - [SMALL_STATE(1856)] = 50969, - [SMALL_STATE(1857)] = 50976, - [SMALL_STATE(1858)] = 50983, - [SMALL_STATE(1859)] = 50990, - [SMALL_STATE(1860)] = 50997, - [SMALL_STATE(1861)] = 51004, - [SMALL_STATE(1862)] = 51011, - [SMALL_STATE(1863)] = 51018, - [SMALL_STATE(1864)] = 51025, - [SMALL_STATE(1865)] = 51032, - [SMALL_STATE(1866)] = 51039, - [SMALL_STATE(1867)] = 51046, - [SMALL_STATE(1868)] = 51053, - [SMALL_STATE(1869)] = 51060, - [SMALL_STATE(1870)] = 51067, - [SMALL_STATE(1871)] = 51074, - [SMALL_STATE(1872)] = 51081, - [SMALL_STATE(1873)] = 51088, - [SMALL_STATE(1874)] = 51095, - [SMALL_STATE(1875)] = 51102, - [SMALL_STATE(1876)] = 51109, - [SMALL_STATE(1877)] = 51116, - [SMALL_STATE(1878)] = 51123, - [SMALL_STATE(1879)] = 51130, - [SMALL_STATE(1880)] = 51137, - [SMALL_STATE(1881)] = 51144, - [SMALL_STATE(1882)] = 51151, - [SMALL_STATE(1883)] = 51158, - [SMALL_STATE(1884)] = 51165, - [SMALL_STATE(1885)] = 51172, - [SMALL_STATE(1886)] = 51179, - [SMALL_STATE(1887)] = 51186, - [SMALL_STATE(1888)] = 51193, - [SMALL_STATE(1889)] = 51200, - [SMALL_STATE(1890)] = 51207, - [SMALL_STATE(1891)] = 51214, - [SMALL_STATE(1892)] = 51221, - [SMALL_STATE(1893)] = 51228, - [SMALL_STATE(1894)] = 51235, - [SMALL_STATE(1895)] = 51242, - [SMALL_STATE(1896)] = 51249, - [SMALL_STATE(1897)] = 51256, - [SMALL_STATE(1898)] = 51263, - [SMALL_STATE(1899)] = 51270, - [SMALL_STATE(1900)] = 51277, - [SMALL_STATE(1901)] = 51284, - [SMALL_STATE(1902)] = 51291, - [SMALL_STATE(1903)] = 51298, - [SMALL_STATE(1904)] = 51305, - [SMALL_STATE(1905)] = 51312, - [SMALL_STATE(1906)] = 51319, - [SMALL_STATE(1907)] = 51326, - [SMALL_STATE(1908)] = 51333, - [SMALL_STATE(1909)] = 51340, - [SMALL_STATE(1910)] = 51347, - [SMALL_STATE(1911)] = 51354, - [SMALL_STATE(1912)] = 51361, - [SMALL_STATE(1913)] = 51368, - [SMALL_STATE(1914)] = 51375, - [SMALL_STATE(1915)] = 51382, - [SMALL_STATE(1916)] = 51389, - [SMALL_STATE(1917)] = 51396, - [SMALL_STATE(1918)] = 51403, - [SMALL_STATE(1919)] = 51410, - [SMALL_STATE(1920)] = 51417, - [SMALL_STATE(1921)] = 51424, - [SMALL_STATE(1922)] = 51431, - [SMALL_STATE(1923)] = 51438, - [SMALL_STATE(1924)] = 51445, - [SMALL_STATE(1925)] = 51452, - [SMALL_STATE(1926)] = 51459, - [SMALL_STATE(1927)] = 51466, - [SMALL_STATE(1928)] = 51473, - [SMALL_STATE(1929)] = 51480, - [SMALL_STATE(1930)] = 51487, - [SMALL_STATE(1931)] = 51494, - [SMALL_STATE(1932)] = 51501, - [SMALL_STATE(1933)] = 51508, - [SMALL_STATE(1934)] = 51515, - [SMALL_STATE(1935)] = 51522, - [SMALL_STATE(1936)] = 51529, - [SMALL_STATE(1937)] = 51536, - [SMALL_STATE(1938)] = 51543, - [SMALL_STATE(1939)] = 51550, - [SMALL_STATE(1940)] = 51557, - [SMALL_STATE(1941)] = 51564, - [SMALL_STATE(1942)] = 51571, - [SMALL_STATE(1943)] = 51578, - [SMALL_STATE(1944)] = 51585, - [SMALL_STATE(1945)] = 51592, + [SMALL_STATE(75)] = 0, + [SMALL_STATE(76)] = 124, + [SMALL_STATE(77)] = 244, + [SMALL_STATE(78)] = 361, + [SMALL_STATE(79)] = 478, + [SMALL_STATE(80)] = 609, + [SMALL_STATE(81)] = 724, + [SMALL_STATE(82)] = 841, + [SMALL_STATE(83)] = 958, + [SMALL_STATE(84)] = 1072, + [SMALL_STATE(85)] = 1186, + [SMALL_STATE(86)] = 1300, + [SMALL_STATE(87)] = 1414, + [SMALL_STATE(88)] = 1552, + [SMALL_STATE(89)] = 1666, + [SMALL_STATE(90)] = 1780, + [SMALL_STATE(91)] = 1918, + [SMALL_STATE(92)] = 2049, + [SMALL_STATE(93)] = 2177, + [SMALL_STATE(94)] = 2305, + [SMALL_STATE(95)] = 2428, + [SMALL_STATE(96)] = 2553, + [SMALL_STATE(97)] = 2667, + [SMALL_STATE(98)] = 2787, + [SMALL_STATE(99)] = 2897, + [SMALL_STATE(100)] = 3008, + [SMALL_STATE(101)] = 3119, + [SMALL_STATE(102)] = 3230, + [SMALL_STATE(103)] = 3338, + [SMALL_STATE(104)] = 3450, + [SMALL_STATE(105)] = 3559, + [SMALL_STATE(106)] = 3663, + [SMALL_STATE(107)] = 3769, + [SMALL_STATE(108)] = 3873, + [SMALL_STATE(109)] = 3975, + [SMALL_STATE(110)] = 4081, + [SMALL_STATE(111)] = 4184, + [SMALL_STATE(112)] = 4283, + [SMALL_STATE(113)] = 4386, + [SMALL_STATE(114)] = 4489, + [SMALL_STATE(115)] = 4588, + [SMALL_STATE(116)] = 4644, + [SMALL_STATE(117)] = 4700, + [SMALL_STATE(118)] = 4796, + [SMALL_STATE(119)] = 4892, + [SMALL_STATE(120)] = 4948, + [SMALL_STATE(121)] = 5004, + [SMALL_STATE(122)] = 5060, + [SMALL_STATE(123)] = 5116, + [SMALL_STATE(124)] = 5172, + [SMALL_STATE(125)] = 5268, + [SMALL_STATE(126)] = 5324, + [SMALL_STATE(127)] = 5380, + [SMALL_STATE(128)] = 5436, + [SMALL_STATE(129)] = 5492, + [SMALL_STATE(130)] = 5548, + [SMALL_STATE(131)] = 5604, + [SMALL_STATE(132)] = 5660, + [SMALL_STATE(133)] = 5716, + [SMALL_STATE(134)] = 5772, + [SMALL_STATE(135)] = 5828, + [SMALL_STATE(136)] = 5884, + [SMALL_STATE(137)] = 5940, + [SMALL_STATE(138)] = 5996, + [SMALL_STATE(139)] = 6052, + [SMALL_STATE(140)] = 6108, + [SMALL_STATE(141)] = 6164, + [SMALL_STATE(142)] = 6220, + [SMALL_STATE(143)] = 6316, + [SMALL_STATE(144)] = 6412, + [SMALL_STATE(145)] = 6508, + [SMALL_STATE(146)] = 6564, + [SMALL_STATE(147)] = 6620, + [SMALL_STATE(148)] = 6676, + [SMALL_STATE(149)] = 6732, + [SMALL_STATE(150)] = 6828, + [SMALL_STATE(151)] = 6884, + [SMALL_STATE(152)] = 6980, + [SMALL_STATE(153)] = 7036, + [SMALL_STATE(154)] = 7092, + [SMALL_STATE(155)] = 7148, + [SMALL_STATE(156)] = 7204, + [SMALL_STATE(157)] = 7260, + [SMALL_STATE(158)] = 7316, + [SMALL_STATE(159)] = 7372, + [SMALL_STATE(160)] = 7428, + [SMALL_STATE(161)] = 7484, + [SMALL_STATE(162)] = 7540, + [SMALL_STATE(163)] = 7636, + [SMALL_STATE(164)] = 7692, + [SMALL_STATE(165)] = 7748, + [SMALL_STATE(166)] = 7804, + [SMALL_STATE(167)] = 7900, + [SMALL_STATE(168)] = 7956, + [SMALL_STATE(169)] = 8012, + [SMALL_STATE(170)] = 8068, + [SMALL_STATE(171)] = 8124, + [SMALL_STATE(172)] = 8180, + [SMALL_STATE(173)] = 8276, + [SMALL_STATE(174)] = 8332, + [SMALL_STATE(175)] = 8388, + [SMALL_STATE(176)] = 8444, + [SMALL_STATE(177)] = 8500, + [SMALL_STATE(178)] = 8556, + [SMALL_STATE(179)] = 8612, + [SMALL_STATE(180)] = 8668, + [SMALL_STATE(181)] = 8724, + [SMALL_STATE(182)] = 8780, + [SMALL_STATE(183)] = 8836, + [SMALL_STATE(184)] = 8892, + [SMALL_STATE(185)] = 8948, + [SMALL_STATE(186)] = 9004, + [SMALL_STATE(187)] = 9060, + [SMALL_STATE(188)] = 9156, + [SMALL_STATE(189)] = 9212, + [SMALL_STATE(190)] = 9305, + [SMALL_STATE(191)] = 9398, + [SMALL_STATE(192)] = 9491, + [SMALL_STATE(193)] = 9584, + [SMALL_STATE(194)] = 9677, + [SMALL_STATE(195)] = 9770, + [SMALL_STATE(196)] = 9863, + [SMALL_STATE(197)] = 9956, + [SMALL_STATE(198)] = 10049, + [SMALL_STATE(199)] = 10142, + [SMALL_STATE(200)] = 10235, + [SMALL_STATE(201)] = 10328, + [SMALL_STATE(202)] = 10421, + [SMALL_STATE(203)] = 10514, + [SMALL_STATE(204)] = 10607, + [SMALL_STATE(205)] = 10700, + [SMALL_STATE(206)] = 10793, + [SMALL_STATE(207)] = 10886, + [SMALL_STATE(208)] = 10979, + [SMALL_STATE(209)] = 11076, + [SMALL_STATE(210)] = 11169, + [SMALL_STATE(211)] = 11262, + [SMALL_STATE(212)] = 11355, + [SMALL_STATE(213)] = 11448, + [SMALL_STATE(214)] = 11541, + [SMALL_STATE(215)] = 11634, + [SMALL_STATE(216)] = 11727, + [SMALL_STATE(217)] = 11820, + [SMALL_STATE(218)] = 11913, + [SMALL_STATE(219)] = 12006, + [SMALL_STATE(220)] = 12099, + [SMALL_STATE(221)] = 12192, + [SMALL_STATE(222)] = 12285, + [SMALL_STATE(223)] = 12378, + [SMALL_STATE(224)] = 12471, + [SMALL_STATE(225)] = 12564, + [SMALL_STATE(226)] = 12657, + [SMALL_STATE(227)] = 12750, + [SMALL_STATE(228)] = 12843, + [SMALL_STATE(229)] = 12936, + [SMALL_STATE(230)] = 13029, + [SMALL_STATE(231)] = 13083, + [SMALL_STATE(232)] = 13137, + [SMALL_STATE(233)] = 13191, + [SMALL_STATE(234)] = 13285, + [SMALL_STATE(235)] = 13379, + [SMALL_STATE(236)] = 13473, + [SMALL_STATE(237)] = 13563, + [SMALL_STATE(238)] = 13617, + [SMALL_STATE(239)] = 13671, + [SMALL_STATE(240)] = 13725, + [SMALL_STATE(241)] = 13779, + [SMALL_STATE(242)] = 13873, + [SMALL_STATE(243)] = 13967, + [SMALL_STATE(244)] = 14021, + [SMALL_STATE(245)] = 14075, + [SMALL_STATE(246)] = 14129, + [SMALL_STATE(247)] = 14183, + [SMALL_STATE(248)] = 14273, + [SMALL_STATE(249)] = 14327, + [SMALL_STATE(250)] = 14417, + [SMALL_STATE(251)] = 14471, + [SMALL_STATE(252)] = 14525, + [SMALL_STATE(253)] = 14619, + [SMALL_STATE(254)] = 14673, + [SMALL_STATE(255)] = 14727, + [SMALL_STATE(256)] = 14781, + [SMALL_STATE(257)] = 14835, + [SMALL_STATE(258)] = 14889, + [SMALL_STATE(259)] = 14943, + [SMALL_STATE(260)] = 14996, + [SMALL_STATE(261)] = 15085, + [SMALL_STATE(262)] = 15174, + [SMALL_STATE(263)] = 15227, + [SMALL_STATE(264)] = 15280, + [SMALL_STATE(265)] = 15346, + [SMALL_STATE(266)] = 15408, + [SMALL_STATE(267)] = 15494, + [SMALL_STATE(268)] = 15556, + [SMALL_STATE(269)] = 15607, + [SMALL_STATE(270)] = 15658, + [SMALL_STATE(271)] = 15709, + [SMALL_STATE(272)] = 15760, + [SMALL_STATE(273)] = 15811, + [SMALL_STATE(274)] = 15896, + [SMALL_STATE(275)] = 15947, + [SMALL_STATE(276)] = 16032, + [SMALL_STATE(277)] = 16091, + [SMALL_STATE(278)] = 16142, + [SMALL_STATE(279)] = 16193, + [SMALL_STATE(280)] = 16244, + [SMALL_STATE(281)] = 16294, + [SMALL_STATE(282)] = 16344, + [SMALL_STATE(283)] = 16394, + [SMALL_STATE(284)] = 16444, + [SMALL_STATE(285)] = 16494, + [SMALL_STATE(286)] = 16544, + [SMALL_STATE(287)] = 16594, + [SMALL_STATE(288)] = 16644, + [SMALL_STATE(289)] = 16726, + [SMALL_STATE(290)] = 16776, + [SMALL_STATE(291)] = 16826, + [SMALL_STATE(292)] = 16876, + [SMALL_STATE(293)] = 16926, + [SMALL_STATE(294)] = 16976, + [SMALL_STATE(295)] = 17026, + [SMALL_STATE(296)] = 17076, + [SMALL_STATE(297)] = 17126, + [SMALL_STATE(298)] = 17176, + [SMALL_STATE(299)] = 17226, + [SMALL_STATE(300)] = 17308, + [SMALL_STATE(301)] = 17358, + [SMALL_STATE(302)] = 17408, + [SMALL_STATE(303)] = 17458, + [SMALL_STATE(304)] = 17508, + [SMALL_STATE(305)] = 17590, + [SMALL_STATE(306)] = 17640, + [SMALL_STATE(307)] = 17690, + [SMALL_STATE(308)] = 17740, + [SMALL_STATE(309)] = 17790, + [SMALL_STATE(310)] = 17840, + [SMALL_STATE(311)] = 17890, + [SMALL_STATE(312)] = 17940, + [SMALL_STATE(313)] = 17990, + [SMALL_STATE(314)] = 18040, + [SMALL_STATE(315)] = 18090, + [SMALL_STATE(316)] = 18140, + [SMALL_STATE(317)] = 18190, + [SMALL_STATE(318)] = 18240, + [SMALL_STATE(319)] = 18290, + [SMALL_STATE(320)] = 18340, + [SMALL_STATE(321)] = 18390, + [SMALL_STATE(322)] = 18440, + [SMALL_STATE(323)] = 18490, + [SMALL_STATE(324)] = 18540, + [SMALL_STATE(325)] = 18590, + [SMALL_STATE(326)] = 18640, + [SMALL_STATE(327)] = 18690, + [SMALL_STATE(328)] = 18740, + [SMALL_STATE(329)] = 18790, + [SMALL_STATE(330)] = 18840, + [SMALL_STATE(331)] = 18890, + [SMALL_STATE(332)] = 18940, + [SMALL_STATE(333)] = 18990, + [SMALL_STATE(334)] = 19040, + [SMALL_STATE(335)] = 19090, + [SMALL_STATE(336)] = 19140, + [SMALL_STATE(337)] = 19190, + [SMALL_STATE(338)] = 19240, + [SMALL_STATE(339)] = 19290, + [SMALL_STATE(340)] = 19340, + [SMALL_STATE(341)] = 19390, + [SMALL_STATE(342)] = 19440, + [SMALL_STATE(343)] = 19490, + [SMALL_STATE(344)] = 19540, + [SMALL_STATE(345)] = 19590, + [SMALL_STATE(346)] = 19640, + [SMALL_STATE(347)] = 19690, + [SMALL_STATE(348)] = 19772, + [SMALL_STATE(349)] = 19822, + [SMALL_STATE(350)] = 19872, + [SMALL_STATE(351)] = 19922, + [SMALL_STATE(352)] = 19972, + [SMALL_STATE(353)] = 20022, + [SMALL_STATE(354)] = 20072, + [SMALL_STATE(355)] = 20122, + [SMALL_STATE(356)] = 20172, + [SMALL_STATE(357)] = 20222, + [SMALL_STATE(358)] = 20272, + [SMALL_STATE(359)] = 20322, + [SMALL_STATE(360)] = 20372, + [SMALL_STATE(361)] = 20422, + [SMALL_STATE(362)] = 20472, + [SMALL_STATE(363)] = 20522, + [SMALL_STATE(364)] = 20572, + [SMALL_STATE(365)] = 20622, + [SMALL_STATE(366)] = 20672, + [SMALL_STATE(367)] = 20722, + [SMALL_STATE(368)] = 20772, + [SMALL_STATE(369)] = 20822, + [SMALL_STATE(370)] = 20872, + [SMALL_STATE(371)] = 20922, + [SMALL_STATE(372)] = 20972, + [SMALL_STATE(373)] = 21022, + [SMALL_STATE(374)] = 21072, + [SMALL_STATE(375)] = 21122, + [SMALL_STATE(376)] = 21172, + [SMALL_STATE(377)] = 21222, + [SMALL_STATE(378)] = 21272, + [SMALL_STATE(379)] = 21322, + [SMALL_STATE(380)] = 21372, + [SMALL_STATE(381)] = 21422, + [SMALL_STATE(382)] = 21472, + [SMALL_STATE(383)] = 21522, + [SMALL_STATE(384)] = 21572, + [SMALL_STATE(385)] = 21622, + [SMALL_STATE(386)] = 21672, + [SMALL_STATE(387)] = 21722, + [SMALL_STATE(388)] = 21772, + [SMALL_STATE(389)] = 21822, + [SMALL_STATE(390)] = 21872, + [SMALL_STATE(391)] = 21922, + [SMALL_STATE(392)] = 21972, + [SMALL_STATE(393)] = 22022, + [SMALL_STATE(394)] = 22072, + [SMALL_STATE(395)] = 22122, + [SMALL_STATE(396)] = 22172, + [SMALL_STATE(397)] = 22222, + [SMALL_STATE(398)] = 22272, + [SMALL_STATE(399)] = 22322, + [SMALL_STATE(400)] = 22372, + [SMALL_STATE(401)] = 22422, + [SMALL_STATE(402)] = 22472, + [SMALL_STATE(403)] = 22522, + [SMALL_STATE(404)] = 22572, + [SMALL_STATE(405)] = 22622, + [SMALL_STATE(406)] = 22672, + [SMALL_STATE(407)] = 22722, + [SMALL_STATE(408)] = 22772, + [SMALL_STATE(409)] = 22822, + [SMALL_STATE(410)] = 22872, + [SMALL_STATE(411)] = 22922, + [SMALL_STATE(412)] = 23004, + [SMALL_STATE(413)] = 23086, + [SMALL_STATE(414)] = 23136, + [SMALL_STATE(415)] = 23186, + [SMALL_STATE(416)] = 23236, + [SMALL_STATE(417)] = 23286, + [SMALL_STATE(418)] = 23336, + [SMALL_STATE(419)] = 23418, + [SMALL_STATE(420)] = 23468, + [SMALL_STATE(421)] = 23518, + [SMALL_STATE(422)] = 23568, + [SMALL_STATE(423)] = 23618, + [SMALL_STATE(424)] = 23668, + [SMALL_STATE(425)] = 23718, + [SMALL_STATE(426)] = 23768, + [SMALL_STATE(427)] = 23818, + [SMALL_STATE(428)] = 23868, + [SMALL_STATE(429)] = 23918, + [SMALL_STATE(430)] = 23968, + [SMALL_STATE(431)] = 24018, + [SMALL_STATE(432)] = 24068, + [SMALL_STATE(433)] = 24118, + [SMALL_STATE(434)] = 24168, + [SMALL_STATE(435)] = 24218, + [SMALL_STATE(436)] = 24268, + [SMALL_STATE(437)] = 24318, + [SMALL_STATE(438)] = 24368, + [SMALL_STATE(439)] = 24418, + [SMALL_STATE(440)] = 24468, + [SMALL_STATE(441)] = 24550, + [SMALL_STATE(442)] = 24600, + [SMALL_STATE(443)] = 24650, + [SMALL_STATE(444)] = 24700, + [SMALL_STATE(445)] = 24750, + [SMALL_STATE(446)] = 24800, + [SMALL_STATE(447)] = 24850, + [SMALL_STATE(448)] = 24900, + [SMALL_STATE(449)] = 24950, + [SMALL_STATE(450)] = 25000, + [SMALL_STATE(451)] = 25050, + [SMALL_STATE(452)] = 25132, + [SMALL_STATE(453)] = 25182, + [SMALL_STATE(454)] = 25232, + [SMALL_STATE(455)] = 25282, + [SMALL_STATE(456)] = 25332, + [SMALL_STATE(457)] = 25414, + [SMALL_STATE(458)] = 25464, + [SMALL_STATE(459)] = 25514, + [SMALL_STATE(460)] = 25564, + [SMALL_STATE(461)] = 25614, + [SMALL_STATE(462)] = 25664, + [SMALL_STATE(463)] = 25714, + [SMALL_STATE(464)] = 25764, + [SMALL_STATE(465)] = 25814, + [SMALL_STATE(466)] = 25864, + [SMALL_STATE(467)] = 25914, + [SMALL_STATE(468)] = 25964, + [SMALL_STATE(469)] = 26014, + [SMALL_STATE(470)] = 26064, + [SMALL_STATE(471)] = 26114, + [SMALL_STATE(472)] = 26164, + [SMALL_STATE(473)] = 26214, + [SMALL_STATE(474)] = 26296, + [SMALL_STATE(475)] = 26346, + [SMALL_STATE(476)] = 26396, + [SMALL_STATE(477)] = 26446, + [SMALL_STATE(478)] = 26495, + [SMALL_STATE(479)] = 26544, + [SMALL_STATE(480)] = 26593, + [SMALL_STATE(481)] = 26642, + [SMALL_STATE(482)] = 26691, + [SMALL_STATE(483)] = 26740, + [SMALL_STATE(484)] = 26789, + [SMALL_STATE(485)] = 26846, + [SMALL_STATE(486)] = 26902, + [SMALL_STATE(487)] = 26958, + [SMALL_STATE(488)] = 27014, + [SMALL_STATE(489)] = 27061, + [SMALL_STATE(490)] = 27108, + [SMALL_STATE(491)] = 27155, + [SMALL_STATE(492)] = 27204, + [SMALL_STATE(493)] = 27251, + [SMALL_STATE(494)] = 27298, + [SMALL_STATE(495)] = 27345, + [SMALL_STATE(496)] = 27392, + [SMALL_STATE(497)] = 27439, + [SMALL_STATE(498)] = 27523, + [SMALL_STATE(499)] = 27593, + [SMALL_STATE(500)] = 27639, + [SMALL_STATE(501)] = 27685, + [SMALL_STATE(502)] = 27747, + [SMALL_STATE(503)] = 27793, + [SMALL_STATE(504)] = 27863, + [SMALL_STATE(505)] = 27909, + [SMALL_STATE(506)] = 27972, + [SMALL_STATE(507)] = 28051, + [SMALL_STATE(508)] = 28118, + [SMALL_STATE(509)] = 28170, + [SMALL_STATE(510)] = 28222, + [SMALL_STATE(511)] = 28274, + [SMALL_STATE(512)] = 28326, + [SMALL_STATE(513)] = 28378, + [SMALL_STATE(514)] = 28459, + [SMALL_STATE(515)] = 28540, + [SMALL_STATE(516)] = 28594, + [SMALL_STATE(517)] = 28636, + [SMALL_STATE(518)] = 28681, + [SMALL_STATE(519)] = 28736, + [SMALL_STATE(520)] = 28791, + [SMALL_STATE(521)] = 28846, + [SMALL_STATE(522)] = 28885, + [SMALL_STATE(523)] = 28940, + [SMALL_STATE(524)] = 28990, + [SMALL_STATE(525)] = 29032, + [SMALL_STATE(526)] = 29082, + [SMALL_STATE(527)] = 29127, + [SMALL_STATE(528)] = 29196, + [SMALL_STATE(529)] = 29238, + [SMALL_STATE(530)] = 29283, + [SMALL_STATE(531)] = 29339, + [SMALL_STATE(532)] = 29379, + [SMALL_STATE(533)] = 29435, + [SMALL_STATE(534)] = 29491, + [SMALL_STATE(535)] = 29527, + [SMALL_STATE(536)] = 29583, + [SMALL_STATE(537)] = 29639, + [SMALL_STATE(538)] = 29696, + [SMALL_STATE(539)] = 29747, + [SMALL_STATE(540)] = 29804, + [SMALL_STATE(541)] = 29841, + [SMALL_STATE(542)] = 29898, + [SMALL_STATE(543)] = 29955, + [SMALL_STATE(544)] = 30012, + [SMALL_STATE(545)] = 30066, + [SMALL_STATE(546)] = 30120, + [SMALL_STATE(547)] = 30174, + [SMALL_STATE(548)] = 30228, + [SMALL_STATE(549)] = 30260, + [SMALL_STATE(550)] = 30314, + [SMALL_STATE(551)] = 30348, + [SMALL_STATE(552)] = 30402, + [SMALL_STATE(553)] = 30442, + [SMALL_STATE(554)] = 30493, + [SMALL_STATE(555)] = 30542, + [SMALL_STATE(556)] = 30599, + [SMALL_STATE(557)] = 30650, + [SMALL_STATE(558)] = 30701, + [SMALL_STATE(559)] = 30742, + [SMALL_STATE(560)] = 30793, + [SMALL_STATE(561)] = 30822, + [SMALL_STATE(562)] = 30873, + [SMALL_STATE(563)] = 30902, + [SMALL_STATE(564)] = 30931, + [SMALL_STATE(565)] = 30982, + [SMALL_STATE(566)] = 31025, + [SMALL_STATE(567)] = 31074, + [SMALL_STATE(568)] = 31128, + [SMALL_STATE(569)] = 31182, + [SMALL_STATE(570)] = 31236, + [SMALL_STATE(571)] = 31279, + [SMALL_STATE(572)] = 31330, + [SMALL_STATE(573)] = 31361, + [SMALL_STATE(574)] = 31408, + [SMALL_STATE(575)] = 31437, + [SMALL_STATE(576)] = 31480, + [SMALL_STATE(577)] = 31511, + [SMALL_STATE(578)] = 31542, + [SMALL_STATE(579)] = 31593, + [SMALL_STATE(580)] = 31644, + [SMALL_STATE(581)] = 31692, + [SMALL_STATE(582)] = 31740, + [SMALL_STATE(583)] = 31790, + [SMALL_STATE(584)] = 31816, + [SMALL_STATE(585)] = 31842, + [SMALL_STATE(586)] = 31868, + [SMALL_STATE(587)] = 31916, + [SMALL_STATE(588)] = 31942, + [SMALL_STATE(589)] = 31968, + [SMALL_STATE(590)] = 32008, + [SMALL_STATE(591)] = 32056, + [SMALL_STATE(592)] = 32106, + [SMALL_STATE(593)] = 32156, + [SMALL_STATE(594)] = 32185, + [SMALL_STATE(595)] = 32230, + [SMALL_STATE(596)] = 32259, + [SMALL_STATE(597)] = 32288, + [SMALL_STATE(598)] = 32317, + [SMALL_STATE(599)] = 32354, + [SMALL_STATE(600)] = 32383, + [SMALL_STATE(601)] = 32428, + [SMALL_STATE(602)] = 32473, + [SMALL_STATE(603)] = 32502, + [SMALL_STATE(604)] = 32545, + [SMALL_STATE(605)] = 32587, + [SMALL_STATE(606)] = 32631, + [SMALL_STATE(607)] = 32655, + [SMALL_STATE(608)] = 32679, + [SMALL_STATE(609)] = 32713, + [SMALL_STATE(610)] = 32737, + [SMALL_STATE(611)] = 32777, + [SMALL_STATE(612)] = 32819, + [SMALL_STATE(613)] = 32843, + [SMALL_STATE(614)] = 32885, + [SMALL_STATE(615)] = 32909, + [SMALL_STATE(616)] = 32943, + [SMALL_STATE(617)] = 32983, + [SMALL_STATE(618)] = 33023, + [SMALL_STATE(619)] = 33062, + [SMALL_STATE(620)] = 33101, + [SMALL_STATE(621)] = 33140, + [SMALL_STATE(622)] = 33179, + [SMALL_STATE(623)] = 33218, + [SMALL_STATE(624)] = 33257, + [SMALL_STATE(625)] = 33284, + [SMALL_STATE(626)] = 33321, + [SMALL_STATE(627)] = 33348, + [SMALL_STATE(628)] = 33387, + [SMALL_STATE(629)] = 33427, + [SMALL_STATE(630)] = 33465, + [SMALL_STATE(631)] = 33501, + [SMALL_STATE(632)] = 33539, + [SMALL_STATE(633)] = 33573, + [SMALL_STATE(634)] = 33607, + [SMALL_STATE(635)] = 33645, + [SMALL_STATE(636)] = 33683, + [SMALL_STATE(637)] = 33721, + [SMALL_STATE(638)] = 33759, + [SMALL_STATE(639)] = 33797, + [SMALL_STATE(640)] = 33835, + [SMALL_STATE(641)] = 33873, + [SMALL_STATE(642)] = 33911, + [SMALL_STATE(643)] = 33951, + [SMALL_STATE(644)] = 33987, + [SMALL_STATE(645)] = 34025, + [SMALL_STATE(646)] = 34061, + [SMALL_STATE(647)] = 34095, + [SMALL_STATE(648)] = 34129, + [SMALL_STATE(649)] = 34150, + [SMALL_STATE(650)] = 34187, + [SMALL_STATE(651)] = 34222, + [SMALL_STATE(652)] = 34253, + [SMALL_STATE(653)] = 34290, + [SMALL_STATE(654)] = 34325, + [SMALL_STATE(655)] = 34358, + [SMALL_STATE(656)] = 34393, + [SMALL_STATE(657)] = 34414, + [SMALL_STATE(658)] = 34435, + [SMALL_STATE(659)] = 34468, + [SMALL_STATE(660)] = 34501, + [SMALL_STATE(661)] = 34534, + [SMALL_STATE(662)] = 34555, + [SMALL_STATE(663)] = 34576, + [SMALL_STATE(664)] = 34611, + [SMALL_STATE(665)] = 34644, + [SMALL_STATE(666)] = 34679, + [SMALL_STATE(667)] = 34714, + [SMALL_STATE(668)] = 34742, + [SMALL_STATE(669)] = 34770, + [SMALL_STATE(670)] = 34798, + [SMALL_STATE(671)] = 34826, + [SMALL_STATE(672)] = 34854, + [SMALL_STATE(673)] = 34882, + [SMALL_STATE(674)] = 34912, + [SMALL_STATE(675)] = 34940, + [SMALL_STATE(676)] = 34968, + [SMALL_STATE(677)] = 34996, + [SMALL_STATE(678)] = 35024, + [SMALL_STATE(679)] = 35052, + [SMALL_STATE(680)] = 35082, + [SMALL_STATE(681)] = 35110, + [SMALL_STATE(682)] = 35138, + [SMALL_STATE(683)] = 35166, + [SMALL_STATE(684)] = 35194, + [SMALL_STATE(685)] = 35222, + [SMALL_STATE(686)] = 35250, + [SMALL_STATE(687)] = 35278, + [SMALL_STATE(688)] = 35306, + [SMALL_STATE(689)] = 35338, + [SMALL_STATE(690)] = 35366, + [SMALL_STATE(691)] = 35398, + [SMALL_STATE(692)] = 35430, + [SMALL_STATE(693)] = 35460, + [SMALL_STATE(694)] = 35488, + [SMALL_STATE(695)] = 35516, + [SMALL_STATE(696)] = 35548, + [SMALL_STATE(697)] = 35576, + [SMALL_STATE(698)] = 35604, + [SMALL_STATE(699)] = 35632, + [SMALL_STATE(700)] = 35660, + [SMALL_STATE(701)] = 35688, + [SMALL_STATE(702)] = 35716, + [SMALL_STATE(703)] = 35746, + [SMALL_STATE(704)] = 35774, + [SMALL_STATE(705)] = 35802, + [SMALL_STATE(706)] = 35830, + [SMALL_STATE(707)] = 35858, + [SMALL_STATE(708)] = 35886, + [SMALL_STATE(709)] = 35914, + [SMALL_STATE(710)] = 35942, + [SMALL_STATE(711)] = 35970, + [SMALL_STATE(712)] = 35998, + [SMALL_STATE(713)] = 36026, + [SMALL_STATE(714)] = 36054, + [SMALL_STATE(715)] = 36082, + [SMALL_STATE(716)] = 36110, + [SMALL_STATE(717)] = 36138, + [SMALL_STATE(718)] = 36166, + [SMALL_STATE(719)] = 36194, + [SMALL_STATE(720)] = 36224, + [SMALL_STATE(721)] = 36254, + [SMALL_STATE(722)] = 36282, + [SMALL_STATE(723)] = 36310, + [SMALL_STATE(724)] = 36338, + [SMALL_STATE(725)] = 36366, + [SMALL_STATE(726)] = 36398, + [SMALL_STATE(727)] = 36430, + [SMALL_STATE(728)] = 36458, + [SMALL_STATE(729)] = 36486, + [SMALL_STATE(730)] = 36516, + [SMALL_STATE(731)] = 36548, + [SMALL_STATE(732)] = 36576, + [SMALL_STATE(733)] = 36606, + [SMALL_STATE(734)] = 36636, + [SMALL_STATE(735)] = 36666, + [SMALL_STATE(736)] = 36694, + [SMALL_STATE(737)] = 36726, + [SMALL_STATE(738)] = 36754, + [SMALL_STATE(739)] = 36782, + [SMALL_STATE(740)] = 36810, + [SMALL_STATE(741)] = 36838, + [SMALL_STATE(742)] = 36863, + [SMALL_STATE(743)] = 36888, + [SMALL_STATE(744)] = 36911, + [SMALL_STATE(745)] = 36936, + [SMALL_STATE(746)] = 36963, + [SMALL_STATE(747)] = 36988, + [SMALL_STATE(748)] = 37017, + [SMALL_STATE(749)] = 37042, + [SMALL_STATE(750)] = 37067, + [SMALL_STATE(751)] = 37090, + [SMALL_STATE(752)] = 37115, + [SMALL_STATE(753)] = 37140, + [SMALL_STATE(754)] = 37165, + [SMALL_STATE(755)] = 37190, + [SMALL_STATE(756)] = 37215, + [SMALL_STATE(757)] = 37240, + [SMALL_STATE(758)] = 37275, + [SMALL_STATE(759)] = 37300, + [SMALL_STATE(760)] = 37325, + [SMALL_STATE(761)] = 37350, + [SMALL_STATE(762)] = 37375, + [SMALL_STATE(763)] = 37400, + [SMALL_STATE(764)] = 37425, + [SMALL_STATE(765)] = 37448, + [SMALL_STATE(766)] = 37473, + [SMALL_STATE(767)] = 37498, + [SMALL_STATE(768)] = 37523, + [SMALL_STATE(769)] = 37548, + [SMALL_STATE(770)] = 37573, + [SMALL_STATE(771)] = 37598, + [SMALL_STATE(772)] = 37623, + [SMALL_STATE(773)] = 37648, + [SMALL_STATE(774)] = 37673, + [SMALL_STATE(775)] = 37698, + [SMALL_STATE(776)] = 37723, + [SMALL_STATE(777)] = 37748, + [SMALL_STATE(778)] = 37773, + [SMALL_STATE(779)] = 37798, + [SMALL_STATE(780)] = 37821, + [SMALL_STATE(781)] = 37846, + [SMALL_STATE(782)] = 37871, + [SMALL_STATE(783)] = 37896, + [SMALL_STATE(784)] = 37921, + [SMALL_STATE(785)] = 37946, + [SMALL_STATE(786)] = 37971, + [SMALL_STATE(787)] = 37996, + [SMALL_STATE(788)] = 38021, + [SMALL_STATE(789)] = 38048, + [SMALL_STATE(790)] = 38073, + [SMALL_STATE(791)] = 38098, + [SMALL_STATE(792)] = 38123, + [SMALL_STATE(793)] = 38148, + [SMALL_STATE(794)] = 38173, + [SMALL_STATE(795)] = 38202, + [SMALL_STATE(796)] = 38227, + [SMALL_STATE(797)] = 38252, + [SMALL_STATE(798)] = 38277, + [SMALL_STATE(799)] = 38302, + [SMALL_STATE(800)] = 38329, + [SMALL_STATE(801)] = 38354, + [SMALL_STATE(802)] = 38375, + [SMALL_STATE(803)] = 38402, + [SMALL_STATE(804)] = 38427, + [SMALL_STATE(805)] = 38454, + [SMALL_STATE(806)] = 38474, + [SMALL_STATE(807)] = 38496, + [SMALL_STATE(808)] = 38514, + [SMALL_STATE(809)] = 38536, + [SMALL_STATE(810)] = 38556, + [SMALL_STATE(811)] = 38578, + [SMALL_STATE(812)] = 38607, + [SMALL_STATE(813)] = 38626, + [SMALL_STATE(814)] = 38645, + [SMALL_STATE(815)] = 38674, + [SMALL_STATE(816)] = 38693, + [SMALL_STATE(817)] = 38722, + [SMALL_STATE(818)] = 38741, + [SMALL_STATE(819)] = 38760, + [SMALL_STATE(820)] = 38779, + [SMALL_STATE(821)] = 38808, + [SMALL_STATE(822)] = 38837, + [SMALL_STATE(823)] = 38853, + [SMALL_STATE(824)] = 38869, + [SMALL_STATE(825)] = 38901, + [SMALL_STATE(826)] = 38917, + [SMALL_STATE(827)] = 38949, + [SMALL_STATE(828)] = 38965, + [SMALL_STATE(829)] = 38997, + [SMALL_STATE(830)] = 39013, + [SMALL_STATE(831)] = 39045, + [SMALL_STATE(832)] = 39063, + [SMALL_STATE(833)] = 39090, + [SMALL_STATE(834)] = 39117, + [SMALL_STATE(835)] = 39144, + [SMALL_STATE(836)] = 39173, + [SMALL_STATE(837)] = 39204, + [SMALL_STATE(838)] = 39233, + [SMALL_STATE(839)] = 39260, + [SMALL_STATE(840)] = 39287, + [SMALL_STATE(841)] = 39312, + [SMALL_STATE(842)] = 39339, + [SMALL_STATE(843)] = 39366, + [SMALL_STATE(844)] = 39397, + [SMALL_STATE(845)] = 39428, + [SMALL_STATE(846)] = 39455, + [SMALL_STATE(847)] = 39482, + [SMALL_STATE(848)] = 39498, + [SMALL_STATE(849)] = 39514, + [SMALL_STATE(850)] = 39530, + [SMALL_STATE(851)] = 39546, + [SMALL_STATE(852)] = 39562, + [SMALL_STATE(853)] = 39578, + [SMALL_STATE(854)] = 39594, + [SMALL_STATE(855)] = 39610, + [SMALL_STATE(856)] = 39626, + [SMALL_STATE(857)] = 39642, + [SMALL_STATE(858)] = 39658, + [SMALL_STATE(859)] = 39674, + [SMALL_STATE(860)] = 39690, + [SMALL_STATE(861)] = 39706, + [SMALL_STATE(862)] = 39722, + [SMALL_STATE(863)] = 39744, + [SMALL_STATE(864)] = 39770, + [SMALL_STATE(865)] = 39794, + [SMALL_STATE(866)] = 39810, + [SMALL_STATE(867)] = 39826, + [SMALL_STATE(868)] = 39842, + [SMALL_STATE(869)] = 39858, + [SMALL_STATE(870)] = 39874, + [SMALL_STATE(871)] = 39896, + [SMALL_STATE(872)] = 39912, + [SMALL_STATE(873)] = 39938, + [SMALL_STATE(874)] = 39964, + [SMALL_STATE(875)] = 39990, + [SMALL_STATE(876)] = 40006, + [SMALL_STATE(877)] = 40034, + [SMALL_STATE(878)] = 40050, + [SMALL_STATE(879)] = 40066, + [SMALL_STATE(880)] = 40082, + [SMALL_STATE(881)] = 40098, + [SMALL_STATE(882)] = 40114, + [SMALL_STATE(883)] = 40130, + [SMALL_STATE(884)] = 40146, + [SMALL_STATE(885)] = 40172, + [SMALL_STATE(886)] = 40198, + [SMALL_STATE(887)] = 40214, + [SMALL_STATE(888)] = 40230, + [SMALL_STATE(889)] = 40246, + [SMALL_STATE(890)] = 40262, + [SMALL_STATE(891)] = 40278, + [SMALL_STATE(892)] = 40294, + [SMALL_STATE(893)] = 40310, + [SMALL_STATE(894)] = 40326, + [SMALL_STATE(895)] = 40342, + [SMALL_STATE(896)] = 40367, + [SMALL_STATE(897)] = 40392, + [SMALL_STATE(898)] = 40405, + [SMALL_STATE(899)] = 40430, + [SMALL_STATE(900)] = 40455, + [SMALL_STATE(901)] = 40476, + [SMALL_STATE(902)] = 40501, + [SMALL_STATE(903)] = 40526, + [SMALL_STATE(904)] = 40551, + [SMALL_STATE(905)] = 40572, + [SMALL_STATE(906)] = 40597, + [SMALL_STATE(907)] = 40622, + [SMALL_STATE(908)] = 40647, + [SMALL_STATE(909)] = 40660, + [SMALL_STATE(910)] = 40673, + [SMALL_STATE(911)] = 40686, + [SMALL_STATE(912)] = 40711, + [SMALL_STATE(913)] = 40724, + [SMALL_STATE(914)] = 40749, + [SMALL_STATE(915)] = 40774, + [SMALL_STATE(916)] = 40799, + [SMALL_STATE(917)] = 40820, + [SMALL_STATE(918)] = 40845, + [SMALL_STATE(919)] = 40870, + [SMALL_STATE(920)] = 40893, + [SMALL_STATE(921)] = 40918, + [SMALL_STATE(922)] = 40933, + [SMALL_STATE(923)] = 40958, + [SMALL_STATE(924)] = 40983, + [SMALL_STATE(925)] = 41008, + [SMALL_STATE(926)] = 41029, + [SMALL_STATE(927)] = 41054, + [SMALL_STATE(928)] = 41072, + [SMALL_STATE(929)] = 41088, + [SMALL_STATE(930)] = 41102, + [SMALL_STATE(931)] = 41122, + [SMALL_STATE(932)] = 41140, + [SMALL_STATE(933)] = 41156, + [SMALL_STATE(934)] = 41176, + [SMALL_STATE(935)] = 41194, + [SMALL_STATE(936)] = 41206, + [SMALL_STATE(937)] = 41228, + [SMALL_STATE(938)] = 41242, + [SMALL_STATE(939)] = 41256, + [SMALL_STATE(940)] = 41276, + [SMALL_STATE(941)] = 41298, + [SMALL_STATE(942)] = 41320, + [SMALL_STATE(943)] = 41342, + [SMALL_STATE(944)] = 41356, + [SMALL_STATE(945)] = 41372, + [SMALL_STATE(946)] = 41388, + [SMALL_STATE(947)] = 41406, + [SMALL_STATE(948)] = 41428, + [SMALL_STATE(949)] = 41448, + [SMALL_STATE(950)] = 41468, + [SMALL_STATE(951)] = 41488, + [SMALL_STATE(952)] = 41510, + [SMALL_STATE(953)] = 41532, + [SMALL_STATE(954)] = 41552, + [SMALL_STATE(955)] = 41564, + [SMALL_STATE(956)] = 41586, + [SMALL_STATE(957)] = 41600, + [SMALL_STATE(958)] = 41618, + [SMALL_STATE(959)] = 41632, + [SMALL_STATE(960)] = 41654, + [SMALL_STATE(961)] = 41676, + [SMALL_STATE(962)] = 41698, + [SMALL_STATE(963)] = 41712, + [SMALL_STATE(964)] = 41730, + [SMALL_STATE(965)] = 41752, + [SMALL_STATE(966)] = 41769, + [SMALL_STATE(967)] = 41786, + [SMALL_STATE(968)] = 41805, + [SMALL_STATE(969)] = 41824, + [SMALL_STATE(970)] = 41839, + [SMALL_STATE(971)] = 41858, + [SMALL_STATE(972)] = 41877, + [SMALL_STATE(973)] = 41894, + [SMALL_STATE(974)] = 41913, + [SMALL_STATE(975)] = 41932, + [SMALL_STATE(976)] = 41949, + [SMALL_STATE(977)] = 41968, + [SMALL_STATE(978)] = 41983, + [SMALL_STATE(979)] = 42002, + [SMALL_STATE(980)] = 42017, + [SMALL_STATE(981)] = 42036, + [SMALL_STATE(982)] = 42055, + [SMALL_STATE(983)] = 42074, + [SMALL_STATE(984)] = 42093, + [SMALL_STATE(985)] = 42112, + [SMALL_STATE(986)] = 42127, + [SMALL_STATE(987)] = 42146, + [SMALL_STATE(988)] = 42165, + [SMALL_STATE(989)] = 42178, + [SMALL_STATE(990)] = 42197, + [SMALL_STATE(991)] = 42216, + [SMALL_STATE(992)] = 42235, + [SMALL_STATE(993)] = 42254, + [SMALL_STATE(994)] = 42269, + [SMALL_STATE(995)] = 42284, + [SMALL_STATE(996)] = 42303, + [SMALL_STATE(997)] = 42322, + [SMALL_STATE(998)] = 42341, + [SMALL_STATE(999)] = 42354, + [SMALL_STATE(1000)] = 42373, + [SMALL_STATE(1001)] = 42392, + [SMALL_STATE(1002)] = 42411, + [SMALL_STATE(1003)] = 42430, + [SMALL_STATE(1004)] = 42449, + [SMALL_STATE(1005)] = 42466, + [SMALL_STATE(1006)] = 42477, + [SMALL_STATE(1007)] = 42494, + [SMALL_STATE(1008)] = 42513, + [SMALL_STATE(1009)] = 42532, + [SMALL_STATE(1010)] = 42551, + [SMALL_STATE(1011)] = 42564, + [SMALL_STATE(1012)] = 42583, + [SMALL_STATE(1013)] = 42602, + [SMALL_STATE(1014)] = 42613, + [SMALL_STATE(1015)] = 42628, + [SMALL_STATE(1016)] = 42643, + [SMALL_STATE(1017)] = 42662, + [SMALL_STATE(1018)] = 42677, + [SMALL_STATE(1019)] = 42696, + [SMALL_STATE(1020)] = 42715, + [SMALL_STATE(1021)] = 42732, + [SMALL_STATE(1022)] = 42751, + [SMALL_STATE(1023)] = 42770, + [SMALL_STATE(1024)] = 42789, + [SMALL_STATE(1025)] = 42808, + [SMALL_STATE(1026)] = 42827, + [SMALL_STATE(1027)] = 42846, + [SMALL_STATE(1028)] = 42857, + [SMALL_STATE(1029)] = 42876, + [SMALL_STATE(1030)] = 42895, + [SMALL_STATE(1031)] = 42914, + [SMALL_STATE(1032)] = 42933, + [SMALL_STATE(1033)] = 42952, + [SMALL_STATE(1034)] = 42971, + [SMALL_STATE(1035)] = 42990, + [SMALL_STATE(1036)] = 43005, + [SMALL_STATE(1037)] = 43024, + [SMALL_STATE(1038)] = 43041, + [SMALL_STATE(1039)] = 43060, + [SMALL_STATE(1040)] = 43079, + [SMALL_STATE(1041)] = 43098, + [SMALL_STATE(1042)] = 43109, + [SMALL_STATE(1043)] = 43122, + [SMALL_STATE(1044)] = 43141, + [SMALL_STATE(1045)] = 43160, + [SMALL_STATE(1046)] = 43179, + [SMALL_STATE(1047)] = 43196, + [SMALL_STATE(1048)] = 43215, + [SMALL_STATE(1049)] = 43230, + [SMALL_STATE(1050)] = 43241, + [SMALL_STATE(1051)] = 43252, + [SMALL_STATE(1052)] = 43271, + [SMALL_STATE(1053)] = 43288, + [SMALL_STATE(1054)] = 43307, + [SMALL_STATE(1055)] = 43323, + [SMALL_STATE(1056)] = 43337, + [SMALL_STATE(1057)] = 43351, + [SMALL_STATE(1058)] = 43365, + [SMALL_STATE(1059)] = 43379, + [SMALL_STATE(1060)] = 43391, + [SMALL_STATE(1061)] = 43407, + [SMALL_STATE(1062)] = 43419, + [SMALL_STATE(1063)] = 43435, + [SMALL_STATE(1064)] = 43449, + [SMALL_STATE(1065)] = 43459, + [SMALL_STATE(1066)] = 43475, + [SMALL_STATE(1067)] = 43491, + [SMALL_STATE(1068)] = 43507, + [SMALL_STATE(1069)] = 43521, + [SMALL_STATE(1070)] = 43531, + [SMALL_STATE(1071)] = 43541, + [SMALL_STATE(1072)] = 43555, + [SMALL_STATE(1073)] = 43571, + [SMALL_STATE(1074)] = 43585, + [SMALL_STATE(1075)] = 43599, + [SMALL_STATE(1076)] = 43611, + [SMALL_STATE(1077)] = 43627, + [SMALL_STATE(1078)] = 43641, + [SMALL_STATE(1079)] = 43657, + [SMALL_STATE(1080)] = 43673, + [SMALL_STATE(1081)] = 43689, + [SMALL_STATE(1082)] = 43705, + [SMALL_STATE(1083)] = 43719, + [SMALL_STATE(1084)] = 43733, + [SMALL_STATE(1085)] = 43743, + [SMALL_STATE(1086)] = 43759, + [SMALL_STATE(1087)] = 43775, + [SMALL_STATE(1088)] = 43787, + [SMALL_STATE(1089)] = 43803, + [SMALL_STATE(1090)] = 43817, + [SMALL_STATE(1091)] = 43827, + [SMALL_STATE(1092)] = 43837, + [SMALL_STATE(1093)] = 43853, + [SMALL_STATE(1094)] = 43869, + [SMALL_STATE(1095)] = 43883, + [SMALL_STATE(1096)] = 43899, + [SMALL_STATE(1097)] = 43915, + [SMALL_STATE(1098)] = 43931, + [SMALL_STATE(1099)] = 43945, + [SMALL_STATE(1100)] = 43959, + [SMALL_STATE(1101)] = 43973, + [SMALL_STATE(1102)] = 43989, + [SMALL_STATE(1103)] = 44005, + [SMALL_STATE(1104)] = 44021, + [SMALL_STATE(1105)] = 44031, + [SMALL_STATE(1106)] = 44047, + [SMALL_STATE(1107)] = 44063, + [SMALL_STATE(1108)] = 44079, + [SMALL_STATE(1109)] = 44093, + [SMALL_STATE(1110)] = 44107, + [SMALL_STATE(1111)] = 44117, + [SMALL_STATE(1112)] = 44133, + [SMALL_STATE(1113)] = 44149, + [SMALL_STATE(1114)] = 44165, + [SMALL_STATE(1115)] = 44181, + [SMALL_STATE(1116)] = 44193, + [SMALL_STATE(1117)] = 44209, + [SMALL_STATE(1118)] = 44221, + [SMALL_STATE(1119)] = 44235, + [SMALL_STATE(1120)] = 44251, + [SMALL_STATE(1121)] = 44265, + [SMALL_STATE(1122)] = 44279, + [SMALL_STATE(1123)] = 44289, + [SMALL_STATE(1124)] = 44301, + [SMALL_STATE(1125)] = 44317, + [SMALL_STATE(1126)] = 44333, + [SMALL_STATE(1127)] = 44347, + [SMALL_STATE(1128)] = 44361, + [SMALL_STATE(1129)] = 44373, + [SMALL_STATE(1130)] = 44389, + [SMALL_STATE(1131)] = 44403, + [SMALL_STATE(1132)] = 44419, + [SMALL_STATE(1133)] = 44435, + [SMALL_STATE(1134)] = 44451, + [SMALL_STATE(1135)] = 44467, + [SMALL_STATE(1136)] = 44481, + [SMALL_STATE(1137)] = 44493, + [SMALL_STATE(1138)] = 44509, + [SMALL_STATE(1139)] = 44519, + [SMALL_STATE(1140)] = 44535, + [SMALL_STATE(1141)] = 44551, + [SMALL_STATE(1142)] = 44565, + [SMALL_STATE(1143)] = 44577, + [SMALL_STATE(1144)] = 44593, + [SMALL_STATE(1145)] = 44603, + [SMALL_STATE(1146)] = 44616, + [SMALL_STATE(1147)] = 44629, + [SMALL_STATE(1148)] = 44638, + [SMALL_STATE(1149)] = 44647, + [SMALL_STATE(1150)] = 44656, + [SMALL_STATE(1151)] = 44669, + [SMALL_STATE(1152)] = 44682, + [SMALL_STATE(1153)] = 44695, + [SMALL_STATE(1154)] = 44708, + [SMALL_STATE(1155)] = 44719, + [SMALL_STATE(1156)] = 44732, + [SMALL_STATE(1157)] = 44745, + [SMALL_STATE(1158)] = 44754, + [SMALL_STATE(1159)] = 44767, + [SMALL_STATE(1160)] = 44780, + [SMALL_STATE(1161)] = 44793, + [SMALL_STATE(1162)] = 44806, + [SMALL_STATE(1163)] = 44819, + [SMALL_STATE(1164)] = 44832, + [SMALL_STATE(1165)] = 44845, + [SMALL_STATE(1166)] = 44854, + [SMALL_STATE(1167)] = 44867, + [SMALL_STATE(1168)] = 44880, + [SMALL_STATE(1169)] = 44893, + [SMALL_STATE(1170)] = 44902, + [SMALL_STATE(1171)] = 44915, + [SMALL_STATE(1172)] = 44928, + [SMALL_STATE(1173)] = 44937, + [SMALL_STATE(1174)] = 44946, + [SMALL_STATE(1175)] = 44959, + [SMALL_STATE(1176)] = 44968, + [SMALL_STATE(1177)] = 44981, + [SMALL_STATE(1178)] = 44994, + [SMALL_STATE(1179)] = 45003, + [SMALL_STATE(1180)] = 45016, + [SMALL_STATE(1181)] = 45025, + [SMALL_STATE(1182)] = 45034, + [SMALL_STATE(1183)] = 45047, + [SMALL_STATE(1184)] = 45060, + [SMALL_STATE(1185)] = 45073, + [SMALL_STATE(1186)] = 45082, + [SMALL_STATE(1187)] = 45091, + [SMALL_STATE(1188)] = 45104, + [SMALL_STATE(1189)] = 45117, + [SMALL_STATE(1190)] = 45130, + [SMALL_STATE(1191)] = 45141, + [SMALL_STATE(1192)] = 45154, + [SMALL_STATE(1193)] = 45167, + [SMALL_STATE(1194)] = 45180, + [SMALL_STATE(1195)] = 45193, + [SMALL_STATE(1196)] = 45204, + [SMALL_STATE(1197)] = 45217, + [SMALL_STATE(1198)] = 45230, + [SMALL_STATE(1199)] = 45243, + [SMALL_STATE(1200)] = 45256, + [SMALL_STATE(1201)] = 45267, + [SMALL_STATE(1202)] = 45276, + [SMALL_STATE(1203)] = 45289, + [SMALL_STATE(1204)] = 45302, + [SMALL_STATE(1205)] = 45315, + [SMALL_STATE(1206)] = 45328, + [SMALL_STATE(1207)] = 45341, + [SMALL_STATE(1208)] = 45350, + [SMALL_STATE(1209)] = 45363, + [SMALL_STATE(1210)] = 45376, + [SMALL_STATE(1211)] = 45389, + [SMALL_STATE(1212)] = 45402, + [SMALL_STATE(1213)] = 45415, + [SMALL_STATE(1214)] = 45428, + [SMALL_STATE(1215)] = 45441, + [SMALL_STATE(1216)] = 45454, + [SMALL_STATE(1217)] = 45467, + [SMALL_STATE(1218)] = 45480, + [SMALL_STATE(1219)] = 45493, + [SMALL_STATE(1220)] = 45506, + [SMALL_STATE(1221)] = 45519, + [SMALL_STATE(1222)] = 45532, + [SMALL_STATE(1223)] = 45545, + [SMALL_STATE(1224)] = 45556, + [SMALL_STATE(1225)] = 45569, + [SMALL_STATE(1226)] = 45582, + [SMALL_STATE(1227)] = 45591, + [SMALL_STATE(1228)] = 45602, + [SMALL_STATE(1229)] = 45615, + [SMALL_STATE(1230)] = 45628, + [SMALL_STATE(1231)] = 45637, + [SMALL_STATE(1232)] = 45650, + [SMALL_STATE(1233)] = 45659, + [SMALL_STATE(1234)] = 45672, + [SMALL_STATE(1235)] = 45685, + [SMALL_STATE(1236)] = 45698, + [SMALL_STATE(1237)] = 45707, + [SMALL_STATE(1238)] = 45720, + [SMALL_STATE(1239)] = 45733, + [SMALL_STATE(1240)] = 45746, + [SMALL_STATE(1241)] = 45759, + [SMALL_STATE(1242)] = 45772, + [SMALL_STATE(1243)] = 45785, + [SMALL_STATE(1244)] = 45794, + [SMALL_STATE(1245)] = 45807, + [SMALL_STATE(1246)] = 45820, + [SMALL_STATE(1247)] = 45829, + [SMALL_STATE(1248)] = 45842, + [SMALL_STATE(1249)] = 45851, + [SMALL_STATE(1250)] = 45864, + [SMALL_STATE(1251)] = 45873, + [SMALL_STATE(1252)] = 45886, + [SMALL_STATE(1253)] = 45895, + [SMALL_STATE(1254)] = 45906, + [SMALL_STATE(1255)] = 45919, + [SMALL_STATE(1256)] = 45932, + [SMALL_STATE(1257)] = 45945, + [SMALL_STATE(1258)] = 45958, + [SMALL_STATE(1259)] = 45971, + [SMALL_STATE(1260)] = 45980, + [SMALL_STATE(1261)] = 45993, + [SMALL_STATE(1262)] = 46002, + [SMALL_STATE(1263)] = 46015, + [SMALL_STATE(1264)] = 46028, + [SMALL_STATE(1265)] = 46041, + [SMALL_STATE(1266)] = 46054, + [SMALL_STATE(1267)] = 46063, + [SMALL_STATE(1268)] = 46076, + [SMALL_STATE(1269)] = 46085, + [SMALL_STATE(1270)] = 46094, + [SMALL_STATE(1271)] = 46103, + [SMALL_STATE(1272)] = 46112, + [SMALL_STATE(1273)] = 46121, + [SMALL_STATE(1274)] = 46130, + [SMALL_STATE(1275)] = 46143, + [SMALL_STATE(1276)] = 46152, + [SMALL_STATE(1277)] = 46165, + [SMALL_STATE(1278)] = 46174, + [SMALL_STATE(1279)] = 46183, + [SMALL_STATE(1280)] = 46192, + [SMALL_STATE(1281)] = 46201, + [SMALL_STATE(1282)] = 46214, + [SMALL_STATE(1283)] = 46227, + [SMALL_STATE(1284)] = 46240, + [SMALL_STATE(1285)] = 46253, + [SMALL_STATE(1286)] = 46266, + [SMALL_STATE(1287)] = 46275, + [SMALL_STATE(1288)] = 46288, + [SMALL_STATE(1289)] = 46297, + [SMALL_STATE(1290)] = 46310, + [SMALL_STATE(1291)] = 46323, + [SMALL_STATE(1292)] = 46336, + [SMALL_STATE(1293)] = 46345, + [SMALL_STATE(1294)] = 46358, + [SMALL_STATE(1295)] = 46371, + [SMALL_STATE(1296)] = 46384, + [SMALL_STATE(1297)] = 46397, + [SMALL_STATE(1298)] = 46410, + [SMALL_STATE(1299)] = 46423, + [SMALL_STATE(1300)] = 46436, + [SMALL_STATE(1301)] = 46445, + [SMALL_STATE(1302)] = 46458, + [SMALL_STATE(1303)] = 46471, + [SMALL_STATE(1304)] = 46480, + [SMALL_STATE(1305)] = 46493, + [SMALL_STATE(1306)] = 46502, + [SMALL_STATE(1307)] = 46511, + [SMALL_STATE(1308)] = 46520, + [SMALL_STATE(1309)] = 46533, + [SMALL_STATE(1310)] = 46546, + [SMALL_STATE(1311)] = 46559, + [SMALL_STATE(1312)] = 46572, + [SMALL_STATE(1313)] = 46581, + [SMALL_STATE(1314)] = 46592, + [SMALL_STATE(1315)] = 46605, + [SMALL_STATE(1316)] = 46618, + [SMALL_STATE(1317)] = 46631, + [SMALL_STATE(1318)] = 46640, + [SMALL_STATE(1319)] = 46653, + [SMALL_STATE(1320)] = 46666, + [SMALL_STATE(1321)] = 46679, + [SMALL_STATE(1322)] = 46692, + [SMALL_STATE(1323)] = 46701, + [SMALL_STATE(1324)] = 46712, + [SMALL_STATE(1325)] = 46721, + [SMALL_STATE(1326)] = 46734, + [SMALL_STATE(1327)] = 46747, + [SMALL_STATE(1328)] = 46760, + [SMALL_STATE(1329)] = 46773, + [SMALL_STATE(1330)] = 46784, + [SMALL_STATE(1331)] = 46793, + [SMALL_STATE(1332)] = 46804, + [SMALL_STATE(1333)] = 46817, + [SMALL_STATE(1334)] = 46826, + [SMALL_STATE(1335)] = 46839, + [SMALL_STATE(1336)] = 46848, + [SMALL_STATE(1337)] = 46861, + [SMALL_STATE(1338)] = 46870, + [SMALL_STATE(1339)] = 46879, + [SMALL_STATE(1340)] = 46892, + [SMALL_STATE(1341)] = 46902, + [SMALL_STATE(1342)] = 46910, + [SMALL_STATE(1343)] = 46920, + [SMALL_STATE(1344)] = 46930, + [SMALL_STATE(1345)] = 46940, + [SMALL_STATE(1346)] = 46950, + [SMALL_STATE(1347)] = 46960, + [SMALL_STATE(1348)] = 46970, + [SMALL_STATE(1349)] = 46980, + [SMALL_STATE(1350)] = 46990, + [SMALL_STATE(1351)] = 47000, + [SMALL_STATE(1352)] = 47008, + [SMALL_STATE(1353)] = 47018, + [SMALL_STATE(1354)] = 47028, + [SMALL_STATE(1355)] = 47036, + [SMALL_STATE(1356)] = 47046, + [SMALL_STATE(1357)] = 47054, + [SMALL_STATE(1358)] = 47064, + [SMALL_STATE(1359)] = 47072, + [SMALL_STATE(1360)] = 47080, + [SMALL_STATE(1361)] = 47090, + [SMALL_STATE(1362)] = 47098, + [SMALL_STATE(1363)] = 47108, + [SMALL_STATE(1364)] = 47116, + [SMALL_STATE(1365)] = 47126, + [SMALL_STATE(1366)] = 47136, + [SMALL_STATE(1367)] = 47144, + [SMALL_STATE(1368)] = 47152, + [SMALL_STATE(1369)] = 47162, + [SMALL_STATE(1370)] = 47170, + [SMALL_STATE(1371)] = 47180, + [SMALL_STATE(1372)] = 47188, + [SMALL_STATE(1373)] = 47196, + [SMALL_STATE(1374)] = 47204, + [SMALL_STATE(1375)] = 47212, + [SMALL_STATE(1376)] = 47220, + [SMALL_STATE(1377)] = 47230, + [SMALL_STATE(1378)] = 47238, + [SMALL_STATE(1379)] = 47248, + [SMALL_STATE(1380)] = 47256, + [SMALL_STATE(1381)] = 47266, + [SMALL_STATE(1382)] = 47276, + [SMALL_STATE(1383)] = 47284, + [SMALL_STATE(1384)] = 47294, + [SMALL_STATE(1385)] = 47304, + [SMALL_STATE(1386)] = 47314, + [SMALL_STATE(1387)] = 47322, + [SMALL_STATE(1388)] = 47330, + [SMALL_STATE(1389)] = 47338, + [SMALL_STATE(1390)] = 47346, + [SMALL_STATE(1391)] = 47356, + [SMALL_STATE(1392)] = 47364, + [SMALL_STATE(1393)] = 47374, + [SMALL_STATE(1394)] = 47384, + [SMALL_STATE(1395)] = 47392, + [SMALL_STATE(1396)] = 47400, + [SMALL_STATE(1397)] = 47410, + [SMALL_STATE(1398)] = 47420, + [SMALL_STATE(1399)] = 47430, + [SMALL_STATE(1400)] = 47440, + [SMALL_STATE(1401)] = 47450, + [SMALL_STATE(1402)] = 47460, + [SMALL_STATE(1403)] = 47468, + [SMALL_STATE(1404)] = 47476, + [SMALL_STATE(1405)] = 47484, + [SMALL_STATE(1406)] = 47492, + [SMALL_STATE(1407)] = 47500, + [SMALL_STATE(1408)] = 47508, + [SMALL_STATE(1409)] = 47518, + [SMALL_STATE(1410)] = 47526, + [SMALL_STATE(1411)] = 47534, + [SMALL_STATE(1412)] = 47544, + [SMALL_STATE(1413)] = 47554, + [SMALL_STATE(1414)] = 47564, + [SMALL_STATE(1415)] = 47572, + [SMALL_STATE(1416)] = 47582, + [SMALL_STATE(1417)] = 47590, + [SMALL_STATE(1418)] = 47598, + [SMALL_STATE(1419)] = 47606, + [SMALL_STATE(1420)] = 47616, + [SMALL_STATE(1421)] = 47626, + [SMALL_STATE(1422)] = 47636, + [SMALL_STATE(1423)] = 47646, + [SMALL_STATE(1424)] = 47656, + [SMALL_STATE(1425)] = 47666, + [SMALL_STATE(1426)] = 47674, + [SMALL_STATE(1427)] = 47682, + [SMALL_STATE(1428)] = 47690, + [SMALL_STATE(1429)] = 47698, + [SMALL_STATE(1430)] = 47706, + [SMALL_STATE(1431)] = 47716, + [SMALL_STATE(1432)] = 47724, + [SMALL_STATE(1433)] = 47734, + [SMALL_STATE(1434)] = 47744, + [SMALL_STATE(1435)] = 47752, + [SMALL_STATE(1436)] = 47762, + [SMALL_STATE(1437)] = 47770, + [SMALL_STATE(1438)] = 47780, + [SMALL_STATE(1439)] = 47790, + [SMALL_STATE(1440)] = 47800, + [SMALL_STATE(1441)] = 47808, + [SMALL_STATE(1442)] = 47818, + [SMALL_STATE(1443)] = 47828, + [SMALL_STATE(1444)] = 47836, + [SMALL_STATE(1445)] = 47844, + [SMALL_STATE(1446)] = 47852, + [SMALL_STATE(1447)] = 47860, + [SMALL_STATE(1448)] = 47870, + [SMALL_STATE(1449)] = 47880, + [SMALL_STATE(1450)] = 47888, + [SMALL_STATE(1451)] = 47896, + [SMALL_STATE(1452)] = 47906, + [SMALL_STATE(1453)] = 47916, + [SMALL_STATE(1454)] = 47924, + [SMALL_STATE(1455)] = 47932, + [SMALL_STATE(1456)] = 47942, + [SMALL_STATE(1457)] = 47952, + [SMALL_STATE(1458)] = 47962, + [SMALL_STATE(1459)] = 47970, + [SMALL_STATE(1460)] = 47978, + [SMALL_STATE(1461)] = 47986, + [SMALL_STATE(1462)] = 47994, + [SMALL_STATE(1463)] = 48002, + [SMALL_STATE(1464)] = 48012, + [SMALL_STATE(1465)] = 48020, + [SMALL_STATE(1466)] = 48028, + [SMALL_STATE(1467)] = 48036, + [SMALL_STATE(1468)] = 48044, + [SMALL_STATE(1469)] = 48052, + [SMALL_STATE(1470)] = 48062, + [SMALL_STATE(1471)] = 48072, + [SMALL_STATE(1472)] = 48080, + [SMALL_STATE(1473)] = 48090, + [SMALL_STATE(1474)] = 48098, + [SMALL_STATE(1475)] = 48108, + [SMALL_STATE(1476)] = 48116, + [SMALL_STATE(1477)] = 48126, + [SMALL_STATE(1478)] = 48136, + [SMALL_STATE(1479)] = 48144, + [SMALL_STATE(1480)] = 48154, + [SMALL_STATE(1481)] = 48164, + [SMALL_STATE(1482)] = 48172, + [SMALL_STATE(1483)] = 48182, + [SMALL_STATE(1484)] = 48192, + [SMALL_STATE(1485)] = 48202, + [SMALL_STATE(1486)] = 48210, + [SMALL_STATE(1487)] = 48220, + [SMALL_STATE(1488)] = 48228, + [SMALL_STATE(1489)] = 48236, + [SMALL_STATE(1490)] = 48244, + [SMALL_STATE(1491)] = 48251, + [SMALL_STATE(1492)] = 48258, + [SMALL_STATE(1493)] = 48265, + [SMALL_STATE(1494)] = 48272, + [SMALL_STATE(1495)] = 48279, + [SMALL_STATE(1496)] = 48286, + [SMALL_STATE(1497)] = 48293, + [SMALL_STATE(1498)] = 48300, + [SMALL_STATE(1499)] = 48307, + [SMALL_STATE(1500)] = 48314, + [SMALL_STATE(1501)] = 48321, + [SMALL_STATE(1502)] = 48328, + [SMALL_STATE(1503)] = 48335, + [SMALL_STATE(1504)] = 48342, + [SMALL_STATE(1505)] = 48349, + [SMALL_STATE(1506)] = 48356, + [SMALL_STATE(1507)] = 48363, + [SMALL_STATE(1508)] = 48370, + [SMALL_STATE(1509)] = 48377, + [SMALL_STATE(1510)] = 48384, + [SMALL_STATE(1511)] = 48391, + [SMALL_STATE(1512)] = 48398, + [SMALL_STATE(1513)] = 48405, + [SMALL_STATE(1514)] = 48412, + [SMALL_STATE(1515)] = 48419, + [SMALL_STATE(1516)] = 48426, + [SMALL_STATE(1517)] = 48433, + [SMALL_STATE(1518)] = 48440, + [SMALL_STATE(1519)] = 48447, + [SMALL_STATE(1520)] = 48454, + [SMALL_STATE(1521)] = 48461, + [SMALL_STATE(1522)] = 48468, + [SMALL_STATE(1523)] = 48475, + [SMALL_STATE(1524)] = 48482, + [SMALL_STATE(1525)] = 48489, + [SMALL_STATE(1526)] = 48496, + [SMALL_STATE(1527)] = 48503, + [SMALL_STATE(1528)] = 48510, + [SMALL_STATE(1529)] = 48517, + [SMALL_STATE(1530)] = 48524, + [SMALL_STATE(1531)] = 48531, + [SMALL_STATE(1532)] = 48538, + [SMALL_STATE(1533)] = 48545, + [SMALL_STATE(1534)] = 48552, + [SMALL_STATE(1535)] = 48559, + [SMALL_STATE(1536)] = 48566, + [SMALL_STATE(1537)] = 48573, + [SMALL_STATE(1538)] = 48580, + [SMALL_STATE(1539)] = 48587, + [SMALL_STATE(1540)] = 48594, + [SMALL_STATE(1541)] = 48601, + [SMALL_STATE(1542)] = 48608, + [SMALL_STATE(1543)] = 48615, + [SMALL_STATE(1544)] = 48622, + [SMALL_STATE(1545)] = 48629, + [SMALL_STATE(1546)] = 48636, + [SMALL_STATE(1547)] = 48643, + [SMALL_STATE(1548)] = 48650, + [SMALL_STATE(1549)] = 48657, + [SMALL_STATE(1550)] = 48664, + [SMALL_STATE(1551)] = 48671, + [SMALL_STATE(1552)] = 48678, + [SMALL_STATE(1553)] = 48685, + [SMALL_STATE(1554)] = 48692, + [SMALL_STATE(1555)] = 48699, + [SMALL_STATE(1556)] = 48706, + [SMALL_STATE(1557)] = 48713, + [SMALL_STATE(1558)] = 48720, + [SMALL_STATE(1559)] = 48727, + [SMALL_STATE(1560)] = 48734, + [SMALL_STATE(1561)] = 48741, + [SMALL_STATE(1562)] = 48748, + [SMALL_STATE(1563)] = 48755, + [SMALL_STATE(1564)] = 48762, + [SMALL_STATE(1565)] = 48769, + [SMALL_STATE(1566)] = 48776, + [SMALL_STATE(1567)] = 48783, + [SMALL_STATE(1568)] = 48790, + [SMALL_STATE(1569)] = 48797, + [SMALL_STATE(1570)] = 48804, + [SMALL_STATE(1571)] = 48811, + [SMALL_STATE(1572)] = 48818, + [SMALL_STATE(1573)] = 48825, + [SMALL_STATE(1574)] = 48832, + [SMALL_STATE(1575)] = 48839, + [SMALL_STATE(1576)] = 48846, + [SMALL_STATE(1577)] = 48853, + [SMALL_STATE(1578)] = 48860, + [SMALL_STATE(1579)] = 48867, + [SMALL_STATE(1580)] = 48874, + [SMALL_STATE(1581)] = 48881, + [SMALL_STATE(1582)] = 48888, + [SMALL_STATE(1583)] = 48895, + [SMALL_STATE(1584)] = 48902, + [SMALL_STATE(1585)] = 48909, + [SMALL_STATE(1586)] = 48916, + [SMALL_STATE(1587)] = 48923, + [SMALL_STATE(1588)] = 48930, + [SMALL_STATE(1589)] = 48937, + [SMALL_STATE(1590)] = 48944, + [SMALL_STATE(1591)] = 48951, + [SMALL_STATE(1592)] = 48958, + [SMALL_STATE(1593)] = 48965, + [SMALL_STATE(1594)] = 48972, + [SMALL_STATE(1595)] = 48979, + [SMALL_STATE(1596)] = 48986, + [SMALL_STATE(1597)] = 48993, + [SMALL_STATE(1598)] = 49000, + [SMALL_STATE(1599)] = 49007, + [SMALL_STATE(1600)] = 49014, + [SMALL_STATE(1601)] = 49021, + [SMALL_STATE(1602)] = 49028, + [SMALL_STATE(1603)] = 49035, + [SMALL_STATE(1604)] = 49042, + [SMALL_STATE(1605)] = 49049, + [SMALL_STATE(1606)] = 49056, + [SMALL_STATE(1607)] = 49063, + [SMALL_STATE(1608)] = 49070, + [SMALL_STATE(1609)] = 49077, + [SMALL_STATE(1610)] = 49084, + [SMALL_STATE(1611)] = 49091, + [SMALL_STATE(1612)] = 49098, + [SMALL_STATE(1613)] = 49105, + [SMALL_STATE(1614)] = 49112, + [SMALL_STATE(1615)] = 49119, + [SMALL_STATE(1616)] = 49126, + [SMALL_STATE(1617)] = 49133, + [SMALL_STATE(1618)] = 49140, + [SMALL_STATE(1619)] = 49147, + [SMALL_STATE(1620)] = 49154, + [SMALL_STATE(1621)] = 49161, + [SMALL_STATE(1622)] = 49168, + [SMALL_STATE(1623)] = 49175, + [SMALL_STATE(1624)] = 49182, + [SMALL_STATE(1625)] = 49189, + [SMALL_STATE(1626)] = 49196, + [SMALL_STATE(1627)] = 49203, + [SMALL_STATE(1628)] = 49210, + [SMALL_STATE(1629)] = 49217, + [SMALL_STATE(1630)] = 49224, + [SMALL_STATE(1631)] = 49231, + [SMALL_STATE(1632)] = 49238, + [SMALL_STATE(1633)] = 49245, + [SMALL_STATE(1634)] = 49252, + [SMALL_STATE(1635)] = 49259, + [SMALL_STATE(1636)] = 49266, + [SMALL_STATE(1637)] = 49273, + [SMALL_STATE(1638)] = 49280, + [SMALL_STATE(1639)] = 49287, + [SMALL_STATE(1640)] = 49294, + [SMALL_STATE(1641)] = 49301, + [SMALL_STATE(1642)] = 49308, + [SMALL_STATE(1643)] = 49315, + [SMALL_STATE(1644)] = 49322, + [SMALL_STATE(1645)] = 49329, + [SMALL_STATE(1646)] = 49336, + [SMALL_STATE(1647)] = 49343, + [SMALL_STATE(1648)] = 49350, + [SMALL_STATE(1649)] = 49357, + [SMALL_STATE(1650)] = 49364, + [SMALL_STATE(1651)] = 49371, + [SMALL_STATE(1652)] = 49378, + [SMALL_STATE(1653)] = 49385, + [SMALL_STATE(1654)] = 49392, + [SMALL_STATE(1655)] = 49399, + [SMALL_STATE(1656)] = 49406, + [SMALL_STATE(1657)] = 49413, + [SMALL_STATE(1658)] = 49420, + [SMALL_STATE(1659)] = 49427, + [SMALL_STATE(1660)] = 49434, + [SMALL_STATE(1661)] = 49441, + [SMALL_STATE(1662)] = 49448, + [SMALL_STATE(1663)] = 49455, + [SMALL_STATE(1664)] = 49462, + [SMALL_STATE(1665)] = 49469, + [SMALL_STATE(1666)] = 49476, + [SMALL_STATE(1667)] = 49483, + [SMALL_STATE(1668)] = 49490, + [SMALL_STATE(1669)] = 49497, + [SMALL_STATE(1670)] = 49504, + [SMALL_STATE(1671)] = 49511, + [SMALL_STATE(1672)] = 49518, + [SMALL_STATE(1673)] = 49525, + [SMALL_STATE(1674)] = 49532, + [SMALL_STATE(1675)] = 49539, + [SMALL_STATE(1676)] = 49546, + [SMALL_STATE(1677)] = 49553, + [SMALL_STATE(1678)] = 49560, + [SMALL_STATE(1679)] = 49567, + [SMALL_STATE(1680)] = 49574, + [SMALL_STATE(1681)] = 49581, + [SMALL_STATE(1682)] = 49588, + [SMALL_STATE(1683)] = 49595, + [SMALL_STATE(1684)] = 49602, + [SMALL_STATE(1685)] = 49609, + [SMALL_STATE(1686)] = 49616, + [SMALL_STATE(1687)] = 49623, + [SMALL_STATE(1688)] = 49630, + [SMALL_STATE(1689)] = 49637, + [SMALL_STATE(1690)] = 49644, + [SMALL_STATE(1691)] = 49651, + [SMALL_STATE(1692)] = 49658, + [SMALL_STATE(1693)] = 49665, + [SMALL_STATE(1694)] = 49672, + [SMALL_STATE(1695)] = 49679, + [SMALL_STATE(1696)] = 49686, + [SMALL_STATE(1697)] = 49693, + [SMALL_STATE(1698)] = 49700, + [SMALL_STATE(1699)] = 49707, + [SMALL_STATE(1700)] = 49714, + [SMALL_STATE(1701)] = 49721, + [SMALL_STATE(1702)] = 49728, + [SMALL_STATE(1703)] = 49735, + [SMALL_STATE(1704)] = 49742, + [SMALL_STATE(1705)] = 49749, + [SMALL_STATE(1706)] = 49756, + [SMALL_STATE(1707)] = 49763, + [SMALL_STATE(1708)] = 49770, + [SMALL_STATE(1709)] = 49777, + [SMALL_STATE(1710)] = 49784, + [SMALL_STATE(1711)] = 49791, + [SMALL_STATE(1712)] = 49798, + [SMALL_STATE(1713)] = 49805, + [SMALL_STATE(1714)] = 49812, + [SMALL_STATE(1715)] = 49819, + [SMALL_STATE(1716)] = 49826, + [SMALL_STATE(1717)] = 49833, + [SMALL_STATE(1718)] = 49840, + [SMALL_STATE(1719)] = 49847, + [SMALL_STATE(1720)] = 49854, + [SMALL_STATE(1721)] = 49861, + [SMALL_STATE(1722)] = 49868, + [SMALL_STATE(1723)] = 49875, + [SMALL_STATE(1724)] = 49882, + [SMALL_STATE(1725)] = 49889, + [SMALL_STATE(1726)] = 49896, + [SMALL_STATE(1727)] = 49903, + [SMALL_STATE(1728)] = 49910, + [SMALL_STATE(1729)] = 49917, + [SMALL_STATE(1730)] = 49924, + [SMALL_STATE(1731)] = 49931, + [SMALL_STATE(1732)] = 49938, + [SMALL_STATE(1733)] = 49945, + [SMALL_STATE(1734)] = 49952, + [SMALL_STATE(1735)] = 49959, + [SMALL_STATE(1736)] = 49966, + [SMALL_STATE(1737)] = 49973, + [SMALL_STATE(1738)] = 49980, + [SMALL_STATE(1739)] = 49987, + [SMALL_STATE(1740)] = 49994, + [SMALL_STATE(1741)] = 50001, + [SMALL_STATE(1742)] = 50008, + [SMALL_STATE(1743)] = 50015, + [SMALL_STATE(1744)] = 50022, + [SMALL_STATE(1745)] = 50029, + [SMALL_STATE(1746)] = 50036, + [SMALL_STATE(1747)] = 50043, + [SMALL_STATE(1748)] = 50050, + [SMALL_STATE(1749)] = 50057, + [SMALL_STATE(1750)] = 50064, + [SMALL_STATE(1751)] = 50071, + [SMALL_STATE(1752)] = 50078, + [SMALL_STATE(1753)] = 50085, + [SMALL_STATE(1754)] = 50092, + [SMALL_STATE(1755)] = 50099, + [SMALL_STATE(1756)] = 50106, + [SMALL_STATE(1757)] = 50113, + [SMALL_STATE(1758)] = 50120, + [SMALL_STATE(1759)] = 50127, + [SMALL_STATE(1760)] = 50134, + [SMALL_STATE(1761)] = 50141, + [SMALL_STATE(1762)] = 50148, + [SMALL_STATE(1763)] = 50155, + [SMALL_STATE(1764)] = 50162, + [SMALL_STATE(1765)] = 50169, + [SMALL_STATE(1766)] = 50176, + [SMALL_STATE(1767)] = 50183, + [SMALL_STATE(1768)] = 50190, + [SMALL_STATE(1769)] = 50197, + [SMALL_STATE(1770)] = 50204, + [SMALL_STATE(1771)] = 50211, + [SMALL_STATE(1772)] = 50218, + [SMALL_STATE(1773)] = 50225, + [SMALL_STATE(1774)] = 50232, + [SMALL_STATE(1775)] = 50239, + [SMALL_STATE(1776)] = 50246, + [SMALL_STATE(1777)] = 50253, + [SMALL_STATE(1778)] = 50260, + [SMALL_STATE(1779)] = 50267, + [SMALL_STATE(1780)] = 50274, + [SMALL_STATE(1781)] = 50281, + [SMALL_STATE(1782)] = 50288, + [SMALL_STATE(1783)] = 50295, + [SMALL_STATE(1784)] = 50302, + [SMALL_STATE(1785)] = 50309, + [SMALL_STATE(1786)] = 50316, + [SMALL_STATE(1787)] = 50323, + [SMALL_STATE(1788)] = 50330, + [SMALL_STATE(1789)] = 50337, + [SMALL_STATE(1790)] = 50344, + [SMALL_STATE(1791)] = 50351, + [SMALL_STATE(1792)] = 50358, + [SMALL_STATE(1793)] = 50365, + [SMALL_STATE(1794)] = 50372, + [SMALL_STATE(1795)] = 50379, + [SMALL_STATE(1796)] = 50386, + [SMALL_STATE(1797)] = 50393, + [SMALL_STATE(1798)] = 50400, + [SMALL_STATE(1799)] = 50407, + [SMALL_STATE(1800)] = 50414, + [SMALL_STATE(1801)] = 50421, + [SMALL_STATE(1802)] = 50428, + [SMALL_STATE(1803)] = 50435, + [SMALL_STATE(1804)] = 50442, + [SMALL_STATE(1805)] = 50449, + [SMALL_STATE(1806)] = 50456, + [SMALL_STATE(1807)] = 50463, + [SMALL_STATE(1808)] = 50470, + [SMALL_STATE(1809)] = 50477, + [SMALL_STATE(1810)] = 50484, + [SMALL_STATE(1811)] = 50491, + [SMALL_STATE(1812)] = 50498, + [SMALL_STATE(1813)] = 50505, + [SMALL_STATE(1814)] = 50512, + [SMALL_STATE(1815)] = 50519, + [SMALL_STATE(1816)] = 50526, + [SMALL_STATE(1817)] = 50533, + [SMALL_STATE(1818)] = 50540, + [SMALL_STATE(1819)] = 50547, + [SMALL_STATE(1820)] = 50554, + [SMALL_STATE(1821)] = 50561, + [SMALL_STATE(1822)] = 50568, + [SMALL_STATE(1823)] = 50575, + [SMALL_STATE(1824)] = 50582, + [SMALL_STATE(1825)] = 50589, + [SMALL_STATE(1826)] = 50596, + [SMALL_STATE(1827)] = 50603, + [SMALL_STATE(1828)] = 50610, + [SMALL_STATE(1829)] = 50617, + [SMALL_STATE(1830)] = 50624, + [SMALL_STATE(1831)] = 50631, + [SMALL_STATE(1832)] = 50638, + [SMALL_STATE(1833)] = 50645, + [SMALL_STATE(1834)] = 50652, + [SMALL_STATE(1835)] = 50659, + [SMALL_STATE(1836)] = 50666, + [SMALL_STATE(1837)] = 50673, + [SMALL_STATE(1838)] = 50680, + [SMALL_STATE(1839)] = 50687, + [SMALL_STATE(1840)] = 50694, + [SMALL_STATE(1841)] = 50701, + [SMALL_STATE(1842)] = 50708, + [SMALL_STATE(1843)] = 50715, + [SMALL_STATE(1844)] = 50722, + [SMALL_STATE(1845)] = 50729, + [SMALL_STATE(1846)] = 50736, + [SMALL_STATE(1847)] = 50743, + [SMALL_STATE(1848)] = 50750, + [SMALL_STATE(1849)] = 50757, + [SMALL_STATE(1850)] = 50764, + [SMALL_STATE(1851)] = 50771, + [SMALL_STATE(1852)] = 50778, + [SMALL_STATE(1853)] = 50785, + [SMALL_STATE(1854)] = 50792, + [SMALL_STATE(1855)] = 50799, + [SMALL_STATE(1856)] = 50806, + [SMALL_STATE(1857)] = 50813, + [SMALL_STATE(1858)] = 50820, + [SMALL_STATE(1859)] = 50827, + [SMALL_STATE(1860)] = 50834, + [SMALL_STATE(1861)] = 50841, + [SMALL_STATE(1862)] = 50848, + [SMALL_STATE(1863)] = 50855, + [SMALL_STATE(1864)] = 50862, + [SMALL_STATE(1865)] = 50869, + [SMALL_STATE(1866)] = 50876, + [SMALL_STATE(1867)] = 50883, + [SMALL_STATE(1868)] = 50890, + [SMALL_STATE(1869)] = 50897, + [SMALL_STATE(1870)] = 50904, + [SMALL_STATE(1871)] = 50911, + [SMALL_STATE(1872)] = 50918, + [SMALL_STATE(1873)] = 50925, + [SMALL_STATE(1874)] = 50932, + [SMALL_STATE(1875)] = 50939, + [SMALL_STATE(1876)] = 50946, + [SMALL_STATE(1877)] = 50953, + [SMALL_STATE(1878)] = 50960, + [SMALL_STATE(1879)] = 50967, + [SMALL_STATE(1880)] = 50974, + [SMALL_STATE(1881)] = 50981, + [SMALL_STATE(1882)] = 50988, + [SMALL_STATE(1883)] = 50995, + [SMALL_STATE(1884)] = 51002, + [SMALL_STATE(1885)] = 51009, + [SMALL_STATE(1886)] = 51016, + [SMALL_STATE(1887)] = 51023, + [SMALL_STATE(1888)] = 51030, + [SMALL_STATE(1889)] = 51037, + [SMALL_STATE(1890)] = 51044, + [SMALL_STATE(1891)] = 51051, + [SMALL_STATE(1892)] = 51058, + [SMALL_STATE(1893)] = 51065, + [SMALL_STATE(1894)] = 51072, + [SMALL_STATE(1895)] = 51079, + [SMALL_STATE(1896)] = 51086, + [SMALL_STATE(1897)] = 51093, + [SMALL_STATE(1898)] = 51100, + [SMALL_STATE(1899)] = 51107, + [SMALL_STATE(1900)] = 51114, + [SMALL_STATE(1901)] = 51121, + [SMALL_STATE(1902)] = 51128, + [SMALL_STATE(1903)] = 51135, + [SMALL_STATE(1904)] = 51142, + [SMALL_STATE(1905)] = 51149, + [SMALL_STATE(1906)] = 51156, + [SMALL_STATE(1907)] = 51163, + [SMALL_STATE(1908)] = 51170, + [SMALL_STATE(1909)] = 51177, + [SMALL_STATE(1910)] = 51184, + [SMALL_STATE(1911)] = 51191, + [SMALL_STATE(1912)] = 51198, + [SMALL_STATE(1913)] = 51205, + [SMALL_STATE(1914)] = 51212, + [SMALL_STATE(1915)] = 51219, + [SMALL_STATE(1916)] = 51226, + [SMALL_STATE(1917)] = 51233, + [SMALL_STATE(1918)] = 51240, + [SMALL_STATE(1919)] = 51247, + [SMALL_STATE(1920)] = 51254, + [SMALL_STATE(1921)] = 51261, + [SMALL_STATE(1922)] = 51268, + [SMALL_STATE(1923)] = 51275, + [SMALL_STATE(1924)] = 51282, + [SMALL_STATE(1925)] = 51289, + [SMALL_STATE(1926)] = 51296, + [SMALL_STATE(1927)] = 51303, + [SMALL_STATE(1928)] = 51310, + [SMALL_STATE(1929)] = 51317, + [SMALL_STATE(1930)] = 51324, + [SMALL_STATE(1931)] = 51331, + [SMALL_STATE(1932)] = 51338, + [SMALL_STATE(1933)] = 51345, + [SMALL_STATE(1934)] = 51352, + [SMALL_STATE(1935)] = 51359, + [SMALL_STATE(1936)] = 51366, + [SMALL_STATE(1937)] = 51373, + [SMALL_STATE(1938)] = 51380, + [SMALL_STATE(1939)] = 51387, + [SMALL_STATE(1940)] = 51394, + [SMALL_STATE(1941)] = 51401, + [SMALL_STATE(1942)] = 51408, + [SMALL_STATE(1943)] = 51415, + [SMALL_STATE(1944)] = 51422, + [SMALL_STATE(1945)] = 51429, + [SMALL_STATE(1946)] = 51436, + [SMALL_STATE(1947)] = 51443, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -58514,2475 +58532,2483 @@ 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(839), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), [83] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), - [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(839), - [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(977), - [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1211), - [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(650), - [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(635), + [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(840), + [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1042), + [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1326), + [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(651), + [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(630), [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(32), - [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(673), - [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1445), - [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(693), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1874), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1857), + [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(719), + [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1368), + [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(714), + [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1876), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1859), [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(55), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1854), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(714), - [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1826), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1331), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(769), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1856), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(710), + [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1828), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1194), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(761), [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(780), [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(16), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(193), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1246), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1793), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(578), - [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1325), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1744), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1743), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(196), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(195), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1177), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1795), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(573), + [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1172), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1746), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1745), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(197), [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(111), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(526), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(745), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(772), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1720), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(665), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(764), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(527), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(790), + [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(782), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1722), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(659), + [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(800), [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(166), [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(70), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(197), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1680), + [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(198), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1682), [199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation, 1), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1126), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(770), - [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(635), - [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(673), - [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1874), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1854), - [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1331), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(769), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(780), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1246), - [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(578), - [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1325), - [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1743), - [314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1680), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_declarative_part, 1), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_of_statements, 1), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(957), - [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(977), - [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1211), - [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1327), - [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), - [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(55), - [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(714), - [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1826), - [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(16), - [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(193), - [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1744), - [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1743), - [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(196), - [373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(111), - [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(526), - [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(745), - [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(772), - [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1720), - [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(665), - [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(764), - [394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(166), - [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(70), - [400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(197), - [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 1), - [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 1), - [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_of_statements, 2), - [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 1), - [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 1), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1126), - [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(770), - [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(635), - [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), - [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(786), - [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1874), - [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1854), - [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1339), - [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(769), - [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(780), - [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1429), - [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(578), - [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1325), - [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1743), - [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1680), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 86), - [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 86), - [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 2), - [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 2), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 6), - [549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 6), - [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 17), - [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 17), - [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 11, .production_id = 118), - [557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 11, .production_id = 118), - [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 6), - [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 6), - [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_statement, 2), - [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_statement, 2), - [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), - [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 2), - [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 6), - [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 6), - [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 69), - [577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 69), - [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 12), - [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 12), - [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 50), - [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 50), - [587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 3), - [589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 3, .production_id = 3), - [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 5, .production_id = 50), - [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 5, .production_id = 50), - [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5, .production_id = 49), - [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 5, .production_id = 49), - [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 5, .production_id = 3), - [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 5, .production_id = 3), - [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 5), - [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 5), - [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 2), - [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 2), - [611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 72), - [613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 72), - [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 4), - [617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 4), - [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_relative_statement, 3), - [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_relative_statement, 3), - [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 7), - [625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 7), - [627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 14), - [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 14), - [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 3, .production_id = 13), - [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 3, .production_id = 13), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7), - [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7), - [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 7), - [647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 7), - [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 83), - [651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 83), - [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 2), - [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 2), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 7), - [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 7), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), - [667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), - [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_timed_entry_call, 7), - [671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_timed_entry_call, 7), - [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 5, .production_id = 3), - [675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 5, .production_id = 3), - [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 5), - [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 5), - [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_entry_call, 7), - [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_entry_call, 7), - [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 7), - [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 7), - [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 84), - [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 84), - [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 85), - [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 85), - [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 28), - [699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 28), - [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 72), - [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 72), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 3, .production_id = 12), - [709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 3, .production_id = 12), - [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 3, .production_id = 3), - [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 3, .production_id = 3), - [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 3), - [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 3), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, .production_id = 83), - [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, .production_id = 83), - [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asynchronous_select, 8, .production_id = 97), - [727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asynchronous_select, 8, .production_id = 97), - [729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 8), - [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 8), - [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 8, .production_id = 98), - [735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 8, .production_id = 98), - [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 8), - [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 8), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 8, .production_id = 86), - [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 8, .production_id = 86), - [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_until_statement, 4), - [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_until_statement, 4), - [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4, .production_id = 29), - [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 4, .production_id = 29), - [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 3), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 3), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 3), - [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 3), - [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 4, .production_id = 28), - [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 4, .production_id = 28), - [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 4), - [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 4), - [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 3), - [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 3), - [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), - [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2), - [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, .production_id = 107), - [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, .production_id = 107), - [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 9), - [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 9), - [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 9, .production_id = 69), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 9, .production_id = 69), - [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, .production_id = 113), - [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, .production_id = 113), - [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 114), - [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 114), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 84), - [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 84), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 4), - [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 4), - [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 3, .production_id = 15), - [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 3, .production_id = 15), - [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_array_aggregate, 2), - [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_array_aggregate, 2), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reduction_attribute_reference, 3), - [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reduction_attribute_reference, 3), - [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 5, .production_id = 15), - [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 5, .production_id = 15), - [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 5), - [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 5), - [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_aggregate, 5), - [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_aggregate, 5), - [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selected_component, 3, .production_id = 16), - [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_component, 3, .production_id = 16), - [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 7), - [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 7), - [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_reference, 3), - [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_reference, 3), - [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice, 4, .production_id = 30), - [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 30), - [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduction_attribute_designator, 4), - [859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_attribute_designator, 4), - [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_designator, 1), - [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_designator, 1), - [865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 8), - [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 8), - [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_aggregate, 3), - [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_aggregate, 3), - [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_array_aggregate, 3), - [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_array_aggregate, 3), - [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 6), - [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 6), - [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_delta_aggregate, 6), - [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_delta_aggregate, 6), - [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_delta_aggregate, 6), - [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_delta_aggregate, 6), - [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 3), - [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 3), - [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 2), - [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 2), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 4), - [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 4), - [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 3), - [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 3), - [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 2), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 2), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1), - [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 1), - [921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(241), - [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 6), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 1), - [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 1), - [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 90), - [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 90), - [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 37), - [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 37), - [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 37), - [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 37), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1111), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(745), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(630), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(719), + [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1876), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1856), + [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1194), + [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(761), + [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(780), + [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1177), + [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(573), + [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1172), + [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1745), + [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1682), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_declarative_part, 1), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_of_statements, 1), + [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(928), + [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1042), + [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1326), + [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1313), + [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(55), + [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(710), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1828), + [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(16), + [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(195), + [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1746), + [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1745), + [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(197), + [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(111), + [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(527), + [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(790), + [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(782), + [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1722), + [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(659), + [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(800), + [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(166), + [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(70), + [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(198), + [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 1), + [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 1), + [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_of_statements, 2), + [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 1), + [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 1), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1111), + [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(745), + [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(630), + [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), + [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(795), + [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1876), + [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1856), + [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1433), + [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(761), + [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(780), + [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1432), + [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(573), + [492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1172), + [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1745), + [498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1682), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 86), + [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 86), + [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 2), + [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 2), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 6), + [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 6), + [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 17), + [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 17), + [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 11, .production_id = 118), + [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 11, .production_id = 118), + [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 6), + [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 6), + [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_statement, 2), + [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_statement, 2), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), + [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 2), + [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 6), + [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 6), + [587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 69), + [589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 69), + [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 12), + [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 12), + [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 50), + [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 50), + [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 3), + [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 3, .production_id = 3), + [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 5, .production_id = 50), + [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 5, .production_id = 50), + [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5, .production_id = 49), + [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 5, .production_id = 49), + [611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 5, .production_id = 3), + [613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 5, .production_id = 3), + [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 5), + [617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 5), + [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 2), + [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 2), + [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 72), + [625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 72), + [627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 4), + [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 4), + [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_relative_statement, 3), + [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_relative_statement, 3), + [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 7), + [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 7), + [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 14), + [641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 14), + [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 3, .production_id = 13), + [645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 3, .production_id = 13), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7), + [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7), + [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 7), + [659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 7), + [661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 83), + [663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 83), + [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 2), + [667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 2), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 7), + [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 7), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), + [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), + [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_timed_entry_call, 7), + [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_timed_entry_call, 7), + [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 5, .production_id = 3), + [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 5, .production_id = 3), + [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 5), + [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 5), + [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_entry_call, 7), + [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_entry_call, 7), + [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 7), + [699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 7), + [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 84), + [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 84), + [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 85), + [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 85), + [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 28), + [711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 28), + [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 72), + [715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 72), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 3, .production_id = 12), + [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 3, .production_id = 12), + [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 3, .production_id = 3), + [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 3, .production_id = 3), + [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 3), + [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 3), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, .production_id = 83), + [735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, .production_id = 83), + [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asynchronous_select, 8, .production_id = 97), + [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asynchronous_select, 8, .production_id = 97), + [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 8), + [743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 8), + [745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 8, .production_id = 98), + [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 8, .production_id = 98), + [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 8), + [751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 8), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 8, .production_id = 86), + [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 8, .production_id = 86), + [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_until_statement, 4), + [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_until_statement, 4), + [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4, .production_id = 29), + [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 4, .production_id = 29), + [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 3), + [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 3), + [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 3), + [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 3), + [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 4, .production_id = 28), + [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 4, .production_id = 28), + [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 4), + [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 4), + [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 3), + [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 3), + [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), + [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2), + [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, .production_id = 107), + [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, .production_id = 107), + [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 9), + [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 9), + [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 9, .production_id = 69), + [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 9, .production_id = 69), + [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, .production_id = 113), + [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, .production_id = 113), + [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 114), + [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 114), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 84), + [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 84), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 4), + [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 4), + [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 7), + [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 7), + [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice, 4, .production_id = 30), + [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 30), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reduction_attribute_reference, 3), + [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reduction_attribute_reference, 3), + [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 5, .production_id = 15), + [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 5, .production_id = 15), + [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 5), + [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 5), + [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_aggregate, 5), + [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_aggregate, 5), + [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 8), + [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 8), + [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selected_component, 3, .production_id = 16), + [859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_component, 3, .production_id = 16), + [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 3, .production_id = 15), + [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 3, .production_id = 15), + [865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_reference, 3), + [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_reference, 3), + [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduction_attribute_designator, 4), + [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_attribute_designator, 4), + [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_designator, 1), + [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_designator, 1), + [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 3), + [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 3), + [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_array_aggregate, 2), + [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_array_aggregate, 2), + [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_aggregate, 3), + [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_aggregate, 3), + [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_array_aggregate, 3), + [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_array_aggregate, 3), + [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 6), + [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 6), + [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_delta_aggregate, 6), + [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_delta_aggregate, 6), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_delta_aggregate, 6), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_delta_aggregate, 6), + [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 3), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 3), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 2), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 2), + [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 4), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 4), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 1), + [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(241), + [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 6), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 1), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 1), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 2), + [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 2), [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 101), [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 101), - [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 37), - [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 37), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_at_clause, 6), - [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_at_clause, 6), - [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 10, .production_id = 109), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 10, .production_id = 109), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 7, .production_id = 37), - [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 7, .production_id = 37), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 37), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 37), + [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 37), + [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 37), + [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 37), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 37), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 90), + [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 90), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 7, .production_id = 37), + [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 7, .production_id = 37), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 10, .production_id = 109), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 10, .production_id = 109), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary, 1, .production_id = 2), [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary, 1, .production_id = 2), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 7), - [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 7), - [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 51), - [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 51), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 7), - [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 7), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 5), - [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 5), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 5), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 5), - [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 9), - [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 9), - [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 68), - [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 68), - [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 104), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 104), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 5), - [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 5), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 5), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 5), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 60), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 60), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 102), - [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 102), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 7), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 7), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 40), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 40), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 9), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 9), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 36), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 36), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 9), - [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 9), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8), - [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8), - [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 5, .production_id = 38), - [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 5, .production_id = 38), - [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_declaration, 2), - [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__package_declaration, 2), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8, .production_id = 100), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8, .production_id = 100), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 99), - [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 99), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 68), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 68), - [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 8, .production_id = 87), - [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 8, .production_id = 87), - [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 19), - [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 19), - [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 2), - [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 2), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 5), - [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 5), - [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 9), - [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 9), - [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 33), - [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 33), - [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 3), - [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 3), - [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 71), - [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 71), - [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 32), - [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 32), - [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 5), - [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 5), - [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 4), - [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 4), - [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 27), - [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 27), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 3), - [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 3), - [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 4), - [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 4), - [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 7), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 7), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4), - [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 7), - [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 7), - [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 9), - [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 9), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 9), - [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 9), - [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 7), - [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 7), - [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 9), - [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 9), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 4), - [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 4), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 4), - [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 4), - [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 2), - [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 2), - [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 31), - [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 31), - [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 80), - [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 80), - [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 80), - [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 80), - [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 4), - [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 4), - [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 8), - [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 8), - [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 5, .production_id = 36), - [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 5, .production_id = 36), - [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 64), - [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 64), - [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 8), - [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 8), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 8), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 8), - [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 7), - [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 7), - [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 2), - [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 2), - [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 62), - [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 62), - [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_declaration, 5), - [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_declaration, 5), - [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 60), - [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 60), - [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 5), - [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 5), - [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 31), - [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 31), - [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 75), - [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 75), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 7), - [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 7), - [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 2), - [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 2), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 5), - [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 5), - [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5), - [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5), - [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 73), - [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 73), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 117), - [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 117), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 52), - [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 52), - [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 9, .production_id = 99), - [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 9, .production_id = 99), - [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 57), - [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 57), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 56), - [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 56), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 55), - [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 55), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 5), - [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 5), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 8), - [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 8), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 6), - [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 6), - [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 117), - [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 117), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9, .production_id = 108), - [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9, .production_id = 108), - [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 111), - [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 111), - [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 5), - [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 5), - [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 8), - [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 8), - [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 54), - [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 54), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 53), - [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 53), - [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 53), - [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 53), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9), - [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 6), - [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 6), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 6), - [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 6), - [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 110), - [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 110), - [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 6), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 6), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 52), - [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 52), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 54), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 54), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 31), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 31), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 8), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 8), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 51), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 51), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 60), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 60), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 32), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 32), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 71), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 71), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 33), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 33), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 65), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 65), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 66), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 66), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 55), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 55), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 117), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 117), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 2), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 2), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 6, .production_id = 36), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 6, .production_id = 36), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 56), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 56), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_package_declaration, 3), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_package_declaration, 3), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 3), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 3), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 104), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 104), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 111), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 111), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 104), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 104), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 57), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 57), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 68), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 68), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 51), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 51), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4, .production_id = 27), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4, .production_id = 27), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 3), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 3), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 2), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 2), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 111), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 111), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 66), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 66), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 4), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 4), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 65), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 65), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 4), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 4), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 71), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 71), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 1), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 1), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 87), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 87), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 64), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 64), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 8), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 8), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 68), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 68), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 6), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 6), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 36), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 36), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 6, .production_id = 60), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 6, .production_id = 60), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 10), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 10), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 6, .production_id = 62), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 6, .production_id = 62), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 40), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 40), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_at_clause, 6), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_at_clause, 6), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 37), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 37), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 37), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 37), + [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 7), + [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 7), + [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 5), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 5), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 6), + [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 6), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 19), + [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 19), + [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 6), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 6), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 36), + [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 36), + [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 40), + [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 40), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 64), + [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 64), + [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 117), + [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 117), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 65), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 65), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 5, .production_id = 38), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 5, .production_id = 38), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 117), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 117), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 66), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 66), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 111), + [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 111), + [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_declaration, 2), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__package_declaration, 2), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 117), + [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 117), + [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 33), + [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 33), + [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 5), + [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 5), + [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 104), + [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 104), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 111), + [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 111), + [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 6, .production_id = 36), + [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 6, .production_id = 36), + [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 51), + [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 51), + [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 5), + [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 5), + [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 2), + [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 2), + [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 71), + [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 71), + [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 3), + [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 3), + [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 32), + [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 32), + [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 11), + [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 11), + [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 11), + [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 11), + [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 5), + [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 5), + [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 11), + [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 11), + [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 3), + [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 3), + [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 117), + [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 117), + [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 104), + [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 104), + [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 111), + [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 111), + [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 68), + [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 68), + [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 11, .production_id = 116), + [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 11, .production_id = 116), + [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 10, .production_id = 115), + [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 10, .production_id = 115), + [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 4), + [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 4), + [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 4), + [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 4), + [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 3), + [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 3), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 10), + [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 10), + [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 10), + [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 10), + [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4), + [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4), + [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 5), + [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 5), + [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 4), + [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 4), + [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 10), + [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 10), + [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 10), + [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 10), + [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 104), + [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 104), + [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 111), + [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 111), + [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 4), + [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 4), + [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 68), + [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 68), + [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 60), + [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 60), + [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 110), + [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 110), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9), + [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9), + [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9, .production_id = 108), + [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9, .production_id = 108), + [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 9, .production_id = 99), + [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 9, .production_id = 99), + [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 2), + [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 2), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 9), + [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 9), + [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 31), + [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 31), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 9), + [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 9), + [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 4), + [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 4), + [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 4), + [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 4), + [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 9), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 9), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 9), + [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 9), + [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 31), + [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 31), + [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 52), + [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 52), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 5), + [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 5), + [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 9), + [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 9), + [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 9), + [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 9), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 5), + [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 5), + [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 27), + [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 27), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 2), + [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 2), + [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 6), + [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 6), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 104), + [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 104), + [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 9), + [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 9), + [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 68), + [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 68), + [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 5, .production_id = 36), + [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 5, .production_id = 36), + [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 6), + [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 6), + [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 60), + [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 60), + [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 102), + [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 102), + [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 51), + [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 51), + [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8), + [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8, .production_id = 100), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8, .production_id = 100), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 99), + [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 99), + [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 68), + [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 68), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 8, .production_id = 87), + [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 8, .production_id = 87), + [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 6), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 6), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 53), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 53), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 2), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 2), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 2), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 2), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_declaration, 5), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_declaration, 5), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 71), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 71), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 5), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 5), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 80), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 80), + [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 31), + [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 31), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 8), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 8), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 8), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 8), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 8), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 8), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 5), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 5), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 8), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 8), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_package_declaration, 3), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_package_declaration, 3), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 3), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 3), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 8), + [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 8), + [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 8), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 8), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 54), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 54), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 52), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 52), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 6), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 6), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 5), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 5), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 8), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 8), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 53), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 53), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 3), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 3), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 68), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 68), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 54), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 54), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 91), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 91), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 60), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 60), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 32), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 32), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body_stub, 1), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body_stub, 1), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 1), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 1), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 73), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 73), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7, .production_id = 88), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7, .production_id = 88), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 33), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 33), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 68), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 68), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 87), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 87), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 1), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 1), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 51), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 51), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 55), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 55), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 71), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 71), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 56), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 56), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 57), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 57), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 6), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 6), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 2), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 2), [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 19), [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 19), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 10), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 10), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 6), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 6), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 11), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 11), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 6), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 6), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 6, .production_id = 60), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 6, .production_id = 60), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 66), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 66), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 65), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 65), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 6), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 6), [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 3), [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 3), - [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 6), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 6), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7, .production_id = 88), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7, .production_id = 88), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 10), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 10), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 11), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 11), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 6), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 6), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 6), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 6), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 6), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 6), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 10), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 10), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 68), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 68), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 6), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 6), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 6), - [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 6), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 91), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 91), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 11), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 11), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 4, .production_id = 23), - [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 4, .production_id = 23), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 73), - [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 73), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 1), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 1), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 10, .production_id = 115), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 10, .production_id = 115), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 117), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 117), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 104), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 104), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 3), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 3), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 11, .production_id = 116), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 11, .production_id = 116), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 6), - [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 6), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 4), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 4), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 6), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 6), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 60), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 60), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 68), - [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 68), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 111), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 111), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body_stub, 1), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body_stub, 1), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 2), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 2), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), - [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 41), - [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 41), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 24), - [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 24), - [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 25), - [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 25), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subunit, 5, .production_id = 43), - [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subunit, 5, .production_id = 43), - [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1), - [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 1), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), - [1701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), SHIFT_REPEAT(813), - [1704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), SHIFT_REPEAT(813), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 1, .production_id = 4), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1, .production_id = 4), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 2, .production_id = 10), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 2, .production_id = 10), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__factor, 1, .production_id = 4), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__factor, 1, .production_id = 4), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 3), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 3), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 3, .production_id = 42), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 3, .production_id = 42), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 2), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 2), - [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 4, .production_id = 78), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 4, .production_id = 78), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 3), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 3), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 64), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 64), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 6, .production_id = 62), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 6, .production_id = 62), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 80), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 80), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 36), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 36), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 7), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 7), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 6), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 6), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 40), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 40), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 7), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 7), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 6), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 6), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4, .production_id = 27), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4, .production_id = 27), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 6), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 6), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4), + [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 4), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 4), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 4), + [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 4), + [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 7), + [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 7), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 4, .production_id = 23), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 4, .production_id = 23), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 6), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 6), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 7), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 7), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 55), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 55), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 56), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 56), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 6), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 6), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 7), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 7), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 57), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 57), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 73), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 73), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 6), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 6), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 6), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 6), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 7), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 7), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 75), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 75), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 7), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 7), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 60), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 60), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 62), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 62), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 25), + [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 25), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 41), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 41), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 2), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 2), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 24), + [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 24), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subunit, 5, .production_id = 43), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subunit, 5, .production_id = 43), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 1), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), + [1713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), SHIFT_REPEAT(818), + [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), SHIFT_REPEAT(818), + [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 2, .production_id = 10), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 2, .production_id = 10), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 1, .production_id = 4), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1, .production_id = 4), + [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 3), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 3), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 3), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 3), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 2), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 2), + [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__factor, 1, .production_id = 4), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__factor, 1, .production_id = 4), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_null, 1), [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_null, 1), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_not, 2, .production_id = 8), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_not, 2, .production_id = 8), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_power, 3, .production_id = 26), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_power, 3, .production_id = 26), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_abs, 2, .production_id = 8), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_abs, 2, .production_id = 8), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 4, .production_id = 78), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 4, .production_id = 78), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 3, .production_id = 42), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 3, .production_id = 42), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 8), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 8), - [1805] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6), REDUCE(sym_component_choice_list, 1), - [1809] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6), SHIFT(1868), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 1), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 3), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 3), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 2), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 2), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), - [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(810), - [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(810), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 1), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 1), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), - [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), SHIFT_REPEAT(1744), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 3, .production_id = 11), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 3, .production_id = 11), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1554), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_exclusion, 2), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_exclusion, 2), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 1), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 18), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [1929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1146), - [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(770), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), - [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1854), - [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(746), - [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(762), - [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1793), - [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1325), - [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1743), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1789), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 1), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 1), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 2, .production_id = 9), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3, .production_id = 45), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(770), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), - [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1854), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(746), - [2019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(762), - [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1793), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1325), - [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1743), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 4), - [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(770), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1854), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(746), - [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(762), - [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1745), - [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1325), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2, .production_id = 1), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(278), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 2), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1146), - [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(635), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), - [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(939), - [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1641), - [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1743), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_formal_part, 2), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__membership_choice, 1), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), - [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), SHIFT_REPEAT(264), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 1), - [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(749), - [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(752), - [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(754), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 4, .production_id = 9), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 3), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 4), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_not, 2, .production_id = 8), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_not, 2, .production_id = 8), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_abs, 2, .production_id = 8), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_abs, 2, .production_id = 8), + [1809] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6), REDUCE(sym_component_choice_list, 1), + [1813] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6), SHIFT(747), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 8), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 8), + [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_power, 3, .production_id = 26), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_power, 3, .production_id = 26), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 1), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 2), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 2), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 1), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 1), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 3), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 3), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), + [1857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(817), + [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(817), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), + [1891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), SHIFT_REPEAT(1746), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 3, .production_id = 11), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 3, .production_id = 11), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1556), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_exclusion, 2), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_exclusion, 2), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 1), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 18), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [1949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1220), + [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(745), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), + [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1856), + [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(754), + [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(755), + [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1795), + [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1172), + [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1745), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1900), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 1), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 1), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 2, .production_id = 9), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(745), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), + [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1856), + [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(754), + [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(755), + [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1795), + [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1172), + [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1745), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(745), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), + [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1856), + [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(754), + [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(755), + [2067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1836), + [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1172), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 4), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3, .production_id = 45), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(273), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2, .production_id = 1), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1220), + [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(630), + [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), + [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(927), + [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1600), + [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1745), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 1), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(775), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(766), + [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(765), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__membership_choice, 1), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_formal_part, 2), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 2), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), + [2154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), SHIFT_REPEAT(266), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 4), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 4, .production_id = 9), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 3), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 3), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 2), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), - [2183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), SHIFT_REPEAT(209), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), - [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), SHIFT_REPEAT(191), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), - [2203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), SHIFT_REPEAT(243), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 3), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 3, .production_id = 21), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 3), - [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 35), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 2), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 2), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(974), - [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(974), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1211), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 3, .production_id = 18), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 6), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 3), - [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(770), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), - [2346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1854), - [2349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1793), - [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1325), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 3), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_constraint, 2), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 4, .production_id = 3), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 3), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 3), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2, .production_id = 18), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 3, .production_id = 34), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 3), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 3), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3, .production_id = 34), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4, .production_id = 58), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2, .production_id = 18), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 1), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 1), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_operator, 1), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_operator, 1), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(1146), - [2574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(770), - [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 1), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 2), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 2), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_part, 3), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2), - [2647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1124), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), - [2652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1861), - [2655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1860), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_adding_operator, 1), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_adding_operator, 1), - [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 5), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 5), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplying_operator, 1), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplying_operator, 1), - [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_adding_operator, 1), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_adding_operator, 1), - [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 6), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 6), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 4), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 4), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3, .production_id = 34), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 5), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 105), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 93), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 58), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_mode, 1), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_mode, 1), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_and_result_profile, 2), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 59), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 74), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(563), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), - [2735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1924), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 1), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1802), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 48), - [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 48), - [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 4), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 4), - [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 6), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 6), - [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 81), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 81), - [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 67), - [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 67), - [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7), - [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4), - [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4), - [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 48), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 48), - [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6), - [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 67), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 67), - [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 82), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 82), - [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 82), - [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 82), - [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 96), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 96), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 7), - [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 7), - [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 95), - [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 95), - [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), - [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 58), - [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 58), SHIFT(1807), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 67), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 67), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 48), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 48), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 5), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 5), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 95), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 95), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 5), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 5), - [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 106), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 106), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 18), - [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 18), SHIFT(1522), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 106), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 106), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_subprogram_declaration, 1), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_subprogram_declaration, 1), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 82), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 82), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 112), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 112), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 3), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 3), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 58), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3, .production_id = 34), - [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 34), - [2919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 34), SHIFT(1699), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 106), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 106), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 112), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 112), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 112), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 112), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 8), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 1), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 10), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 9), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1852), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 11), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 12), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 1), - [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 2), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 3), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [3069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), SHIFT_REPEAT(1284), - [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 1), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subpool_specification, 3, .production_id = 46), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpool_specification, 3, .production_id = 46), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_clause, 8, .production_id = 119), - [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_clause, 8, .production_id = 119), - [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1, .production_id = 47), - [3098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), SHIFT_REPEAT(626), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), - [3103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), SHIFT_REPEAT(1743), - [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_general_access_modifier, 1), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_general_access_modifier, 1), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1, .production_id = 44), - [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_clause, 4), - [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_clause, 4), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 1), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 1), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition, 1, .production_id = 7), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 3), - [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice_parameter_specification, 1), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 92), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 3), - [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 5), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 5), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 2), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 61), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1895), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), SHIFT_REPEAT(792), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 39), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 3), - [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 36), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 3, .production_id = 22), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 76), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 9, .production_id = 103), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 1), - [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), - [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(205), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 3), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 4), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 2), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [3331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(222), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6), - [3336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), SHIFT_REPEAT(782), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 68), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 1), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), - [3353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), SHIFT_REPEAT(801), - [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 58), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), - [3360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1814), - [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 3, .production_id = 22), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 93), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 2), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_value, 2), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 2), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 3, .production_id = 3), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 3, .production_id = 3), - [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1910), - [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(758), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), - [3403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), SHIFT(1212), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_discriminant_part, 3), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_ordinary_fixed_point_definition, 2), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_specification, 2), - [3416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(750), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 2), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 2), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), - [3433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), SHIFT(1139), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(99), - [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 4), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1, .production_id = 7), - [3463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__attribute_reference, 3), SHIFT(206), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), + [2193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), SHIFT_REPEAT(193), + [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 2), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), + [2200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), SHIFT_REPEAT(191), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), + [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), SHIFT_REPEAT(236), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 3), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 3), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 3, .production_id = 21), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 35), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 2), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 2), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1011), + [2307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1011), + [2310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1326), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_constraint, 2), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 6), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 3, .production_id = 18), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(745), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), + [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1856), + [2365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1795), + [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1172), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 3), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 3), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 4, .production_id = 3), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 3), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 3, .production_id = 34), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2, .production_id = 18), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 3), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4, .production_id = 58), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 3), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3, .production_id = 34), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2, .production_id = 18), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 3), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 1), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 1), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 1), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(1220), + [2634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(745), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_operator, 1), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_operator, 1), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 2), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 2), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_part, 3), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 5), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 5), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 6), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 6), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_adding_operator, 1), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_adding_operator, 1), + [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1106), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), + [2690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1523), + [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1512), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_adding_operator, 1), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_adding_operator, 1), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplying_operator, 1), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplying_operator, 1), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 4), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 4), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_and_result_profile, 2), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 105), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 58), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 93), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 5), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3, .production_id = 34), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_mode, 1), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_mode, 1), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), + [2730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1827), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 1), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1770), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [2748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(566), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 59), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 74), + [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), + [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 82), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 82), + [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 67), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 67), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 112), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 112), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 112), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 112), + [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6), + [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), + [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 48), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 48), + [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 106), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 106), + [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 112), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 112), + [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 48), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 48), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 81), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 81), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_subprogram_declaration, 1), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_subprogram_declaration, 1), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 6), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 6), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 95), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 95), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 67), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 67), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3, .production_id = 34), + [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 58), + [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 58), SHIFT(1809), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 34), + [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 34), SHIFT(1701), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), + [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 4), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 4), + [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 3), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 3), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 7), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 7), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 48), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 48), + [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 96), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 96), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 95), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 95), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 67), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 67), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 18), + [2909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 18), SHIFT(1524), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 58), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 5), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 5), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 82), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 82), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 5), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 5), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 106), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 106), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 82), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 82), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 106), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 106), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 9), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1498), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 10), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 8), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 11), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 12), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 1), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice_parameter_specification, 1), + [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1, .production_id = 44), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [3043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), SHIFT_REPEAT(1289), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 1), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 1), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 3), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_clause, 8, .production_id = 119), + [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_clause, 8, .production_id = 119), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 1), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_clause, 4), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_clause, 4), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 2), + [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 1), + [3106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), SHIFT_REPEAT(627), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), + [3111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), SHIFT_REPEAT(1745), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1, .production_id = 47), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3), + [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition, 1, .production_id = 7), + [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subpool_specification, 3, .production_id = 46), + [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpool_specification, 3, .production_id = 46), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 3), + [3142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_general_access_modifier, 1), + [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_general_access_modifier, 1), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 5), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 2), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 2), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 61), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [3214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(222), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 76), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 3, .production_id = 22), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 3), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 39), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 3), + [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 5), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1594), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 4), + [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), SHIFT_REPEAT(784), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), + [3289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(207), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 92), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 9, .production_id = 103), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 36), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 3), + [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 1), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), SHIFT_REPEAT(100), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), + [3365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), SHIFT_REPEAT(757), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 58), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 1), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), + [3382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), SHIFT(1247), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_discriminant_part, 3), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 68), + [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2, .production_id = 42), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_list, 1), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 1), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 2), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 2), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), + [3419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), SHIFT(1140), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 3, .production_id = 22), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 4), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_specification, 2), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_ordinary_fixed_point_definition, 2), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1, .production_id = 7), [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1), - [3468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), SHIFT(1112), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), SHIFT(239), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), - [3494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), SHIFT(1212), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 36), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_list, 1), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 105), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 34), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), SHIFT_REPEAT(96), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 2), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4), - [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(622), - [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6, .production_id = 22), - [3561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(611), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), SHIFT(1212), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2, .production_id = 42), - [3581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), SHIFT(1089), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 1), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), SHIFT_REPEAT(100), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), - [3597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), SHIFT_REPEAT(216), - [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 2), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 1), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_access_type_definition, 1), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_array_type_definition, 1), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), - [3626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), SHIFT_REPEAT(1290), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_interface_type_definition, 1), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 2), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 3, .production_id = 22), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 2), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), SHIFT_REPEAT(107), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_type_definition, 2), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 5), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), - [3664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), SHIFT_REPEAT(102), - [3667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 70), SHIFT_REPEAT(234), - [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 70), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 3), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_expression_item, 4, .production_id = 5), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 2), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 1), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 2), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 58), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 2), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 3), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_statement_item, 4, .production_id = 83), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 1), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), SHIFT_REPEAT(1164), - [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), - [3733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), SHIFT_REPEAT(649), - [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 4), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 1), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), - [3750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), SHIFT_REPEAT(1298), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 4), - [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 1), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 4), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 4), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), SHIFT_REPEAT(1554), - [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 18), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 18), - [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 7, .production_id = 74), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 4), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_decimal_fixed_point_definition, 4), - [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 22), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_terminate_alternative, 2), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 4), - [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 21), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 3), - [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 5, .production_id = 34), - [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_filter, 2, .production_id = 5), - [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 5, .production_id = 36), - [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 7, .production_id = 34), - [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 35), - [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 6), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 4), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 4), - [3860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), SHIFT_REPEAT(1157), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 1), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), - [3871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), SHIFT_REPEAT(1868), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), SHIFT_REPEAT(104), - [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 2), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_discrete_type_definition, 3), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_floating_point_definition, 2), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_modular_type_definition, 2), - [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 2), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_signed_integer_type_definition, 2), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_discriminant_part, 3), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 2), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [3468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), SHIFT(1067), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), + [3475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), SHIFT(1247), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 105), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), SHIFT_REPEAT(778), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 36), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6, .production_id = 22), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(623), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 34), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6), + [3512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(611), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), + [3521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(764), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 2), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 2), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 2), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_value, 2), + [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__attribute_reference, 3), SHIFT(206), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), SHIFT(239), + [3554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), SHIFT_REPEAT(216), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), + [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(99), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1639), + [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), SHIFT(1247), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 93), + [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(750), + [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), SHIFT(1085), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 3, .production_id = 3), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [3608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), SHIFT_REPEAT(97), + [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), + [3613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1759), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 3, .production_id = 3), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 1), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 3, .production_id = 22), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), SHIFT_REPEAT(955), + [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 70), SHIFT_REPEAT(242), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 70), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 2), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_alternative, 1), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 2), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 3), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 6), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 1), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 1), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 3), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 2), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_discrete_type_definition, 3), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), + [3698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), SHIFT_REPEAT(102), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 3), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), SHIFT_REPEAT(628), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 5, .production_id = 34), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_interface_type_definition, 1), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 2), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 2), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [3740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), SHIFT_REPEAT(711), + [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), + [3745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), SHIFT_REPEAT(747), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), + [3750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), SHIFT_REPEAT(1316), + [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 2), + [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_access_type_definition, 1), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 2), + [3765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), SHIFT_REPEAT(105), + [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), + [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), + [3772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), SHIFT_REPEAT(1205), + [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_array_type_definition, 1), + [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 2), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 5), + [3785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 70), SHIFT_REPEAT(234), + [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 70), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 1, .production_id = 7), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 4), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 4), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 1), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_statement_item, 4, .production_id = 83), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 2), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), + [3844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), SHIFT_REPEAT(658), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 4), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 2), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 3), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_terminate_alternative, 2), + [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 18), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_expression_item, 4, .production_id = 5), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_decimal_fixed_point_definition, 4), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 4), + [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 1), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 1), + [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), SHIFT_REPEAT(104), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 18), + [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), SHIFT_REPEAT(1483), + [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), + [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 58), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), SHIFT_REPEAT(703), - [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 59), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 6), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 70), SHIFT_REPEAT(242), - [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 70), - [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 2), - [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 3), - [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 2), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 1), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 1, .production_id = 7), - [3959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), SHIFT_REPEAT(114), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), - [3964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), SHIFT_REPEAT(1470), - [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), - [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 1), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_subtype_indication, 1, .production_id = 7), - [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 3, .production_id = 5), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 1), - [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_alternative, 1), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), SHIFT_REPEAT(932), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), - [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 8, .production_id = 58), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 2), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 2), - [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 2), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 1), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 2, .production_id = 42), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 2, .production_id = 70), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 1), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 34), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modular_type_definition, 2), - [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 2), - [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 1), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 6, .production_id = 68), - [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 36), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 3), - [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_real_range_specification, 4), - [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_subtype_definition, 3, .production_id = 6), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 42), - [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 2), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discriminant_part, 1), - [4136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discriminant_part, 1), SHIFT(505), - [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1), - [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 58), - [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 1), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1, .production_id = 7), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 3), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression_alternative, 4), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 34), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 6, .production_id = 22), - [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1, .production_id = 7), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 22), - [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__loop_parameter_subtype_indication, 1, .production_id = 7), - [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_integer_type_definition, 4), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_extension_part, 2), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 7, .production_id = 36), - [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 8, .production_id = 105), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_element, 2, .production_id = 89), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [4237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 2), - [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 4), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 36), - [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1), - [4253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discrete_range, 1), SHIFT(247), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_part, 7), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant, 4), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 22), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_record_component_association, 3), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 1), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 1), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 4), - [4282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_component_association, 1), SHIFT(1850), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 3), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 5, .production_id = 58), - [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 1, .production_id = 77), - [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 5), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 3), - [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 42), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 93), - [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 42), - [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 2), - [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 42), - [4335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), - [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 4, .production_id = 52), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 3), - [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordinary_fixed_point_definition, 3), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement_alternative, 4), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4), - [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_type_definition, 3), - [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 5), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantified_expression, 5, .production_id = 79), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 7, .production_id = 20), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_specification, 3), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3, .production_id = 63), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 4), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 3, .production_id = 22), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 5), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_barrier, 2, .production_id = 5), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 5), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [4688] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 5, .production_id = 94), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 3), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2, .production_id = 5), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, .production_id = 5), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantifier, 1), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 3), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_index_specification, 4, .production_id = 36), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [5074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_aggregate, 1), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [5078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 4, .production_id = 20), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [5082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 1), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 4), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_filter, 2, .production_id = 5), + [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_floating_point_definition, 2), + [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_modular_type_definition, 2), + [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 2), + [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 5, .production_id = 36), + [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_signed_integer_type_definition, 2), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 35), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 4), + [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 7, .production_id = 74), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 4), + [3943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), SHIFT_REPEAT(1195), + [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_type_definition, 2), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_subtype_indication, 1, .production_id = 7), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 1), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 7, .production_id = 34), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 1), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 3, .production_id = 5), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 59), + [3992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), SHIFT_REPEAT(114), + [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), + [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 2, .production_id = 42), + [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 8, .production_id = 58), + [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 1), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), SHIFT_REPEAT(1556), + [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 2), + [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 2), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 6), + [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 2, .production_id = 70), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 2), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_discriminant_part, 3), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 22), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 21), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 4), + [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 1), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression_alternative, 4), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 1), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modular_type_definition, 2), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 2), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 2), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 1), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 36), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 8, .production_id = 105), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_part, 7), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant, 4), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 2), + [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 93), + [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 4, .production_id = 52), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1, .production_id = 7), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 1), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 7, .production_id = 36), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1, .production_id = 7), + [4160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_component_association, 1), SHIFT(1503), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 3), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_record_component_association, 3), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1), + [4183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discrete_range, 1), SHIFT(232), + [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 58), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 6, .production_id = 22), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 34), + [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4), + [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_real_range_specification, 4), + [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 1), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 22), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_integer_type_definition, 4), + [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 22), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_extension_part, 2), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_choice_list, 1), REDUCE(sym_discrete_choice, 1), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 3), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5), + [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 4), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 34), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 42), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 36), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 5), + [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 42), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 5), + [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 5, .production_id = 58), + [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discriminant_part, 1), + [4299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discriminant_part, 1), SHIFT(506), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 4), + [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 1), + [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_element, 2, .production_id = 89), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_type_definition, 3), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordinary_fixed_point_definition, 3), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 3), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 42), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 1, .production_id = 77), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_subtype_definition, 3, .production_id = 6), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 2), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 6, .production_id = 68), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 3), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 3), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 42), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__loop_parameter_subtype_indication, 1, .production_id = 7), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4), + [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement_alternative, 4), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 3), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantified_expression, 5, .production_id = 79), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_aggregate, 1), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 4, .production_id = 20), + [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 1), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 4), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantifier, 1), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_specification, 3), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 3, .production_id = 22), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3, .production_id = 63), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 5), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_barrier, 2, .production_id = 5), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 5), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4707] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 5, .production_id = 94), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 3), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, .production_id = 5), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_choice_list, 1), SHIFT(117), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 7, .production_id = 20), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2, .production_id = 5), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [5082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_index_specification, 4, .production_id = 36), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), }; #ifdef __cplusplus diff --git a/test/corpus/generics.txt b/test/corpus/generics.txt index 1b7b2bd..9c4764b 100644 --- a/test/corpus/generics.txt +++ b/test/corpus/generics.txt @@ -44,8 +44,7 @@ end; (term (numeric_literal)))) (parameter_association - (component_choice_list - (identifier)))))) + (component_choice_list))))) (formal_subprogram_declaration (formal_concrete_subprogram_declaration (procedure_specification diff --git a/test/corpus/subprograms.txt b/test/corpus/subprograms.txt index 4c483a4..efc41bc 100644 --- a/test/corpus/subprograms.txt +++ b/test/corpus/subprograms.txt @@ -522,26 +522,26 @@ Subprogram and field access (numeric_literal)))))) (identifier))))))) -=============================== +================================================================================ Parameterless Procedure call -=============================== +================================================================================ Proc; ------- +-------------------------------------------------------------------------------- (compilation (compilation_unit (procedure_call_statement (identifier)))) -=============================== +================================================================================ Parameterless Function call -=============================== +================================================================================ A := Func; ------- +-------------------------------------------------------------------------------- (compilation (compilation_unit @@ -550,3 +550,33 @@ A := Func; (expression (term (identifier)))))) + +================================================================================ +Parameter association for operators +================================================================================ + +package P is new Pack ("+" => "+", "-" => Imported."+"); + +-------------------------------------------------------------------------------- + +(compilation + (compilation_unit + (generic_instantiation + (identifier) + (function_call + (identifier) + (actual_parameter_part + (parameter_association + (component_choice_list + (string_literal)) + (expression + (term + (string_literal)))) + (parameter_association + (component_choice_list + (string_literal)) + (expression + (term + (selected_component + (identifier) + (string_literal))))))))))