diff --git a/grammar.js b/grammar.js index 1018493..68679ef 100644 --- a/grammar.js +++ b/grammar.js @@ -2215,16 +2215,16 @@ module.exports = grammar({ reservedWord('#if'), field('condition', $.expression), reservedWord('then'), - $.non_empty_declarative_part, + repeat($._declarative_item_pragma), repeat(seq( reservedWord('#elsif'), field('condition', $.expression), reservedWord('then'), - $.non_empty_declarative_part, + repeat($._declarative_item_pragma), )), optional(seq( reservedWord('#else'), - $.non_empty_declarative_part, + repeat($._declarative_item_pragma), )), reservedWord('#end'), reservedWord('if'), @@ -2234,16 +2234,16 @@ module.exports = grammar({ reservedWord('#if'), field('condition', $.expression), reservedWord('then'), - field('statements', $._sequence_of_statements), + repeat($._statement), // can be empty repeat(seq( reservedWord('#elsif'), field('condition', $.expression), reservedWord('then'), - field('statements', $._sequence_of_statements), + repeat($._statement), // can be empty )), optional(seq( reservedWord('#else'), - field('else_statements', $._sequence_of_statements), + repeat($._statement), // can be empty )), reservedWord('#end'), reservedWord('if'), diff --git a/src/grammar.json b/src/grammar.json index a318db0..15defca 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -13820,8 +13820,11 @@ "value": "then" }, { - "type": "SYMBOL", - "name": "non_empty_declarative_part" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declarative_item_pragma" + } }, { "type": "REPEAT", @@ -13869,8 +13872,11 @@ "value": "then" }, { - "type": "SYMBOL", - "name": "non_empty_declarative_part" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declarative_item_pragma" + } } ] } @@ -13898,8 +13904,11 @@ "value": "#else" }, { - "type": "SYMBOL", - "name": "non_empty_declarative_part" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declarative_item_pragma" + } } ] }, @@ -13990,11 +13999,10 @@ "value": "then" }, { - "type": "FIELD", - "name": "statements", + "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_sequence_of_statements" + "name": "_statement" } }, { @@ -14043,11 +14051,10 @@ "value": "then" }, { - "type": "FIELD", - "name": "statements", + "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_sequence_of_statements" + "name": "_statement" } } ] @@ -14076,11 +14083,10 @@ "value": "#else" }, { - "type": "FIELD", - "name": "else_statements", + "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_sequence_of_statements" + "name": "_statement" } } ] diff --git a/src/node-types.json b/src/node-types.json index e974e67..abcc0e7 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -6105,10 +6105,134 @@ }, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { - "type": "non_empty_declarative_part", + "type": "at_clause", + "named": true + }, + { + "type": "attribute_definition_clause", + "named": true + }, + { + "type": "body_stub", + "named": true + }, + { + "type": "enumeration_representation_clause", + "named": true + }, + { + "type": "exception_declaration", + "named": true + }, + { + "type": "exception_renaming_declaration", + "named": true + }, + { + "type": "expression_function_declaration", + "named": true + }, + { + "type": "full_type_declaration", + "named": true + }, + { + "type": "generic_instantiation", + "named": true + }, + { + "type": "generic_package_declaration", + "named": true + }, + { + "type": "generic_renaming_declaration", + "named": true + }, + { + "type": "generic_subprogram_declaration", + "named": true + }, + { + "type": "gnatprep_declarative_if_statement", + "named": true + }, + { + "type": "incomplete_type_declaration", + "named": true + }, + { + "type": "null_procedure_declaration", + "named": true + }, + { + "type": "number_declaration", + "named": true + }, + { + "type": "object_declaration", + "named": true + }, + { + "type": "object_renaming_declaration", + "named": true + }, + { + "type": "package_body", + "named": true + }, + { + "type": "package_renaming_declaration", + "named": true + }, + { + "type": "package_specification", + "named": true + }, + { + "type": "pragma_g", + "named": true + }, + { + "type": "private_extension_declaration", + "named": true + }, + { + "type": "private_type_declaration", + "named": true + }, + { + "type": "protected_body", + "named": true + }, + { + "type": "record_representation_clause", + "named": true + }, + { + "type": "subprogram_body", + "named": true + }, + { + "type": "subprogram_declaration", + "named": true + }, + { + "type": "subprogram_renaming_declaration", + "named": true + }, + { + "type": "subtype_declaration", + "named": true + }, + { + "type": "task_body", + "named": true + }, + { + "type": "use_clause", "named": true } ] @@ -6127,211 +6251,109 @@ "named": true } ] - }, - "else_statements": { - "multiple": true, - "required": false, - "types": [ - { - "type": "abort_statement", - "named": true - }, - { - "type": "accept_statement", - "named": true - }, - { - "type": "assignment_statement", - "named": true - }, - { - "type": "asynchronous_select", - "named": true - }, - { - "type": "block_statement", - "named": true - }, - { - "type": "case_statement", - "named": true - }, - { - "type": "conditional_entry_call", - "named": true - }, - { - "type": "delay_relative_statement", - "named": true - }, - { - "type": "delay_until_statement", - "named": true - }, - { - "type": "exit_statement", - "named": true - }, - { - "type": "extended_return_statement", - "named": true - }, - { - "type": "gnatprep_if_statement", - "named": true - }, - { - "type": "goto_statement", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "label", - "named": true - }, - { - "type": "loop_statement", - "named": true - }, - { - "type": "null_statement", - "named": true - }, - { - "type": "pragma_g", - "named": true - }, - { - "type": "procedure_call_statement", - "named": true - }, - { - "type": "raise_statement", - "named": true - }, - { - "type": "requeue_statement", - "named": true - }, - { - "type": "selective_accept", - "named": true - }, - { - "type": "simple_return_statement", - "named": true - }, - { - "type": "timed_entry_call", - "named": true - } - ] - }, - "statements": { - "multiple": true, - "required": true, - "types": [ - { - "type": "abort_statement", - "named": true - }, - { - "type": "accept_statement", - "named": true - }, - { - "type": "assignment_statement", - "named": true - }, - { - "type": "asynchronous_select", - "named": true - }, - { - "type": "block_statement", - "named": true - }, - { - "type": "case_statement", - "named": true - }, - { - "type": "conditional_entry_call", - "named": true - }, - { - "type": "delay_relative_statement", - "named": true - }, - { - "type": "delay_until_statement", - "named": true - }, - { - "type": "exit_statement", - "named": true - }, - { - "type": "extended_return_statement", - "named": true - }, - { - "type": "gnatprep_if_statement", - "named": true - }, - { - "type": "goto_statement", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "label", - "named": true - }, - { - "type": "loop_statement", - "named": true - }, - { - "type": "null_statement", - "named": true - }, - { - "type": "pragma_g", - "named": true - }, - { - "type": "procedure_call_statement", - "named": true - }, - { - "type": "raise_statement", - "named": true - }, - { - "type": "requeue_statement", - "named": true - }, - { - "type": "selective_accept", - "named": true - }, - { - "type": "simple_return_statement", - "named": true - }, - { - "type": "timed_entry_call", - "named": true - } - ] } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "abort_statement", + "named": true + }, + { + "type": "accept_statement", + "named": true + }, + { + "type": "assignment_statement", + "named": true + }, + { + "type": "asynchronous_select", + "named": true + }, + { + "type": "block_statement", + "named": true + }, + { + "type": "case_statement", + "named": true + }, + { + "type": "conditional_entry_call", + "named": true + }, + { + "type": "delay_relative_statement", + "named": true + }, + { + "type": "delay_until_statement", + "named": true + }, + { + "type": "exit_statement", + "named": true + }, + { + "type": "extended_return_statement", + "named": true + }, + { + "type": "gnatprep_if_statement", + "named": true + }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, + { + "type": "label", + "named": true + }, + { + "type": "loop_statement", + "named": true + }, + { + "type": "null_statement", + "named": true + }, + { + "type": "pragma_g", + "named": true + }, + { + "type": "procedure_call_statement", + "named": true + }, + { + "type": "raise_statement", + "named": true + }, + { + "type": "requeue_statement", + "named": true + }, + { + "type": "selective_accept", + "named": true + }, + { + "type": "simple_return_statement", + "named": true + }, + { + "type": "timed_entry_call", + "named": true + } + ] } }, { diff --git a/src/parser.c b/src/parser.c index 50244fe..4c5880a 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2018 -#define LARGE_STATE_COUNT 82 +#define STATE_COUNT 2064 +#define LARGE_STATE_COUNT 98 #define SYMBOL_COUNT 456 #define ALIAS_COUNT 0 #define TOKEN_COUNT 122 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 48 #define MAX_ALIAS_SEQUENCE_LENGTH 14 -#define PRODUCTION_ID_COUNT 127 +#define PRODUCTION_ID_COUNT 125 enum { sym_identifier = 1, @@ -3373,82 +3373,80 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [48] = {.index = 61, .length = 1}, [49] = {.index = 62, .length = 2}, [50] = {.index = 64, .length = 2}, - [51] = {.index = 66, .length = 1}, - [52] = {.index = 67, .length = 2}, - [53] = {.index = 69, .length = 1}, - [54] = {.index = 70, .length = 2}, - [55] = {.index = 72, .length = 1}, - [56] = {.index = 73, .length = 1}, - [57] = {.index = 74, .length = 2}, - [58] = {.index = 76, .length = 1}, - [59] = {.index = 77, .length = 1}, - [60] = {.index = 78, .length = 2}, - [61] = {.index = 80, .length = 1}, - [62] = {.index = 81, .length = 2}, + [51] = {.index = 66, .length = 2}, + [52] = {.index = 68, .length = 1}, + [53] = {.index = 69, .length = 2}, + [54] = {.index = 71, .length = 1}, + [55] = {.index = 72, .length = 2}, + [56] = {.index = 74, .length = 1}, + [57] = {.index = 75, .length = 1}, + [58] = {.index = 76, .length = 2}, + [59] = {.index = 78, .length = 1}, + [60] = {.index = 79, .length = 1}, + [61] = {.index = 80, .length = 2}, + [62] = {.index = 82, .length = 1}, [63] = {.index = 83, .length = 2}, - [64] = {.index = 85, .length = 1}, - [65] = {.index = 86, .length = 2}, + [64] = {.index = 85, .length = 2}, + [65] = {.index = 87, .length = 1}, [66] = {.index = 88, .length = 2}, [67] = {.index = 90, .length = 2}, [68] = {.index = 92, .length = 2}, - [69] = {.index = 94, .length = 1}, - [70] = {.index = 95, .length = 2}, - [71] = {.index = 97, .length = 4}, - [72] = {.index = 101, .length = 2}, - [73] = {.index = 103, .length = 2}, - [74] = {.index = 105, .length = 1}, - [75] = {.index = 106, .length = 2}, - [76] = {.index = 108, .length = 2}, - [77] = {.index = 110, .length = 2}, - [78] = {.index = 112, .length = 2}, - [79] = {.index = 114, .length = 1}, - [80] = {.index = 115, .length = 2}, - [81] = {.index = 117, .length = 2}, - [82] = {.index = 119, .length = 1}, - [83] = {.index = 120, .length = 1}, - [84] = {.index = 121, .length = 2}, - [85] = {.index = 123, .length = 1}, - [86] = {.index = 124, .length = 2}, - [87] = {.index = 126, .length = 2}, - [88] = {.index = 128, .length = 3}, - [89] = {.index = 131, .length = 2}, - [90] = {.index = 133, .length = 1}, - [91] = {.index = 134, .length = 2}, - [92] = {.index = 136, .length = 1}, - [93] = {.index = 137, .length = 1}, - [94] = {.index = 138, .length = 2}, - [95] = {.index = 140, .length = 2}, - [96] = {.index = 142, .length = 2}, - [97] = {.index = 144, .length = 1}, - [98] = {.index = 145, .length = 1}, - [99] = {.index = 146, .length = 1}, - [100] = {.index = 147, .length = 1}, - [101] = {.index = 148, .length = 1}, - [102] = {.index = 149, .length = 3}, - [103] = {.index = 152, .length = 4}, - [104] = {.index = 156, .length = 2}, - [105] = {.index = 158, .length = 1}, - [106] = {.index = 159, .length = 2}, - [107] = {.index = 161, .length = 2}, - [108] = {.index = 163, .length = 2}, - [109] = {.index = 165, .length = 1}, - [110] = {.index = 166, .length = 1}, - [111] = {.index = 167, .length = 2}, - [112] = {.index = 169, .length = 1}, - [113] = {.index = 170, .length = 3}, - [114] = {.index = 173, .length = 1}, - [115] = {.index = 174, .length = 2}, - [116] = {.index = 176, .length = 2}, - [117] = {.index = 178, .length = 1}, - [118] = {.index = 179, .length = 1}, - [119] = {.index = 180, .length = 3}, - [120] = {.index = 183, .length = 3}, - [121] = {.index = 186, .length = 5}, - [122] = {.index = 191, .length = 1}, - [123] = {.index = 192, .length = 2}, - [124] = {.index = 194, .length = 1}, - [125] = {.index = 195, .length = 4}, - [126] = {.index = 199, .length = 4}, + [69] = {.index = 94, .length = 2}, + [70] = {.index = 96, .length = 1}, + [71] = {.index = 97, .length = 2}, + [72] = {.index = 99, .length = 2}, + [73] = {.index = 101, .length = 2}, + [74] = {.index = 103, .length = 1}, + [75] = {.index = 104, .length = 2}, + [76] = {.index = 106, .length = 2}, + [77] = {.index = 108, .length = 2}, + [78] = {.index = 110, .length = 2}, + [79] = {.index = 112, .length = 1}, + [80] = {.index = 113, .length = 2}, + [81] = {.index = 115, .length = 1}, + [82] = {.index = 116, .length = 1}, + [83] = {.index = 117, .length = 2}, + [84] = {.index = 119, .length = 1}, + [85] = {.index = 120, .length = 2}, + [86] = {.index = 122, .length = 2}, + [87] = {.index = 124, .length = 3}, + [88] = {.index = 127, .length = 2}, + [89] = {.index = 129, .length = 2}, + [90] = {.index = 131, .length = 1}, + [91] = {.index = 132, .length = 2}, + [92] = {.index = 134, .length = 1}, + [93] = {.index = 135, .length = 1}, + [94] = {.index = 136, .length = 2}, + [95] = {.index = 138, .length = 2}, + [96] = {.index = 140, .length = 2}, + [97] = {.index = 142, .length = 1}, + [98] = {.index = 143, .length = 1}, + [99] = {.index = 144, .length = 1}, + [100] = {.index = 145, .length = 1}, + [101] = {.index = 146, .length = 1}, + [102] = {.index = 147, .length = 3}, + [103] = {.index = 150, .length = 2}, + [104] = {.index = 152, .length = 2}, + [105] = {.index = 154, .length = 1}, + [106] = {.index = 155, .length = 2}, + [107] = {.index = 157, .length = 2}, + [108] = {.index = 159, .length = 2}, + [109] = {.index = 161, .length = 1}, + [110] = {.index = 162, .length = 1}, + [111] = {.index = 163, .length = 1}, + [112] = {.index = 164, .length = 3}, + [113] = {.index = 167, .length = 1}, + [114] = {.index = 168, .length = 2}, + [115] = {.index = 170, .length = 2}, + [116] = {.index = 172, .length = 1}, + [117] = {.index = 173, .length = 1}, + [118] = {.index = 174, .length = 3}, + [119] = {.index = 177, .length = 3}, + [120] = {.index = 180, .length = 1}, + [121] = {.index = 181, .length = 2}, + [122] = {.index = 183, .length = 1}, + [123] = {.index = 184, .length = 4}, + [124] = {.index = 188, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3566,217 +3564,204 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_name, 0}, {field_subtype_mark, 2}, [64] = + {field_condition, 0, .inherited = true}, + {field_condition, 1, .inherited = true}, + [66] = {field_condition, 3}, {field_loop_name, 1}, - [66] = + [68] = {field_statements, 1}, - [67] = + [69] = {field_name, 0}, {field_subtype_mark, 3, .inherited = true}, - [69] = + [71] = {field_parameter_profile, 3}, - [70] = + [72] = {field_is_abstract, 2}, {field_is_abstract, 3}, - [72] = - {field_callable_entity_name, 3}, - [73] = - {field_exception_name, 4}, [74] = - {field_object_name, 4}, - {field_subtype_mark, 2}, + {field_callable_entity_name, 3}, + [75] = + {field_exception_name, 4}, [76] = {field_object_name, 4}, - [77] = - {field_subtype_mark, 3}, + {field_subtype_mark, 2}, [78] = + {field_object_name, 4}, + [79] = + {field_subtype_mark, 3}, + [80] = {field_iterator_name, 4}, {field_subtype_mark, 2, .inherited = true}, - [80] = + [82] = {field_name, 2}, - [81] = - {field_endname, 5}, - {field_name, 1}, [83] = - {field_generic_name, 4}, + {field_endname, 5}, {field_name, 1}, [85] = + {field_generic_name, 4}, + {field_name, 1}, + [87] = {field_endname, 2}, - [86] = - {field_defining_program_unit_name, 2}, - {field_generic_package_name, 4}, [88] = {field_defining_program_unit_name, 2}, - {field_generic_procedure_name, 4}, + {field_generic_package_name, 4}, [90] = {field_defining_program_unit_name, 2}, - {field_generic_function_name, 4}, + {field_generic_procedure_name, 4}, [92] = + {field_defining_program_unit_name, 2}, + {field_generic_function_name, 4}, + [94] = {field_name, 0}, {field_subtype_mark, 3}, - [94] = + [96] = {field_subtype_mark, 4, .inherited = true}, - [95] = + [97] = {field_entry_direct_name, 1}, {field_entry_index, 3}, - [97] = - {field_condition, 0, .inherited = true}, - {field_condition, 1, .inherited = true}, - {field_statements, 0, .inherited = true}, - {field_statements, 1, .inherited = true}, - [101] = + [99] = {field_subtype_mark, 0, .inherited = true}, {field_subtype_mark, 1, .inherited = true}, - [103] = + [101] = {field_name, 0}, {field_subtype_mark, 4, .inherited = true}, - [105] = + [103] = {field_statements, 2}, - [106] = + [104] = {field_object_name, 5}, {field_subtype_mark, 3}, - [108] = + [106] = {field_iterator_name, 5}, {field_subtype_mark, 2, .inherited = true}, - [110] = + [108] = {field_endname, 5}, {field_name, 2}, - [112] = + [110] = {field_endname, 6}, {field_name, 1}, - [114] = + [112] = {field_parameter_profile, 0}, - [115] = - {field_condition, 0, .inherited = true}, - {field_condition, 1, .inherited = true}, - [117] = + [113] = {field_subtype_mark, 1, .inherited = true}, {field_subtype_mark, 2, .inherited = true}, - [119] = + [115] = {field_predicate, 4}, - [120] = + [116] = {field_endname, 3}, - [121] = + [117] = {field_parameter_profile, 5}, {field_subtype_mark, 3, .inherited = true}, - [123] = + [119] = {field_default_subtype_mark, 4}, - [124] = + [120] = {field_name, 0}, {field_subtype_mark, 4}, - [126] = + [122] = {field_condition, 1}, {field_statements, 3}, - [128] = + [124] = {field_entry_direct_name, 1}, {field_entry_index, 3}, {field_parameter_profile, 5}, - [131] = + [127] = {field_entry_direct_name, 1}, {field_entry_identifier, 5}, - [133] = + [129] = + {field_condition, 1}, + {field_condition, 3, .inherited = true}, + [131] = {field_statements, 3}, - [134] = + [132] = {field_generic_name, 5}, {field_name, 2}, - [136] = + [134] = {field_endname, 5}, - [137] = + [135] = {field_global_set, 1}, - [138] = + [136] = {field_end_local_name, 6}, {field_local_name, 1}, - [140] = + [138] = {field_endname, 6}, {field_name, 2}, - [142] = + [140] = {field_endname, 7}, {field_name, 1}, - [144] = + [142] = {field_subtype_mark, 4}, - [145] = + [143] = {field_endname, 4}, - [146] = + [144] = {field_generic_package_name, 5}, - [147] = + [145] = {field_default_subtype_mark, 5}, - [148] = + [146] = {field_abortable_part, 4}, - [149] = + [147] = {field_entry_direct_name, 1}, {field_entry_identifier, 6}, {field_parameter_profile, 2}, - [152] = + [150] = {field_condition, 1}, {field_condition, 4, .inherited = true}, - {field_statements, 3}, - {field_statements, 4, .inherited = true}, - [156] = + [152] = {field_parameter_profile, 6}, {field_subtype_mark, 4, .inherited = true}, - [158] = + [154] = {field_endname, 6}, - [159] = + [155] = {field_end_local_name, 7}, {field_local_name, 1}, - [161] = + [157] = {field_endname, 7}, {field_name, 2}, - [163] = + [159] = {field_endname, 8}, {field_name, 1}, - [165] = + [161] = {field_subtype_mark, 5, .inherited = true}, - [166] = + [162] = {field_subtype_mark, 5}, - [167] = - {field_condition, 1}, - {field_condition, 4, .inherited = true}, - [169] = + [163] = {field_default_subtype_mark, 6}, - [170] = + [164] = {field_condition, 1}, {field_else_statements, 5}, {field_statements, 3}, - [173] = + [167] = {field_endname, 7}, - [174] = + [168] = {field_end_local_name, 8}, {field_local_name, 1}, - [176] = + [170] = {field_endname, 8}, {field_name, 2}, - [178] = + [172] = {field_subtype_mark, 6, .inherited = true}, - [179] = + [173] = {field_default_subtype_mark, 7}, - [180] = + [174] = {field_condition, 1}, {field_else_statements, 6}, {field_statements, 3}, - [183] = + [177] = {field_entry_direct_name, 1}, {field_entry_identifier, 8}, {field_entry_index, 3}, - [186] = - {field_condition, 1}, - {field_condition, 4, .inherited = true}, - {field_else_statements, 6}, - {field_statements, 3}, - {field_statements, 4, .inherited = true}, - [191] = + [180] = {field_endname, 8}, - [192] = + [181] = {field_endname, 9}, {field_name, 2}, - [194] = + [183] = {field_subtype_mark, 7, .inherited = true}, - [195] = + [184] = {field_entry_direct_name, 1}, {field_entry_identifier, 9}, {field_entry_index, 3}, {field_parameter_profile, 5}, - [199] = + [188] = {field_first_bit, 4}, {field_last_bit, 6}, {field_local_name, 0}, @@ -4303,7 +4288,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [508] = 508, [509] = 509, [510] = 510, - [511] = 501, + [511] = 511, [512] = 512, [513] = 513, [514] = 514, @@ -4317,7 +4302,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [522] = 522, [523] = 523, [524] = 524, - [525] = 451, + [525] = 525, [526] = 526, [527] = 527, [528] = 528, @@ -4327,8 +4312,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [532] = 532, [533] = 533, [534] = 534, - [535] = 535, - [536] = 451, + [535] = 526, + [536] = 536, [537] = 537, [538] = 538, [539] = 539, @@ -4340,7 +4325,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [545] = 545, [546] = 546, [547] = 547, - [548] = 548, + [548] = 478, [549] = 549, [550] = 550, [551] = 551, @@ -4349,10 +4334,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [554] = 554, [555] = 555, [556] = 556, - [557] = 557, + [557] = 478, [558] = 558, [559] = 559, - [560] = 451, + [560] = 560, [561] = 561, [562] = 562, [563] = 563, @@ -4369,7 +4354,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [574] = 574, [575] = 575, [576] = 576, - [577] = 577, + [577] = 478, [578] = 578, [579] = 579, [580] = 580, @@ -4721,7 +4706,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [926] = 926, [927] = 927, [928] = 928, - [929] = 925, + [929] = 929, [930] = 930, [931] = 931, [932] = 932, @@ -4767,7 +4752,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [972] = 972, [973] = 973, [974] = 974, - [975] = 975, + [975] = 952, [976] = 976, [977] = 977, [978] = 978, @@ -5038,7 +5023,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1243] = 1243, [1244] = 1244, [1245] = 1245, - [1246] = 1216, + [1246] = 1246, [1247] = 1247, [1248] = 1248, [1249] = 1249, @@ -5156,7 +5141,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1361] = 1361, [1362] = 1362, [1363] = 1363, - [1364] = 1364, + [1364] = 1261, [1365] = 1365, [1366] = 1366, [1367] = 1367, @@ -5810,6 +5795,52 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2015] = 2015, [2016] = 2016, [2017] = 2017, + [2018] = 2018, + [2019] = 2019, + [2020] = 2020, + [2021] = 2021, + [2022] = 2022, + [2023] = 2023, + [2024] = 2024, + [2025] = 2025, + [2026] = 2026, + [2027] = 2027, + [2028] = 2028, + [2029] = 2029, + [2030] = 2030, + [2031] = 2031, + [2032] = 2032, + [2033] = 2033, + [2034] = 2034, + [2035] = 2035, + [2036] = 2036, + [2037] = 2037, + [2038] = 2038, + [2039] = 2039, + [2040] = 2040, + [2041] = 2041, + [2042] = 2042, + [2043] = 2043, + [2044] = 2044, + [2045] = 2045, + [2046] = 2046, + [2047] = 2047, + [2048] = 2048, + [2049] = 2049, + [2050] = 2050, + [2051] = 2051, + [2052] = 2052, + [2053] = 2053, + [2054] = 2054, + [2055] = 2055, + [2056] = 2056, + [2057] = 2057, + [2058] = 2058, + [2059] = 2059, + [2060] = 2060, + [2061] = 2061, + [2062] = 2062, + [2063] = 2063, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -8259,62 +8290,62 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [432] = {.lex_state = 48}, [433] = {.lex_state = 48}, [434] = {.lex_state = 48}, - [435] = {.lex_state = 10}, - [436] = {.lex_state = 10}, - [437] = {.lex_state = 10}, - [438] = {.lex_state = 10}, - [439] = {.lex_state = 10}, + [435] = {.lex_state = 48}, + [436] = {.lex_state = 48}, + [437] = {.lex_state = 48}, + [438] = {.lex_state = 48}, + [439] = {.lex_state = 48}, [440] = {.lex_state = 48}, - [441] = {.lex_state = 10}, - [442] = {.lex_state = 10}, - [443] = {.lex_state = 10}, - [444] = {.lex_state = 10}, - [445] = {.lex_state = 10}, - [446] = {.lex_state = 10}, - [447] = {.lex_state = 10}, - [448] = {.lex_state = 10}, - [449] = {.lex_state = 10}, - [450] = {.lex_state = 10}, - [451] = {.lex_state = 10}, - [452] = {.lex_state = 10}, - [453] = {.lex_state = 10}, - [454] = {.lex_state = 10}, - [455] = {.lex_state = 10}, - [456] = {.lex_state = 10}, - [457] = {.lex_state = 48}, - [458] = {.lex_state = 48}, + [441] = {.lex_state = 48}, + [442] = {.lex_state = 48}, + [443] = {.lex_state = 48}, + [444] = {.lex_state = 48}, + [445] = {.lex_state = 48}, + [446] = {.lex_state = 48}, + [447] = {.lex_state = 48}, + [448] = {.lex_state = 48}, + [449] = {.lex_state = 48}, + [450] = {.lex_state = 48}, + [451] = {.lex_state = 48}, + [452] = {.lex_state = 48}, + [453] = {.lex_state = 48}, + [454] = {.lex_state = 48}, + [455] = {.lex_state = 48}, + [456] = {.lex_state = 48}, + [457] = {.lex_state = 10}, + [458] = {.lex_state = 10}, [459] = {.lex_state = 10}, [460] = {.lex_state = 10}, [461] = {.lex_state = 10}, [462] = {.lex_state = 10}, - [463] = {.lex_state = 48}, - [464] = {.lex_state = 48}, + [463] = {.lex_state = 10}, + [464] = {.lex_state = 10}, [465] = {.lex_state = 48}, - [466] = {.lex_state = 48}, - [467] = {.lex_state = 48}, + [466] = {.lex_state = 10}, + [467] = {.lex_state = 10}, [468] = {.lex_state = 48}, - [469] = {.lex_state = 48}, - [470] = {.lex_state = 48}, - [471] = {.lex_state = 48}, - [472] = {.lex_state = 48}, - [473] = {.lex_state = 48}, - [474] = {.lex_state = 48}, - [475] = {.lex_state = 48}, - [476] = {.lex_state = 48}, - [477] = {.lex_state = 48}, - [478] = {.lex_state = 48}, - [479] = {.lex_state = 48}, - [480] = {.lex_state = 10}, - [481] = {.lex_state = 48}, - [482] = {.lex_state = 48}, - [483] = {.lex_state = 48}, + [469] = {.lex_state = 10}, + [470] = {.lex_state = 10}, + [471] = {.lex_state = 10}, + [472] = {.lex_state = 10}, + [473] = {.lex_state = 10}, + [474] = {.lex_state = 10}, + [475] = {.lex_state = 10}, + [476] = {.lex_state = 10}, + [477] = {.lex_state = 10}, + [478] = {.lex_state = 10}, + [479] = {.lex_state = 10}, + [480] = {.lex_state = 48}, + [481] = {.lex_state = 10}, + [482] = {.lex_state = 10}, + [483] = {.lex_state = 10}, [484] = {.lex_state = 48}, [485] = {.lex_state = 48}, [486] = {.lex_state = 48}, - [487] = {.lex_state = 48}, + [487] = {.lex_state = 10}, [488] = {.lex_state = 48}, - [489] = {.lex_state = 10}, - [490] = {.lex_state = 48}, + [489] = {.lex_state = 48}, + [490] = {.lex_state = 10}, [491] = {.lex_state = 48}, [492] = {.lex_state = 48}, [493] = {.lex_state = 48}, @@ -8324,90 +8355,90 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [497] = {.lex_state = 48}, [498] = {.lex_state = 48}, [499] = {.lex_state = 48}, - [500] = {.lex_state = 10}, - [501] = {.lex_state = 10}, - [502] = {.lex_state = 10}, - [503] = {.lex_state = 10}, - [504] = {.lex_state = 10}, - [505] = {.lex_state = 10}, - [506] = {.lex_state = 10}, - [507] = {.lex_state = 10}, + [500] = {.lex_state = 48}, + [501] = {.lex_state = 48}, + [502] = {.lex_state = 48}, + [503] = {.lex_state = 48}, + [504] = {.lex_state = 48}, + [505] = {.lex_state = 48}, + [506] = {.lex_state = 48}, + [507] = {.lex_state = 48}, [508] = {.lex_state = 48}, - [509] = {.lex_state = 10}, - [510] = {.lex_state = 10}, - [511] = {.lex_state = 10}, - [512] = {.lex_state = 10}, + [509] = {.lex_state = 48}, + [510] = {.lex_state = 48}, + [511] = {.lex_state = 48}, + [512] = {.lex_state = 48}, [513] = {.lex_state = 48}, [514] = {.lex_state = 10}, - [515] = {.lex_state = 10}, - [516] = {.lex_state = 10}, + [515] = {.lex_state = 48}, + [516] = {.lex_state = 48}, [517] = {.lex_state = 48}, [518] = {.lex_state = 48}, - [519] = {.lex_state = 10}, - [520] = {.lex_state = 10}, - [521] = {.lex_state = 10}, + [519] = {.lex_state = 48}, + [520] = {.lex_state = 48}, + [521] = {.lex_state = 48}, [522] = {.lex_state = 10}, - [523] = {.lex_state = 48}, - [524] = {.lex_state = 48}, + [523] = {.lex_state = 10}, + [524] = {.lex_state = 10}, [525] = {.lex_state = 10}, - [526] = {.lex_state = 11}, - [527] = {.lex_state = 48}, - [528] = {.lex_state = 11}, - [529] = {.lex_state = 11}, - [530] = {.lex_state = 11}, - [531] = {.lex_state = 11}, + [526] = {.lex_state = 10}, + [527] = {.lex_state = 10}, + [528] = {.lex_state = 10}, + [529] = {.lex_state = 10}, + [530] = {.lex_state = 10}, + [531] = {.lex_state = 10}, [532] = {.lex_state = 48}, - [533] = {.lex_state = 48}, - [534] = {.lex_state = 11}, - [535] = {.lex_state = 48}, + [533] = {.lex_state = 10}, + [534] = {.lex_state = 10}, + [535] = {.lex_state = 10}, [536] = {.lex_state = 10}, [537] = {.lex_state = 48}, - [538] = {.lex_state = 48}, + [538] = {.lex_state = 10}, [539] = {.lex_state = 48}, - [540] = {.lex_state = 7}, - [541] = {.lex_state = 48}, + [540] = {.lex_state = 10}, + [541] = {.lex_state = 10}, [542] = {.lex_state = 10}, - [543] = {.lex_state = 11}, - [544] = {.lex_state = 11}, - [545] = {.lex_state = 10}, - [546] = {.lex_state = 10}, - [547] = {.lex_state = 10}, - [548] = {.lex_state = 48}, - [549] = {.lex_state = 10}, - [550] = {.lex_state = 48}, - [551] = {.lex_state = 48}, - [552] = {.lex_state = 10}, + [543] = {.lex_state = 48}, + [544] = {.lex_state = 10}, + [545] = {.lex_state = 48}, + [546] = {.lex_state = 11}, + [547] = {.lex_state = 11}, + [548] = {.lex_state = 10}, + [549] = {.lex_state = 11}, + [550] = {.lex_state = 11}, + [551] = {.lex_state = 11}, + [552] = {.lex_state = 48}, [553] = {.lex_state = 48}, [554] = {.lex_state = 48}, - [555] = {.lex_state = 10}, + [555] = {.lex_state = 11}, [556] = {.lex_state = 48}, - [557] = {.lex_state = 48}, + [557] = {.lex_state = 10}, [558] = {.lex_state = 48}, [559] = {.lex_state = 48}, - [560] = {.lex_state = 10}, + [560] = {.lex_state = 48}, [561] = {.lex_state = 48}, - [562] = {.lex_state = 48}, - [563] = {.lex_state = 48}, + [562] = {.lex_state = 7}, + [563] = {.lex_state = 10}, [564] = {.lex_state = 48}, [565] = {.lex_state = 11}, - [566] = {.lex_state = 48}, - [567] = {.lex_state = 48}, - [568] = {.lex_state = 48}, - [569] = {.lex_state = 48}, - [570] = {.lex_state = 48}, - [571] = {.lex_state = 10}, + [566] = {.lex_state = 11}, + [567] = {.lex_state = 10}, + [568] = {.lex_state = 10}, + [569] = {.lex_state = 10}, + [570] = {.lex_state = 10}, + [571] = {.lex_state = 48}, [572] = {.lex_state = 48}, [573] = {.lex_state = 48}, [574] = {.lex_state = 48}, - [575] = {.lex_state = 48}, + [575] = {.lex_state = 10}, [576] = {.lex_state = 48}, - [577] = {.lex_state = 48}, + [577] = {.lex_state = 10}, [578] = {.lex_state = 48}, [579] = {.lex_state = 48}, [580] = {.lex_state = 48}, [581] = {.lex_state = 48}, [582] = {.lex_state = 48}, - [583] = {.lex_state = 48}, + [583] = {.lex_state = 10}, [584] = {.lex_state = 48}, [585] = {.lex_state = 48}, [586] = {.lex_state = 48}, @@ -8415,8 +8446,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [588] = {.lex_state = 48}, [589] = {.lex_state = 48}, [590] = {.lex_state = 48}, - [591] = {.lex_state = 48}, - [592] = {.lex_state = 48}, + [591] = {.lex_state = 10}, + [592] = {.lex_state = 11}, [593] = {.lex_state = 48}, [594] = {.lex_state = 48}, [595] = {.lex_state = 48}, @@ -8444,7 +8475,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [617] = {.lex_state = 48}, [618] = {.lex_state = 48}, [619] = {.lex_state = 48}, - [620] = {.lex_state = 11}, + [620] = {.lex_state = 48}, [621] = {.lex_state = 48}, [622] = {.lex_state = 48}, [623] = {.lex_state = 48}, @@ -8472,20 +8503,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [645] = {.lex_state = 48}, [646] = {.lex_state = 48}, [647] = {.lex_state = 48}, - [648] = {.lex_state = 10}, + [648] = {.lex_state = 48}, [649] = {.lex_state = 48}, [650] = {.lex_state = 48}, [651] = {.lex_state = 48}, [652] = {.lex_state = 48}, [653] = {.lex_state = 48}, [654] = {.lex_state = 48}, - [655] = {.lex_state = 10}, + [655] = {.lex_state = 48}, [656] = {.lex_state = 48}, [657] = {.lex_state = 48}, [658] = {.lex_state = 48}, [659] = {.lex_state = 48}, [660] = {.lex_state = 48}, - [661] = {.lex_state = 48}, + [661] = {.lex_state = 11}, [662] = {.lex_state = 48}, [663] = {.lex_state = 48}, [664] = {.lex_state = 48}, @@ -8503,8 +8534,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [676] = {.lex_state = 48}, [677] = {.lex_state = 48}, [678] = {.lex_state = 48}, - [679] = {.lex_state = 48}, - [680] = {.lex_state = 48}, + [679] = {.lex_state = 10}, + [680] = {.lex_state = 10}, [681] = {.lex_state = 48}, [682] = {.lex_state = 48}, [683] = {.lex_state = 48}, @@ -8603,11 +8634,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [776] = {.lex_state = 48}, [777] = {.lex_state = 48}, [778] = {.lex_state = 48}, - [779] = {.lex_state = 11}, + [779] = {.lex_state = 48}, [780] = {.lex_state = 48}, - [781] = {.lex_state = 11}, + [781] = {.lex_state = 48}, [782] = {.lex_state = 48}, - [783] = {.lex_state = 11}, + [783] = {.lex_state = 48}, [784] = {.lex_state = 48}, [785] = {.lex_state = 48}, [786] = {.lex_state = 48}, @@ -8615,20 +8646,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [788] = {.lex_state = 48}, [789] = {.lex_state = 48}, [790] = {.lex_state = 48}, - [791] = {.lex_state = 10}, + [791] = {.lex_state = 48}, [792] = {.lex_state = 48}, [793] = {.lex_state = 48}, [794] = {.lex_state = 48}, - [795] = {.lex_state = 11}, + [795] = {.lex_state = 48}, [796] = {.lex_state = 48}, [797] = {.lex_state = 48}, - [798] = {.lex_state = 48}, + [798] = {.lex_state = 11}, [799] = {.lex_state = 48}, [800] = {.lex_state = 48}, [801] = {.lex_state = 48}, [802] = {.lex_state = 48}, [803] = {.lex_state = 48}, - [804] = {.lex_state = 11}, + [804] = {.lex_state = 48}, [805] = {.lex_state = 48}, [806] = {.lex_state = 48}, [807] = {.lex_state = 48}, @@ -8649,15 +8680,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [822] = {.lex_state = 48}, [823] = {.lex_state = 48}, [824] = {.lex_state = 48}, - [825] = {.lex_state = 10}, + [825] = {.lex_state = 48}, [826] = {.lex_state = 48}, - [827] = {.lex_state = 0}, - [828] = {.lex_state = 0}, + [827] = {.lex_state = 48}, + [828] = {.lex_state = 48}, [829] = {.lex_state = 48}, [830] = {.lex_state = 48}, - [831] = {.lex_state = 48}, + [831] = {.lex_state = 11}, [832] = {.lex_state = 48}, - [833] = {.lex_state = 48}, + [833] = {.lex_state = 10}, [834] = {.lex_state = 48}, [835] = {.lex_state = 48}, [836] = {.lex_state = 48}, @@ -8669,256 +8700,256 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [842] = {.lex_state = 48}, [843] = {.lex_state = 48}, [844] = {.lex_state = 48}, - [845] = {.lex_state = 48}, + [845] = {.lex_state = 11}, [846] = {.lex_state = 48}, [847] = {.lex_state = 48}, - [848] = {.lex_state = 48}, - [849] = {.lex_state = 48}, + [848] = {.lex_state = 11}, + [849] = {.lex_state = 11}, [850] = {.lex_state = 48}, - [851] = {.lex_state = 11}, - [852] = {.lex_state = 11}, - [853] = {.lex_state = 48}, - [854] = {.lex_state = 11}, - [855] = {.lex_state = 11}, - [856] = {.lex_state = 11}, - [857] = {.lex_state = 11}, - [858] = {.lex_state = 11}, - [859] = {.lex_state = 11}, - [860] = {.lex_state = 11}, - [861] = {.lex_state = 11}, - [862] = {.lex_state = 11}, - [863] = {.lex_state = 11}, - [864] = {.lex_state = 11}, - [865] = {.lex_state = 11}, - [866] = {.lex_state = 11}, - [867] = {.lex_state = 11}, - [868] = {.lex_state = 11}, - [869] = {.lex_state = 11}, - [870] = {.lex_state = 11}, + [851] = {.lex_state = 48}, + [852] = {.lex_state = 48}, + [853] = {.lex_state = 0}, + [854] = {.lex_state = 48}, + [855] = {.lex_state = 48}, + [856] = {.lex_state = 0}, + [857] = {.lex_state = 10}, + [858] = {.lex_state = 48}, + [859] = {.lex_state = 48}, + [860] = {.lex_state = 48}, + [861] = {.lex_state = 48}, + [862] = {.lex_state = 48}, + [863] = {.lex_state = 48}, + [864] = {.lex_state = 48}, + [865] = {.lex_state = 48}, + [866] = {.lex_state = 48}, + [867] = {.lex_state = 48}, + [868] = {.lex_state = 48}, + [869] = {.lex_state = 48}, + [870] = {.lex_state = 48}, [871] = {.lex_state = 48}, [872] = {.lex_state = 48}, [873] = {.lex_state = 48}, [874] = {.lex_state = 48}, - [875] = {.lex_state = 48}, - [876] = {.lex_state = 48}, - [877] = {.lex_state = 48}, + [875] = {.lex_state = 11}, + [876] = {.lex_state = 11}, + [877] = {.lex_state = 11}, [878] = {.lex_state = 48}, [879] = {.lex_state = 48}, [880] = {.lex_state = 48}, [881] = {.lex_state = 48}, [882] = {.lex_state = 48}, - [883] = {.lex_state = 48}, + [883] = {.lex_state = 11}, [884] = {.lex_state = 11}, - [885] = {.lex_state = 48}, - [886] = {.lex_state = 48}, - [887] = {.lex_state = 48}, - [888] = {.lex_state = 48}, + [885] = {.lex_state = 11}, + [886] = {.lex_state = 11}, + [887] = {.lex_state = 11}, + [888] = {.lex_state = 11}, [889] = {.lex_state = 11}, - [890] = {.lex_state = 48}, - [891] = {.lex_state = 48}, - [892] = {.lex_state = 48}, - [893] = {.lex_state = 10}, - [894] = {.lex_state = 48}, - [895] = {.lex_state = 48}, - [896] = {.lex_state = 48}, + [890] = {.lex_state = 11}, + [891] = {.lex_state = 11}, + [892] = {.lex_state = 11}, + [893] = {.lex_state = 11}, + [894] = {.lex_state = 11}, + [895] = {.lex_state = 11}, + [896] = {.lex_state = 11}, [897] = {.lex_state = 11}, - [898] = {.lex_state = 48}, - [899] = {.lex_state = 11}, + [898] = {.lex_state = 11}, + [899] = {.lex_state = 48}, [900] = {.lex_state = 48}, [901] = {.lex_state = 48}, [902] = {.lex_state = 48}, [903] = {.lex_state = 48}, [904] = {.lex_state = 48}, [905] = {.lex_state = 48}, - [906] = {.lex_state = 48}, + [906] = {.lex_state = 11}, [907] = {.lex_state = 48}, [908] = {.lex_state = 48}, - [909] = {.lex_state = 11}, - [910] = {.lex_state = 11}, - [911] = {.lex_state = 48}, - [912] = {.lex_state = 11}, + [909] = {.lex_state = 48}, + [910] = {.lex_state = 48}, + [911] = {.lex_state = 10}, + [912] = {.lex_state = 48}, [913] = {.lex_state = 48}, - [914] = {.lex_state = 10}, + [914] = {.lex_state = 11}, [915] = {.lex_state = 48}, [916] = {.lex_state = 48}, [917] = {.lex_state = 48}, [918] = {.lex_state = 48}, - [919] = {.lex_state = 48}, + [919] = {.lex_state = 11}, [920] = {.lex_state = 11}, [921] = {.lex_state = 11}, - [922] = {.lex_state = 11}, + [922] = {.lex_state = 48}, [923] = {.lex_state = 48}, - [924] = {.lex_state = 11}, - [925] = {.lex_state = 10}, - [926] = {.lex_state = 11}, - [927] = {.lex_state = 11}, - [928] = {.lex_state = 48}, - [929] = {.lex_state = 0}, + [924] = {.lex_state = 48}, + [925] = {.lex_state = 48}, + [926] = {.lex_state = 48}, + [927] = {.lex_state = 48}, + [928] = {.lex_state = 11}, + [929] = {.lex_state = 48}, [930] = {.lex_state = 48}, [931] = {.lex_state = 48}, - [932] = {.lex_state = 11}, - [933] = {.lex_state = 11}, - [934] = {.lex_state = 48}, - [935] = {.lex_state = 11}, - [936] = {.lex_state = 11}, - [937] = {.lex_state = 11}, + [932] = {.lex_state = 48}, + [933] = {.lex_state = 48}, + [934] = {.lex_state = 10}, + [935] = {.lex_state = 48}, + [936] = {.lex_state = 48}, + [937] = {.lex_state = 48}, [938] = {.lex_state = 48}, [939] = {.lex_state = 48}, [940] = {.lex_state = 48}, - [941] = {.lex_state = 10}, + [941] = {.lex_state = 11}, [942] = {.lex_state = 48}, [943] = {.lex_state = 48}, [944] = {.lex_state = 48}, [945] = {.lex_state = 48}, - [946] = {.lex_state = 11}, + [946] = {.lex_state = 48}, [947] = {.lex_state = 11}, - [948] = {.lex_state = 11}, - [949] = {.lex_state = 11}, - [950] = {.lex_state = 10}, + [948] = {.lex_state = 10}, + [949] = {.lex_state = 48}, + [950] = {.lex_state = 48}, [951] = {.lex_state = 11}, - [952] = {.lex_state = 11}, + [952] = {.lex_state = 0}, [953] = {.lex_state = 11}, - [954] = {.lex_state = 11}, + [954] = {.lex_state = 48}, [955] = {.lex_state = 11}, [956] = {.lex_state = 48}, - [957] = {.lex_state = 48}, - [958] = {.lex_state = 48}, + [957] = {.lex_state = 10}, + [958] = {.lex_state = 11}, [959] = {.lex_state = 48}, - [960] = {.lex_state = 48}, + [960] = {.lex_state = 11}, [961] = {.lex_state = 48}, [962] = {.lex_state = 48}, [963] = {.lex_state = 11}, [964] = {.lex_state = 11}, - [965] = {.lex_state = 48}, + [965] = {.lex_state = 11}, [966] = {.lex_state = 48}, - [967] = {.lex_state = 48}, - [968] = {.lex_state = 48}, - [969] = {.lex_state = 10}, + [967] = {.lex_state = 11}, + [968] = {.lex_state = 11}, + [969] = {.lex_state = 11}, [970] = {.lex_state = 48}, [971] = {.lex_state = 11}, [972] = {.lex_state = 11}, - [973] = {.lex_state = 0}, - [974] = {.lex_state = 0}, - [975] = {.lex_state = 0}, - [976] = {.lex_state = 48}, - [977] = {.lex_state = 48}, + [973] = {.lex_state = 11}, + [974] = {.lex_state = 11}, + [975] = {.lex_state = 10}, + [976] = {.lex_state = 11}, + [977] = {.lex_state = 11}, [978] = {.lex_state = 48}, [979] = {.lex_state = 48}, [980] = {.lex_state = 48}, [981] = {.lex_state = 48}, - [982] = {.lex_state = 48}, - [983] = {.lex_state = 48}, + [982] = {.lex_state = 11}, + [983] = {.lex_state = 11}, [984] = {.lex_state = 48}, - [985] = {.lex_state = 48}, - [986] = {.lex_state = 10}, + [985] = {.lex_state = 0}, + [986] = {.lex_state = 48}, [987] = {.lex_state = 48}, [988] = {.lex_state = 48}, - [989] = {.lex_state = 0}, - [990] = {.lex_state = 48}, - [991] = {.lex_state = 10}, - [992] = {.lex_state = 10}, - [993] = {.lex_state = 11}, + [989] = {.lex_state = 48}, + [990] = {.lex_state = 11}, + [991] = {.lex_state = 48}, + [992] = {.lex_state = 48}, + [993] = {.lex_state = 48}, [994] = {.lex_state = 48}, [995] = {.lex_state = 48}, [996] = {.lex_state = 48}, - [997] = {.lex_state = 11}, - [998] = {.lex_state = 10}, + [997] = {.lex_state = 48}, + [998] = {.lex_state = 48}, [999] = {.lex_state = 48}, - [1000] = {.lex_state = 10}, - [1001] = {.lex_state = 48}, + [1000] = {.lex_state = 11}, + [1001] = {.lex_state = 11}, [1002] = {.lex_state = 48}, [1003] = {.lex_state = 48}, [1004] = {.lex_state = 48}, [1005] = {.lex_state = 48}, [1006] = {.lex_state = 48}, - [1007] = {.lex_state = 10}, - [1008] = {.lex_state = 48}, - [1009] = {.lex_state = 48}, + [1007] = {.lex_state = 48}, + [1008] = {.lex_state = 11}, + [1009] = {.lex_state = 0}, [1010] = {.lex_state = 0}, [1011] = {.lex_state = 48}, [1012] = {.lex_state = 10}, - [1013] = {.lex_state = 48}, - [1014] = {.lex_state = 10}, - [1015] = {.lex_state = 48}, + [1013] = {.lex_state = 10}, + [1014] = {.lex_state = 48}, + [1015] = {.lex_state = 10}, [1016] = {.lex_state = 10}, - [1017] = {.lex_state = 48}, + [1017] = {.lex_state = 10}, [1018] = {.lex_state = 48}, - [1019] = {.lex_state = 48}, - [1020] = {.lex_state = 10}, + [1019] = {.lex_state = 10}, + [1020] = {.lex_state = 48}, [1021] = {.lex_state = 10}, - [1022] = {.lex_state = 11}, + [1022] = {.lex_state = 48}, [1023] = {.lex_state = 48}, - [1024] = {.lex_state = 48}, - [1025] = {.lex_state = 11}, - [1026] = {.lex_state = 10}, - [1027] = {.lex_state = 48}, - [1028] = {.lex_state = 10}, - [1029] = {.lex_state = 48}, - [1030] = {.lex_state = 10}, - [1031] = {.lex_state = 10}, - [1032] = {.lex_state = 10}, + [1024] = {.lex_state = 10}, + [1025] = {.lex_state = 48}, + [1026] = {.lex_state = 11}, + [1027] = {.lex_state = 0}, + [1028] = {.lex_state = 48}, + [1029] = {.lex_state = 10}, + [1030] = {.lex_state = 0}, + [1031] = {.lex_state = 48}, + [1032] = {.lex_state = 48}, [1033] = {.lex_state = 48}, [1034] = {.lex_state = 48}, [1035] = {.lex_state = 48}, - [1036] = {.lex_state = 48}, + [1036] = {.lex_state = 10}, [1037] = {.lex_state = 48}, [1038] = {.lex_state = 48}, - [1039] = {.lex_state = 10}, + [1039] = {.lex_state = 11}, [1040] = {.lex_state = 48}, - [1041] = {.lex_state = 48}, + [1041] = {.lex_state = 10}, [1042] = {.lex_state = 48}, - [1043] = {.lex_state = 0}, - [1044] = {.lex_state = 10}, - [1045] = {.lex_state = 11}, + [1043] = {.lex_state = 48}, + [1044] = {.lex_state = 48}, + [1045] = {.lex_state = 48}, [1046] = {.lex_state = 10}, [1047] = {.lex_state = 48}, [1048] = {.lex_state = 48}, - [1049] = {.lex_state = 10}, - [1050] = {.lex_state = 10}, - [1051] = {.lex_state = 10}, - [1052] = {.lex_state = 10}, + [1049] = {.lex_state = 11}, + [1050] = {.lex_state = 48}, + [1051] = {.lex_state = 48}, + [1052] = {.lex_state = 48}, [1053] = {.lex_state = 48}, - [1054] = {.lex_state = 11}, + [1054] = {.lex_state = 10}, [1055] = {.lex_state = 48}, - [1056] = {.lex_state = 0}, + [1056] = {.lex_state = 48}, [1057] = {.lex_state = 11}, [1058] = {.lex_state = 48}, [1059] = {.lex_state = 48}, [1060] = {.lex_state = 48}, [1061] = {.lex_state = 48}, - [1062] = {.lex_state = 48}, - [1063] = {.lex_state = 48}, - [1064] = {.lex_state = 11}, - [1065] = {.lex_state = 10}, + [1062] = {.lex_state = 10}, + [1063] = {.lex_state = 11}, + [1064] = {.lex_state = 10}, + [1065] = {.lex_state = 11}, [1066] = {.lex_state = 48}, - [1067] = {.lex_state = 11}, + [1067] = {.lex_state = 48}, [1068] = {.lex_state = 48}, - [1069] = {.lex_state = 48}, + [1069] = {.lex_state = 0}, [1070] = {.lex_state = 48}, - [1071] = {.lex_state = 48}, - [1072] = {.lex_state = 48}, - [1073] = {.lex_state = 0}, + [1071] = {.lex_state = 0}, + [1072] = {.lex_state = 11}, + [1073] = {.lex_state = 48}, [1074] = {.lex_state = 48}, [1075] = {.lex_state = 48}, - [1076] = {.lex_state = 48}, + [1076] = {.lex_state = 11}, [1077] = {.lex_state = 48}, - [1078] = {.lex_state = 0}, + [1078] = {.lex_state = 10}, [1079] = {.lex_state = 48}, - [1080] = {.lex_state = 48}, - [1081] = {.lex_state = 48}, + [1080] = {.lex_state = 10}, + [1081] = {.lex_state = 10}, [1082] = {.lex_state = 48}, - [1083] = {.lex_state = 48}, + [1083] = {.lex_state = 10}, [1084] = {.lex_state = 48}, [1085] = {.lex_state = 48}, - [1086] = {.lex_state = 48}, - [1087] = {.lex_state = 0}, - [1088] = {.lex_state = 48}, - [1089] = {.lex_state = 48}, - [1090] = {.lex_state = 48}, + [1086] = {.lex_state = 10}, + [1087] = {.lex_state = 11}, + [1088] = {.lex_state = 10}, + [1089] = {.lex_state = 10}, + [1090] = {.lex_state = 10}, [1091] = {.lex_state = 48}, - [1092] = {.lex_state = 48}, + [1092] = {.lex_state = 10}, [1093] = {.lex_state = 48}, - [1094] = {.lex_state = 48}, + [1094] = {.lex_state = 10}, [1095] = {.lex_state = 48}, [1096] = {.lex_state = 48}, [1097] = {.lex_state = 48}, @@ -8927,33 +8958,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1100] = {.lex_state = 48}, [1101] = {.lex_state = 48}, [1102] = {.lex_state = 48}, - [1103] = {.lex_state = 48}, + [1103] = {.lex_state = 0}, [1104] = {.lex_state = 48}, [1105] = {.lex_state = 48}, [1106] = {.lex_state = 48}, - [1107] = {.lex_state = 48}, + [1107] = {.lex_state = 0}, [1108] = {.lex_state = 48}, [1109] = {.lex_state = 48}, - [1110] = {.lex_state = 0}, + [1110] = {.lex_state = 48}, [1111] = {.lex_state = 48}, [1112] = {.lex_state = 48}, [1113] = {.lex_state = 48}, - [1114] = {.lex_state = 0}, + [1114] = {.lex_state = 48}, [1115] = {.lex_state = 48}, - [1116] = {.lex_state = 0}, + [1116] = {.lex_state = 48}, [1117] = {.lex_state = 48}, [1118] = {.lex_state = 48}, - [1119] = {.lex_state = 0}, - [1120] = {.lex_state = 48}, + [1119] = {.lex_state = 48}, + [1120] = {.lex_state = 0}, [1121] = {.lex_state = 48}, - [1122] = {.lex_state = 11}, + [1122] = {.lex_state = 48}, [1123] = {.lex_state = 48}, [1124] = {.lex_state = 48}, [1125] = {.lex_state = 48}, [1126] = {.lex_state = 48}, [1127] = {.lex_state = 48}, [1128] = {.lex_state = 48}, - [1129] = {.lex_state = 0}, + [1129] = {.lex_state = 48}, [1130] = {.lex_state = 48}, [1131] = {.lex_state = 48}, [1132] = {.lex_state = 48}, @@ -8962,87 +8993,87 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1135] = {.lex_state = 48}, [1136] = {.lex_state = 48}, [1137] = {.lex_state = 48}, - [1138] = {.lex_state = 0}, + [1138] = {.lex_state = 48}, [1139] = {.lex_state = 48}, [1140] = {.lex_state = 48}, - [1141] = {.lex_state = 48}, + [1141] = {.lex_state = 0}, [1142] = {.lex_state = 48}, [1143] = {.lex_state = 48}, [1144] = {.lex_state = 48}, - [1145] = {.lex_state = 48}, + [1145] = {.lex_state = 0}, [1146] = {.lex_state = 48}, [1147] = {.lex_state = 48}, [1148] = {.lex_state = 48}, [1149] = {.lex_state = 48}, - [1150] = {.lex_state = 0}, - [1151] = {.lex_state = 0}, - [1152] = {.lex_state = 48}, - [1153] = {.lex_state = 11}, + [1150] = {.lex_state = 48}, + [1151] = {.lex_state = 48}, + [1152] = {.lex_state = 0}, + [1153] = {.lex_state = 0}, [1154] = {.lex_state = 48}, [1155] = {.lex_state = 48}, - [1156] = {.lex_state = 0}, + [1156] = {.lex_state = 48}, [1157] = {.lex_state = 48}, - [1158] = {.lex_state = 0}, + [1158] = {.lex_state = 48}, [1159] = {.lex_state = 48}, [1160] = {.lex_state = 0}, [1161] = {.lex_state = 48}, - [1162] = {.lex_state = 48}, + [1162] = {.lex_state = 0}, [1163] = {.lex_state = 48}, [1164] = {.lex_state = 48}, [1165] = {.lex_state = 48}, [1166] = {.lex_state = 48}, [1167] = {.lex_state = 48}, [1168] = {.lex_state = 48}, - [1169] = {.lex_state = 48}, + [1169] = {.lex_state = 0}, [1170] = {.lex_state = 48}, [1171] = {.lex_state = 48}, [1172] = {.lex_state = 0}, - [1173] = {.lex_state = 0}, - [1174] = {.lex_state = 0}, - [1175] = {.lex_state = 48}, - [1176] = {.lex_state = 48}, + [1173] = {.lex_state = 48}, + [1174] = {.lex_state = 48}, + [1175] = {.lex_state = 0}, + [1176] = {.lex_state = 0}, [1177] = {.lex_state = 48}, - [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 0}, - [1180] = {.lex_state = 0}, - [1181] = {.lex_state = 0}, - [1182] = {.lex_state = 0}, - [1183] = {.lex_state = 0}, + [1178] = {.lex_state = 48}, + [1179] = {.lex_state = 48}, + [1180] = {.lex_state = 48}, + [1181] = {.lex_state = 48}, + [1182] = {.lex_state = 48}, + [1183] = {.lex_state = 48}, [1184] = {.lex_state = 48}, [1185] = {.lex_state = 48}, [1186] = {.lex_state = 48}, - [1187] = {.lex_state = 0}, - [1188] = {.lex_state = 48}, - [1189] = {.lex_state = 0}, - [1190] = {.lex_state = 48}, - [1191] = {.lex_state = 0}, + [1187] = {.lex_state = 48}, + [1188] = {.lex_state = 0}, + [1189] = {.lex_state = 11}, + [1190] = {.lex_state = 11}, + [1191] = {.lex_state = 48}, [1192] = {.lex_state = 48}, [1193] = {.lex_state = 48}, - [1194] = {.lex_state = 0}, - [1195] = {.lex_state = 48}, + [1194] = {.lex_state = 48}, + [1195] = {.lex_state = 0}, [1196] = {.lex_state = 48}, - [1197] = {.lex_state = 0}, + [1197] = {.lex_state = 48}, [1198] = {.lex_state = 48}, [1199] = {.lex_state = 48}, [1200] = {.lex_state = 48}, - [1201] = {.lex_state = 48}, + [1201] = {.lex_state = 0}, [1202] = {.lex_state = 48}, - [1203] = {.lex_state = 48}, + [1203] = {.lex_state = 0}, [1204] = {.lex_state = 48}, [1205] = {.lex_state = 48}, [1206] = {.lex_state = 48}, [1207] = {.lex_state = 48}, - [1208] = {.lex_state = 48}, + [1208] = {.lex_state = 0}, [1209] = {.lex_state = 48}, [1210] = {.lex_state = 48}, - [1211] = {.lex_state = 48}, + [1211] = {.lex_state = 0}, [1212] = {.lex_state = 48}, - [1213] = {.lex_state = 48}, + [1213] = {.lex_state = 0}, [1214] = {.lex_state = 48}, - [1215] = {.lex_state = 48}, - [1216] = {.lex_state = 0}, - [1217] = {.lex_state = 48}, - [1218] = {.lex_state = 48}, + [1215] = {.lex_state = 0}, + [1216] = {.lex_state = 48}, + [1217] = {.lex_state = 0}, + [1218] = {.lex_state = 0}, [1219] = {.lex_state = 48}, [1220] = {.lex_state = 48}, [1221] = {.lex_state = 48}, @@ -9050,90 +9081,90 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1223] = {.lex_state = 48}, [1224] = {.lex_state = 48}, [1225] = {.lex_state = 48}, - [1226] = {.lex_state = 0}, + [1226] = {.lex_state = 48}, [1227] = {.lex_state = 48}, - [1228] = {.lex_state = 48}, + [1228] = {.lex_state = 0}, [1229] = {.lex_state = 48}, - [1230] = {.lex_state = 48}, + [1230] = {.lex_state = 0}, [1231] = {.lex_state = 0}, - [1232] = {.lex_state = 48}, - [1233] = {.lex_state = 48}, + [1232] = {.lex_state = 0}, + [1233] = {.lex_state = 0}, [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 0}, + [1235] = {.lex_state = 48}, [1236] = {.lex_state = 48}, [1237] = {.lex_state = 0}, - [1238] = {.lex_state = 0}, + [1238] = {.lex_state = 48}, [1239] = {.lex_state = 48}, - [1240] = {.lex_state = 48}, + [1240] = {.lex_state = 0}, [1241] = {.lex_state = 48}, [1242] = {.lex_state = 48}, [1243] = {.lex_state = 48}, [1244] = {.lex_state = 0}, - [1245] = {.lex_state = 0}, - [1246] = {.lex_state = 48}, - [1247] = {.lex_state = 48}, - [1248] = {.lex_state = 0}, - [1249] = {.lex_state = 48}, - [1250] = {.lex_state = 0}, - [1251] = {.lex_state = 0}, - [1252] = {.lex_state = 48}, - [1253] = {.lex_state = 48}, + [1245] = {.lex_state = 48}, + [1246] = {.lex_state = 0}, + [1247] = {.lex_state = 0}, + [1248] = {.lex_state = 48}, + [1249] = {.lex_state = 0}, + [1250] = {.lex_state = 48}, + [1251] = {.lex_state = 48}, + [1252] = {.lex_state = 0}, + [1253] = {.lex_state = 0}, [1254] = {.lex_state = 0}, - [1255] = {.lex_state = 48}, + [1255] = {.lex_state = 0}, [1256] = {.lex_state = 48}, [1257] = {.lex_state = 48}, [1258] = {.lex_state = 48}, - [1259] = {.lex_state = 0}, + [1259] = {.lex_state = 48}, [1260] = {.lex_state = 48}, - [1261] = {.lex_state = 0}, - [1262] = {.lex_state = 48}, + [1261] = {.lex_state = 48}, + [1262] = {.lex_state = 0}, [1263] = {.lex_state = 48}, [1264] = {.lex_state = 48}, [1265] = {.lex_state = 48}, [1266] = {.lex_state = 48}, - [1267] = {.lex_state = 48}, - [1268] = {.lex_state = 48}, - [1269] = {.lex_state = 48}, - [1270] = {.lex_state = 0}, + [1267] = {.lex_state = 0}, + [1268] = {.lex_state = 0}, + [1269] = {.lex_state = 0}, + [1270] = {.lex_state = 48}, [1271] = {.lex_state = 48}, [1272] = {.lex_state = 48}, [1273] = {.lex_state = 48}, [1274] = {.lex_state = 48}, - [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 48}, + [1275] = {.lex_state = 48}, + [1276] = {.lex_state = 0}, [1277] = {.lex_state = 48}, [1278] = {.lex_state = 48}, [1279] = {.lex_state = 48}, - [1280] = {.lex_state = 48}, + [1280] = {.lex_state = 0}, [1281] = {.lex_state = 48}, [1282] = {.lex_state = 48}, [1283] = {.lex_state = 48}, [1284] = {.lex_state = 48}, [1285] = {.lex_state = 48}, [1286] = {.lex_state = 48}, - [1287] = {.lex_state = 0}, + [1287] = {.lex_state = 48}, [1288] = {.lex_state = 48}, - [1289] = {.lex_state = 0}, - [1290] = {.lex_state = 0}, - [1291] = {.lex_state = 48}, - [1292] = {.lex_state = 48}, + [1289] = {.lex_state = 48}, + [1290] = {.lex_state = 48}, + [1291] = {.lex_state = 0}, + [1292] = {.lex_state = 0}, [1293] = {.lex_state = 48}, - [1294] = {.lex_state = 0}, + [1294] = {.lex_state = 48}, [1295] = {.lex_state = 48}, [1296] = {.lex_state = 48}, [1297] = {.lex_state = 48}, - [1298] = {.lex_state = 48}, + [1298] = {.lex_state = 0}, [1299] = {.lex_state = 48}, [1300] = {.lex_state = 48}, - [1301] = {.lex_state = 48}, + [1301] = {.lex_state = 0}, [1302] = {.lex_state = 48}, [1303] = {.lex_state = 48}, [1304] = {.lex_state = 48}, [1305] = {.lex_state = 48}, - [1306] = {.lex_state = 0}, + [1306] = {.lex_state = 48}, [1307] = {.lex_state = 48}, - [1308] = {.lex_state = 0}, - [1309] = {.lex_state = 0}, + [1308] = {.lex_state = 48}, + [1309] = {.lex_state = 48}, [1310] = {.lex_state = 48}, [1311] = {.lex_state = 48}, [1312] = {.lex_state = 48}, @@ -9141,62 +9172,62 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1314] = {.lex_state = 48}, [1315] = {.lex_state = 48}, [1316] = {.lex_state = 48}, - [1317] = {.lex_state = 0}, + [1317] = {.lex_state = 48}, [1318] = {.lex_state = 48}, [1319] = {.lex_state = 48}, [1320] = {.lex_state = 48}, [1321] = {.lex_state = 48}, - [1322] = {.lex_state = 48}, + [1322] = {.lex_state = 0}, [1323] = {.lex_state = 48}, [1324] = {.lex_state = 48}, [1325] = {.lex_state = 48}, [1326] = {.lex_state = 48}, [1327] = {.lex_state = 48}, - [1328] = {.lex_state = 48}, + [1328] = {.lex_state = 0}, [1329] = {.lex_state = 48}, [1330] = {.lex_state = 48}, - [1331] = {.lex_state = 0}, - [1332] = {.lex_state = 48}, - [1333] = {.lex_state = 0}, - [1334] = {.lex_state = 0}, - [1335] = {.lex_state = 0}, - [1336] = {.lex_state = 48}, - [1337] = {.lex_state = 48}, - [1338] = {.lex_state = 48}, - [1339] = {.lex_state = 0}, - [1340] = {.lex_state = 48}, - [1341] = {.lex_state = 0}, - [1342] = {.lex_state = 0}, - [1343] = {.lex_state = 0}, + [1331] = {.lex_state = 48}, + [1332] = {.lex_state = 0}, + [1333] = {.lex_state = 48}, + [1334] = {.lex_state = 48}, + [1335] = {.lex_state = 48}, + [1336] = {.lex_state = 0}, + [1337] = {.lex_state = 0}, + [1338] = {.lex_state = 0}, + [1339] = {.lex_state = 48}, + [1340] = {.lex_state = 0}, + [1341] = {.lex_state = 48}, + [1342] = {.lex_state = 48}, + [1343] = {.lex_state = 48}, [1344] = {.lex_state = 48}, [1345] = {.lex_state = 48}, [1346] = {.lex_state = 48}, [1347] = {.lex_state = 48}, [1348] = {.lex_state = 48}, - [1349] = {.lex_state = 48}, + [1349] = {.lex_state = 0}, [1350] = {.lex_state = 0}, [1351] = {.lex_state = 48}, [1352] = {.lex_state = 48}, - [1353] = {.lex_state = 0}, - [1354] = {.lex_state = 0}, + [1353] = {.lex_state = 48}, + [1354] = {.lex_state = 48}, [1355] = {.lex_state = 48}, [1356] = {.lex_state = 48}, - [1357] = {.lex_state = 0}, - [1358] = {.lex_state = 0}, + [1357] = {.lex_state = 48}, + [1358] = {.lex_state = 48}, [1359] = {.lex_state = 48}, - [1360] = {.lex_state = 48}, + [1360] = {.lex_state = 0}, [1361] = {.lex_state = 48}, - [1362] = {.lex_state = 0}, + [1362] = {.lex_state = 48}, [1363] = {.lex_state = 48}, [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 48}, + [1365] = {.lex_state = 0}, [1366] = {.lex_state = 48}, - [1367] = {.lex_state = 0}, - [1368] = {.lex_state = 48}, - [1369] = {.lex_state = 0}, - [1370] = {.lex_state = 0}, + [1367] = {.lex_state = 48}, + [1368] = {.lex_state = 0}, + [1369] = {.lex_state = 48}, + [1370] = {.lex_state = 48}, [1371] = {.lex_state = 0}, - [1372] = {.lex_state = 0}, + [1372] = {.lex_state = 48}, [1373] = {.lex_state = 48}, [1374] = {.lex_state = 48}, [1375] = {.lex_state = 0}, @@ -9205,20 +9236,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1378] = {.lex_state = 48}, [1379] = {.lex_state = 48}, [1380] = {.lex_state = 48}, - [1381] = {.lex_state = 0}, - [1382] = {.lex_state = 0}, + [1381] = {.lex_state = 48}, + [1382] = {.lex_state = 48}, [1383] = {.lex_state = 48}, - [1384] = {.lex_state = 48}, + [1384] = {.lex_state = 0}, [1385] = {.lex_state = 48}, - [1386] = {.lex_state = 48}, + [1386] = {.lex_state = 0}, [1387] = {.lex_state = 48}, [1388] = {.lex_state = 48}, - [1389] = {.lex_state = 0}, + [1389] = {.lex_state = 48}, [1390] = {.lex_state = 48}, - [1391] = {.lex_state = 48}, - [1392] = {.lex_state = 48}, + [1391] = {.lex_state = 0}, + [1392] = {.lex_state = 0}, [1393] = {.lex_state = 0}, - [1394] = {.lex_state = 48}, + [1394] = {.lex_state = 0}, [1395] = {.lex_state = 48}, [1396] = {.lex_state = 0}, [1397] = {.lex_state = 48}, @@ -9232,18 +9263,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1405] = {.lex_state = 48}, [1406] = {.lex_state = 48}, [1407] = {.lex_state = 48}, - [1408] = {.lex_state = 0}, + [1408] = {.lex_state = 48}, [1409] = {.lex_state = 48}, - [1410] = {.lex_state = 0}, + [1410] = {.lex_state = 48}, [1411] = {.lex_state = 48}, [1412] = {.lex_state = 48}, [1413] = {.lex_state = 48}, - [1414] = {.lex_state = 0}, - [1415] = {.lex_state = 0}, - [1416] = {.lex_state = 0}, + [1414] = {.lex_state = 48}, + [1415] = {.lex_state = 48}, + [1416] = {.lex_state = 48}, [1417] = {.lex_state = 48}, - [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 48}, + [1418] = {.lex_state = 48}, + [1419] = {.lex_state = 0}, [1420] = {.lex_state = 48}, [1421] = {.lex_state = 48}, [1422] = {.lex_state = 48}, @@ -9251,28 +9282,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1424] = {.lex_state = 48}, [1425] = {.lex_state = 48}, [1426] = {.lex_state = 48}, - [1427] = {.lex_state = 0}, - [1428] = {.lex_state = 0}, + [1427] = {.lex_state = 48}, + [1428] = {.lex_state = 48}, [1429] = {.lex_state = 48}, [1430] = {.lex_state = 48}, [1431] = {.lex_state = 48}, - [1432] = {.lex_state = 48}, - [1433] = {.lex_state = 48}, + [1432] = {.lex_state = 0}, + [1433] = {.lex_state = 0}, [1434] = {.lex_state = 0}, - [1435] = {.lex_state = 48}, - [1436] = {.lex_state = 48}, - [1437] = {.lex_state = 48}, + [1435] = {.lex_state = 0}, + [1436] = {.lex_state = 0}, + [1437] = {.lex_state = 0}, [1438] = {.lex_state = 48}, - [1439] = {.lex_state = 0}, + [1439] = {.lex_state = 48}, [1440] = {.lex_state = 48}, - [1441] = {.lex_state = 48}, + [1441] = {.lex_state = 0}, [1442] = {.lex_state = 48}, - [1443] = {.lex_state = 48}, + [1443] = {.lex_state = 0}, [1444] = {.lex_state = 48}, [1445] = {.lex_state = 48}, [1446] = {.lex_state = 48}, [1447] = {.lex_state = 48}, - [1448] = {.lex_state = 48}, + [1448] = {.lex_state = 0}, [1449] = {.lex_state = 48}, [1450] = {.lex_state = 48}, [1451] = {.lex_state = 48}, @@ -9281,31 +9312,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1454] = {.lex_state = 48}, [1455] = {.lex_state = 48}, [1456] = {.lex_state = 48}, - [1457] = {.lex_state = 0}, - [1458] = {.lex_state = 0}, + [1457] = {.lex_state = 48}, + [1458] = {.lex_state = 48}, [1459] = {.lex_state = 48}, [1460] = {.lex_state = 48}, - [1461] = {.lex_state = 48}, + [1461] = {.lex_state = 0}, [1462] = {.lex_state = 48}, [1463] = {.lex_state = 48}, - [1464] = {.lex_state = 48}, + [1464] = {.lex_state = 0}, [1465] = {.lex_state = 48}, [1466] = {.lex_state = 48}, - [1467] = {.lex_state = 48}, + [1467] = {.lex_state = 0}, [1468] = {.lex_state = 48}, [1469] = {.lex_state = 48}, - [1470] = {.lex_state = 0}, + [1470] = {.lex_state = 48}, [1471] = {.lex_state = 48}, - [1472] = {.lex_state = 0}, - [1473] = {.lex_state = 0}, - [1474] = {.lex_state = 0}, + [1472] = {.lex_state = 48}, + [1473] = {.lex_state = 48}, + [1474] = {.lex_state = 48}, [1475] = {.lex_state = 48}, [1476] = {.lex_state = 48}, - [1477] = {.lex_state = 48}, + [1477] = {.lex_state = 0}, [1478] = {.lex_state = 48}, - [1479] = {.lex_state = 0}, - [1480] = {.lex_state = 48}, - [1481] = {.lex_state = 48}, + [1479] = {.lex_state = 48}, + [1480] = {.lex_state = 0}, + [1481] = {.lex_state = 0}, [1482] = {.lex_state = 48}, [1483] = {.lex_state = 48}, [1484] = {.lex_state = 48}, @@ -9314,7 +9345,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1487] = {.lex_state = 48}, [1488] = {.lex_state = 48}, [1489] = {.lex_state = 48}, - [1490] = {.lex_state = 0}, + [1490] = {.lex_state = 48}, [1491] = {.lex_state = 48}, [1492] = {.lex_state = 48}, [1493] = {.lex_state = 48}, @@ -9323,9 +9354,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1496] = {.lex_state = 48}, [1497] = {.lex_state = 48}, [1498] = {.lex_state = 48}, - [1499] = {.lex_state = 0}, + [1499] = {.lex_state = 48}, [1500] = {.lex_state = 48}, - [1501] = {.lex_state = 48}, + [1501] = {.lex_state = 0}, [1502] = {.lex_state = 48}, [1503] = {.lex_state = 48}, [1504] = {.lex_state = 48}, @@ -9334,72 +9365,72 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1507] = {.lex_state = 48}, [1508] = {.lex_state = 48}, [1509] = {.lex_state = 48}, - [1510] = {.lex_state = 48}, + [1510] = {.lex_state = 0}, [1511] = {.lex_state = 48}, - [1512] = {.lex_state = 0}, - [1513] = {.lex_state = 0}, - [1514] = {.lex_state = 48}, - [1515] = {.lex_state = 48}, - [1516] = {.lex_state = 0}, + [1512] = {.lex_state = 48}, + [1513] = {.lex_state = 48}, + [1514] = {.lex_state = 0}, + [1515] = {.lex_state = 0}, + [1516] = {.lex_state = 48}, [1517] = {.lex_state = 0}, - [1518] = {.lex_state = 0}, + [1518] = {.lex_state = 48}, [1519] = {.lex_state = 0}, - [1520] = {.lex_state = 0}, + [1520] = {.lex_state = 48}, [1521] = {.lex_state = 48}, - [1522] = {.lex_state = 0}, + [1522] = {.lex_state = 48}, [1523] = {.lex_state = 48}, - [1524] = {.lex_state = 0}, - [1525] = {.lex_state = 48}, - [1526] = {.lex_state = 48}, + [1524] = {.lex_state = 48}, + [1525] = {.lex_state = 0}, + [1526] = {.lex_state = 0}, [1527] = {.lex_state = 48}, - [1528] = {.lex_state = 0}, - [1529] = {.lex_state = 0}, - [1530] = {.lex_state = 0}, - [1531] = {.lex_state = 48}, + [1528] = {.lex_state = 48}, + [1529] = {.lex_state = 48}, + [1530] = {.lex_state = 48}, + [1531] = {.lex_state = 0}, [1532] = {.lex_state = 48}, [1533] = {.lex_state = 0}, - [1534] = {.lex_state = 48}, - [1535] = {.lex_state = 48}, - [1536] = {.lex_state = 0}, - [1537] = {.lex_state = 0}, + [1534] = {.lex_state = 0}, + [1535] = {.lex_state = 0}, + [1536] = {.lex_state = 48}, + [1537] = {.lex_state = 48}, [1538] = {.lex_state = 48}, - [1539] = {.lex_state = 48}, - [1540] = {.lex_state = 48}, - [1541] = {.lex_state = 0}, - [1542] = {.lex_state = 0}, + [1539] = {.lex_state = 0}, + [1540] = {.lex_state = 0}, + [1541] = {.lex_state = 48}, + [1542] = {.lex_state = 48}, [1543] = {.lex_state = 0}, - [1544] = {.lex_state = 0}, + [1544] = {.lex_state = 48}, [1545] = {.lex_state = 48}, - [1546] = {.lex_state = 48}, - [1547] = {.lex_state = 48}, + [1546] = {.lex_state = 0}, + [1547] = {.lex_state = 0}, [1548] = {.lex_state = 48}, [1549] = {.lex_state = 48}, - [1550] = {.lex_state = 48}, + [1550] = {.lex_state = 0}, [1551] = {.lex_state = 48}, [1552] = {.lex_state = 48}, - [1553] = {.lex_state = 48}, - [1554] = {.lex_state = 48}, + [1553] = {.lex_state = 0}, + [1554] = {.lex_state = 0}, [1555] = {.lex_state = 48}, [1556] = {.lex_state = 0}, [1557] = {.lex_state = 48}, - [1558] = {.lex_state = 48}, + [1558] = {.lex_state = 0}, [1559] = {.lex_state = 48}, [1560] = {.lex_state = 48}, - [1561] = {.lex_state = 48}, + [1561] = {.lex_state = 0}, [1562] = {.lex_state = 48}, [1563] = {.lex_state = 0}, - [1564] = {.lex_state = 48}, - [1565] = {.lex_state = 48}, + [1564] = {.lex_state = 0}, + [1565] = {.lex_state = 0}, [1566] = {.lex_state = 48}, [1567] = {.lex_state = 48}, - [1568] = {.lex_state = 48}, - [1569] = {.lex_state = 48}, - [1570] = {.lex_state = 0}, + [1568] = {.lex_state = 0}, + [1569] = {.lex_state = 0}, + [1570] = {.lex_state = 48}, [1571] = {.lex_state = 48}, - [1572] = {.lex_state = 0}, + [1572] = {.lex_state = 48}, [1573] = {.lex_state = 48}, [1574] = {.lex_state = 48}, - [1575] = {.lex_state = 48}, + [1575] = {.lex_state = 0}, [1576] = {.lex_state = 48}, [1577] = {.lex_state = 48}, [1578] = {.lex_state = 48}, @@ -9407,17 +9438,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1580] = {.lex_state = 48}, [1581] = {.lex_state = 48}, [1582] = {.lex_state = 48}, - [1583] = {.lex_state = 48}, + [1583] = {.lex_state = 0}, [1584] = {.lex_state = 48}, [1585] = {.lex_state = 48}, [1586] = {.lex_state = 48}, [1587] = {.lex_state = 48}, - [1588] = {.lex_state = 48}, - [1589] = {.lex_state = 0}, + [1588] = {.lex_state = 0}, + [1589] = {.lex_state = 48}, [1590] = {.lex_state = 48}, [1591] = {.lex_state = 48}, - [1592] = {.lex_state = 48}, - [1593] = {.lex_state = 48}, + [1592] = {.lex_state = 0}, + [1593] = {.lex_state = 0}, [1594] = {.lex_state = 48}, [1595] = {.lex_state = 48}, [1596] = {.lex_state = 48}, @@ -9442,7 +9473,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1615] = {.lex_state = 48}, [1616] = {.lex_state = 48}, [1617] = {.lex_state = 48}, - [1618] = {.lex_state = 0}, + [1618] = {.lex_state = 48}, [1619] = {.lex_state = 48}, [1620] = {.lex_state = 48}, [1621] = {.lex_state = 48}, @@ -9452,14 +9483,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1625] = {.lex_state = 48}, [1626] = {.lex_state = 48}, [1627] = {.lex_state = 48}, - [1628] = {.lex_state = 0}, + [1628] = {.lex_state = 48}, [1629] = {.lex_state = 48}, [1630] = {.lex_state = 48}, [1631] = {.lex_state = 48}, [1632] = {.lex_state = 48}, [1633] = {.lex_state = 48}, [1634] = {.lex_state = 48}, - [1635] = {.lex_state = 0}, + [1635] = {.lex_state = 48}, [1636] = {.lex_state = 48}, [1637] = {.lex_state = 48}, [1638] = {.lex_state = 48}, @@ -9473,42 +9504,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1646] = {.lex_state = 48}, [1647] = {.lex_state = 48}, [1648] = {.lex_state = 48}, - [1649] = {.lex_state = 0}, - [1650] = {.lex_state = 0}, - [1651] = {.lex_state = 0}, - [1652] = {.lex_state = 0}, - [1653] = {.lex_state = 0}, - [1654] = {.lex_state = 0}, + [1649] = {.lex_state = 48}, + [1650] = {.lex_state = 48}, + [1651] = {.lex_state = 48}, + [1652] = {.lex_state = 48}, + [1653] = {.lex_state = 48}, + [1654] = {.lex_state = 48}, [1655] = {.lex_state = 48}, [1656] = {.lex_state = 48}, [1657] = {.lex_state = 48}, [1658] = {.lex_state = 48}, [1659] = {.lex_state = 48}, [1660] = {.lex_state = 48}, - [1661] = {.lex_state = 48}, + [1661] = {.lex_state = 0}, [1662] = {.lex_state = 48}, [1663] = {.lex_state = 48}, [1664] = {.lex_state = 48}, - [1665] = {.lex_state = 48}, - [1666] = {.lex_state = 48}, + [1665] = {.lex_state = 0}, + [1666] = {.lex_state = 0}, [1667] = {.lex_state = 48}, [1668] = {.lex_state = 48}, [1669] = {.lex_state = 48}, [1670] = {.lex_state = 48}, - [1671] = {.lex_state = 48}, + [1671] = {.lex_state = 0}, [1672] = {.lex_state = 48}, - [1673] = {.lex_state = 48}, + [1673] = {.lex_state = 0}, [1674] = {.lex_state = 48}, [1675] = {.lex_state = 48}, - [1676] = {.lex_state = 48}, - [1677] = {.lex_state = 48}, - [1678] = {.lex_state = 48}, + [1676] = {.lex_state = 0}, + [1677] = {.lex_state = 0}, + [1678] = {.lex_state = 0}, [1679] = {.lex_state = 48}, [1680] = {.lex_state = 48}, [1681] = {.lex_state = 48}, [1682] = {.lex_state = 48}, - [1683] = {.lex_state = 0}, - [1684] = {.lex_state = 0}, + [1683] = {.lex_state = 48}, + [1684] = {.lex_state = 48}, [1685] = {.lex_state = 48}, [1686] = {.lex_state = 48}, [1687] = {.lex_state = 48}, @@ -9520,60 +9551,60 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1693] = {.lex_state = 48}, [1694] = {.lex_state = 48}, [1695] = {.lex_state = 48}, - [1696] = {.lex_state = 48}, - [1697] = {.lex_state = 48}, + [1696] = {.lex_state = 0}, + [1697] = {.lex_state = 0}, [1698] = {.lex_state = 48}, [1699] = {.lex_state = 48}, - [1700] = {.lex_state = 0}, + [1700] = {.lex_state = 48}, [1701] = {.lex_state = 48}, [1702] = {.lex_state = 48}, - [1703] = {.lex_state = 0}, + [1703] = {.lex_state = 48}, [1704] = {.lex_state = 48}, [1705] = {.lex_state = 48}, [1706] = {.lex_state = 48}, [1707] = {.lex_state = 48}, [1708] = {.lex_state = 48}, - [1709] = {.lex_state = 0}, + [1709] = {.lex_state = 48}, [1710] = {.lex_state = 48}, - [1711] = {.lex_state = 0}, + [1711] = {.lex_state = 48}, [1712] = {.lex_state = 48}, - [1713] = {.lex_state = 0}, + [1713] = {.lex_state = 48}, [1714] = {.lex_state = 48}, - [1715] = {.lex_state = 48}, + [1715] = {.lex_state = 0}, [1716] = {.lex_state = 48}, - [1717] = {.lex_state = 0}, + [1717] = {.lex_state = 48}, [1718] = {.lex_state = 48}, - [1719] = {.lex_state = 48}, - [1720] = {.lex_state = 48}, + [1719] = {.lex_state = 7}, + [1720] = {.lex_state = 0}, [1721] = {.lex_state = 48}, - [1722] = {.lex_state = 48}, + [1722] = {.lex_state = 0}, [1723] = {.lex_state = 48}, [1724] = {.lex_state = 48}, [1725] = {.lex_state = 48}, [1726] = {.lex_state = 48}, [1727] = {.lex_state = 48}, [1728] = {.lex_state = 48}, - [1729] = {.lex_state = 0}, + [1729] = {.lex_state = 48}, [1730] = {.lex_state = 48}, [1731] = {.lex_state = 48}, [1732] = {.lex_state = 48}, [1733] = {.lex_state = 48}, [1734] = {.lex_state = 48}, - [1735] = {.lex_state = 0}, + [1735] = {.lex_state = 48}, [1736] = {.lex_state = 48}, [1737] = {.lex_state = 48}, [1738] = {.lex_state = 48}, [1739] = {.lex_state = 48}, [1740] = {.lex_state = 48}, - [1741] = {.lex_state = 0}, - [1742] = {.lex_state = 0}, + [1741] = {.lex_state = 48}, + [1742] = {.lex_state = 48}, [1743] = {.lex_state = 48}, - [1744] = {.lex_state = 48}, + [1744] = {.lex_state = 0}, [1745] = {.lex_state = 48}, [1746] = {.lex_state = 48}, [1747] = {.lex_state = 48}, [1748] = {.lex_state = 48}, - [1749] = {.lex_state = 48}, + [1749] = {.lex_state = 0}, [1750] = {.lex_state = 48}, [1751] = {.lex_state = 48}, [1752] = {.lex_state = 48}, @@ -9585,25 +9616,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1758] = {.lex_state = 48}, [1759] = {.lex_state = 48}, [1760] = {.lex_state = 48}, - [1761] = {.lex_state = 0}, + [1761] = {.lex_state = 48}, [1762] = {.lex_state = 48}, - [1763] = {.lex_state = 0}, + [1763] = {.lex_state = 48}, [1764] = {.lex_state = 48}, - [1765] = {.lex_state = 0}, - [1766] = {.lex_state = 0}, - [1767] = {.lex_state = 0}, + [1765] = {.lex_state = 48}, + [1766] = {.lex_state = 48}, + [1767] = {.lex_state = 48}, [1768] = {.lex_state = 48}, - [1769] = {.lex_state = 48}, + [1769] = {.lex_state = 0}, [1770] = {.lex_state = 48}, - [1771] = {.lex_state = 48}, + [1771] = {.lex_state = 0}, [1772] = {.lex_state = 48}, [1773] = {.lex_state = 48}, [1774] = {.lex_state = 48}, [1775] = {.lex_state = 48}, [1776] = {.lex_state = 48}, [1777] = {.lex_state = 0}, - [1778] = {.lex_state = 48}, - [1779] = {.lex_state = 0}, + [1778] = {.lex_state = 0}, + [1779] = {.lex_state = 48}, [1780] = {.lex_state = 48}, [1781] = {.lex_state = 48}, [1782] = {.lex_state = 48}, @@ -9612,162 +9643,162 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1785] = {.lex_state = 48}, [1786] = {.lex_state = 48}, [1787] = {.lex_state = 48}, - [1788] = {.lex_state = 48}, + [1788] = {.lex_state = 0}, [1789] = {.lex_state = 48}, [1790] = {.lex_state = 48}, [1791] = {.lex_state = 0}, [1792] = {.lex_state = 48}, - [1793] = {.lex_state = 7}, - [1794] = {.lex_state = 0}, + [1793] = {.lex_state = 48}, + [1794] = {.lex_state = 48}, [1795] = {.lex_state = 48}, - [1796] = {.lex_state = 0}, - [1797] = {.lex_state = 48}, + [1796] = {.lex_state = 48}, + [1797] = {.lex_state = 0}, [1798] = {.lex_state = 48}, [1799] = {.lex_state = 48}, [1800] = {.lex_state = 48}, [1801] = {.lex_state = 48}, [1802] = {.lex_state = 48}, [1803] = {.lex_state = 48}, - [1804] = {.lex_state = 0}, + [1804] = {.lex_state = 48}, [1805] = {.lex_state = 48}, [1806] = {.lex_state = 0}, - [1807] = {.lex_state = 48}, + [1807] = {.lex_state = 0}, [1808] = {.lex_state = 48}, [1809] = {.lex_state = 48}, [1810] = {.lex_state = 48}, [1811] = {.lex_state = 48}, - [1812] = {.lex_state = 48}, + [1812] = {.lex_state = 0}, [1813] = {.lex_state = 48}, [1814] = {.lex_state = 48}, [1815] = {.lex_state = 48}, - [1816] = {.lex_state = 48}, + [1816] = {.lex_state = 0}, [1817] = {.lex_state = 48}, - [1818] = {.lex_state = 48}, + [1818] = {.lex_state = 0}, [1819] = {.lex_state = 48}, [1820] = {.lex_state = 48}, - [1821] = {.lex_state = 48}, - [1822] = {.lex_state = 0}, + [1821] = {.lex_state = 0}, + [1822] = {.lex_state = 48}, [1823] = {.lex_state = 48}, [1824] = {.lex_state = 48}, [1825] = {.lex_state = 48}, [1826] = {.lex_state = 48}, [1827] = {.lex_state = 48}, - [1828] = {.lex_state = 0}, + [1828] = {.lex_state = 48}, [1829] = {.lex_state = 48}, [1830] = {.lex_state = 48}, [1831] = {.lex_state = 48}, [1832] = {.lex_state = 48}, - [1833] = {.lex_state = 48}, + [1833] = {.lex_state = 0}, [1834] = {.lex_state = 48}, [1835] = {.lex_state = 48}, - [1836] = {.lex_state = 48}, + [1836] = {.lex_state = 0}, [1837] = {.lex_state = 48}, [1838] = {.lex_state = 48}, [1839] = {.lex_state = 48}, [1840] = {.lex_state = 48}, - [1841] = {.lex_state = 0}, + [1841] = {.lex_state = 48}, [1842] = {.lex_state = 0}, - [1843] = {.lex_state = 48}, - [1844] = {.lex_state = 48}, - [1845] = {.lex_state = 48}, + [1843] = {.lex_state = 0}, + [1844] = {.lex_state = 0}, + [1845] = {.lex_state = 0}, [1846] = {.lex_state = 48}, - [1847] = {.lex_state = 48}, + [1847] = {.lex_state = 0}, [1848] = {.lex_state = 48}, [1849] = {.lex_state = 48}, [1850] = {.lex_state = 48}, - [1851] = {.lex_state = 0}, + [1851] = {.lex_state = 48}, [1852] = {.lex_state = 48}, [1853] = {.lex_state = 48}, [1854] = {.lex_state = 48}, [1855] = {.lex_state = 48}, [1856] = {.lex_state = 48}, - [1857] = {.lex_state = 48}, + [1857] = {.lex_state = 0}, [1858] = {.lex_state = 48}, - [1859] = {.lex_state = 48}, + [1859] = {.lex_state = 0}, [1860] = {.lex_state = 0}, - [1861] = {.lex_state = 48}, - [1862] = {.lex_state = 0}, + [1861] = {.lex_state = 0}, + [1862] = {.lex_state = 48}, [1863] = {.lex_state = 48}, - [1864] = {.lex_state = 0}, + [1864] = {.lex_state = 48}, [1865] = {.lex_state = 48}, [1866] = {.lex_state = 48}, [1867] = {.lex_state = 48}, - [1868] = {.lex_state = 0}, + [1868] = {.lex_state = 48}, [1869] = {.lex_state = 48}, - [1870] = {.lex_state = 0}, + [1870] = {.lex_state = 48}, [1871] = {.lex_state = 48}, [1872] = {.lex_state = 48}, [1873] = {.lex_state = 48}, [1874] = {.lex_state = 48}, [1875] = {.lex_state = 48}, [1876] = {.lex_state = 48}, - [1877] = {.lex_state = 48}, + [1877] = {.lex_state = 0}, [1878] = {.lex_state = 48}, [1879] = {.lex_state = 48}, [1880] = {.lex_state = 48}, [1881] = {.lex_state = 48}, - [1882] = {.lex_state = 0}, + [1882] = {.lex_state = 48}, [1883] = {.lex_state = 0}, [1884] = {.lex_state = 48}, - [1885] = {.lex_state = 0}, - [1886] = {.lex_state = 48}, - [1887] = {.lex_state = 48}, + [1885] = {.lex_state = 48}, + [1886] = {.lex_state = 0}, + [1887] = {.lex_state = 0}, [1888] = {.lex_state = 48}, [1889] = {.lex_state = 48}, - [1890] = {.lex_state = 48}, - [1891] = {.lex_state = 0}, + [1890] = {.lex_state = 0}, + [1891] = {.lex_state = 48}, [1892] = {.lex_state = 48}, [1893] = {.lex_state = 48}, - [1894] = {.lex_state = 0}, - [1895] = {.lex_state = 0}, - [1896] = {.lex_state = 0}, - [1897] = {.lex_state = 0}, + [1894] = {.lex_state = 48}, + [1895] = {.lex_state = 48}, + [1896] = {.lex_state = 48}, + [1897] = {.lex_state = 48}, [1898] = {.lex_state = 48}, [1899] = {.lex_state = 48}, [1900] = {.lex_state = 48}, [1901] = {.lex_state = 48}, [1902] = {.lex_state = 48}, [1903] = {.lex_state = 48}, - [1904] = {.lex_state = 48}, + [1904] = {.lex_state = 0}, [1905] = {.lex_state = 48}, - [1906] = {.lex_state = 0}, - [1907] = {.lex_state = 0}, + [1906] = {.lex_state = 48}, + [1907] = {.lex_state = 48}, [1908] = {.lex_state = 48}, [1909] = {.lex_state = 0}, [1910] = {.lex_state = 0}, - [1911] = {.lex_state = 0}, + [1911] = {.lex_state = 48}, [1912] = {.lex_state = 48}, - [1913] = {.lex_state = 48}, + [1913] = {.lex_state = 0}, [1914] = {.lex_state = 0}, [1915] = {.lex_state = 48}, [1916] = {.lex_state = 48}, [1917] = {.lex_state = 48}, - [1918] = {.lex_state = 48}, + [1918] = {.lex_state = 0}, [1919] = {.lex_state = 48}, [1920] = {.lex_state = 48}, [1921] = {.lex_state = 48}, [1922] = {.lex_state = 48}, - [1923] = {.lex_state = 0}, + [1923] = {.lex_state = 48}, [1924] = {.lex_state = 48}, [1925] = {.lex_state = 48}, [1926] = {.lex_state = 48}, [1927] = {.lex_state = 48}, [1928] = {.lex_state = 48}, - [1929] = {.lex_state = 0}, - [1930] = {.lex_state = 0}, + [1929] = {.lex_state = 48}, + [1930] = {.lex_state = 48}, [1931] = {.lex_state = 0}, [1932] = {.lex_state = 48}, - [1933] = {.lex_state = 0}, - [1934] = {.lex_state = 0}, - [1935] = {.lex_state = 48}, + [1933] = {.lex_state = 48}, + [1934] = {.lex_state = 48}, + [1935] = {.lex_state = 0}, [1936] = {.lex_state = 48}, - [1937] = {.lex_state = 48}, + [1937] = {.lex_state = 0}, [1938] = {.lex_state = 48}, - [1939] = {.lex_state = 48}, - [1940] = {.lex_state = 48}, - [1941] = {.lex_state = 48}, - [1942] = {.lex_state = 48}, - [1943] = {.lex_state = 48}, + [1939] = {.lex_state = 0}, + [1940] = {.lex_state = 0}, + [1941] = {.lex_state = 0}, + [1942] = {.lex_state = 0}, + [1943] = {.lex_state = 0}, [1944] = {.lex_state = 48}, [1945] = {.lex_state = 48}, [1946] = {.lex_state = 48}, @@ -9777,7 +9808,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1950] = {.lex_state = 48}, [1951] = {.lex_state = 0}, [1952] = {.lex_state = 48}, - [1953] = {.lex_state = 0}, + [1953] = {.lex_state = 48}, [1954] = {.lex_state = 48}, [1955] = {.lex_state = 48}, [1956] = {.lex_state = 48}, @@ -9793,18 +9824,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1966] = {.lex_state = 48}, [1967] = {.lex_state = 48}, [1968] = {.lex_state = 48}, - [1969] = {.lex_state = 0}, + [1969] = {.lex_state = 48}, [1970] = {.lex_state = 48}, [1971] = {.lex_state = 48}, [1972] = {.lex_state = 48}, [1973] = {.lex_state = 48}, - [1974] = {.lex_state = 48}, + [1974] = {.lex_state = 0}, [1975] = {.lex_state = 48}, - [1976] = {.lex_state = 48}, + [1976] = {.lex_state = 0}, [1977] = {.lex_state = 48}, [1978] = {.lex_state = 48}, [1979] = {.lex_state = 48}, - [1980] = {.lex_state = 0}, + [1980] = {.lex_state = 48}, [1981] = {.lex_state = 48}, [1982] = {.lex_state = 48}, [1983] = {.lex_state = 48}, @@ -9822,26 +9853,72 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1995] = {.lex_state = 48}, [1996] = {.lex_state = 48}, [1997] = {.lex_state = 48}, - [1998] = {.lex_state = 0}, + [1998] = {.lex_state = 48}, [1999] = {.lex_state = 48}, [2000] = {.lex_state = 48}, [2001] = {.lex_state = 48}, [2002] = {.lex_state = 48}, [2003] = {.lex_state = 48}, [2004] = {.lex_state = 48}, - [2005] = {.lex_state = 0}, - [2006] = {.lex_state = 0}, + [2005] = {.lex_state = 48}, + [2006] = {.lex_state = 48}, [2007] = {.lex_state = 48}, - [2008] = {.lex_state = 0}, + [2008] = {.lex_state = 48}, [2009] = {.lex_state = 48}, [2010] = {.lex_state = 48}, [2011] = {.lex_state = 48}, [2012] = {.lex_state = 48}, [2013] = {.lex_state = 48}, [2014] = {.lex_state = 48}, - [2015] = {.lex_state = 48}, + [2015] = {.lex_state = 0}, [2016] = {.lex_state = 48}, [2017] = {.lex_state = 0}, + [2018] = {.lex_state = 48}, + [2019] = {.lex_state = 48}, + [2020] = {.lex_state = 48}, + [2021] = {.lex_state = 48}, + [2022] = {.lex_state = 48}, + [2023] = {.lex_state = 48}, + [2024] = {.lex_state = 48}, + [2025] = {.lex_state = 48}, + [2026] = {.lex_state = 48}, + [2027] = {.lex_state = 48}, + [2028] = {.lex_state = 48}, + [2029] = {.lex_state = 48}, + [2030] = {.lex_state = 48}, + [2031] = {.lex_state = 48}, + [2032] = {.lex_state = 48}, + [2033] = {.lex_state = 48}, + [2034] = {.lex_state = 48}, + [2035] = {.lex_state = 48}, + [2036] = {.lex_state = 48}, + [2037] = {.lex_state = 48}, + [2038] = {.lex_state = 48}, + [2039] = {.lex_state = 48}, + [2040] = {.lex_state = 48}, + [2041] = {.lex_state = 0}, + [2042] = {.lex_state = 48}, + [2043] = {.lex_state = 48}, + [2044] = {.lex_state = 48}, + [2045] = {.lex_state = 0}, + [2046] = {.lex_state = 48}, + [2047] = {.lex_state = 48}, + [2048] = {.lex_state = 0}, + [2049] = {.lex_state = 48}, + [2050] = {.lex_state = 48}, + [2051] = {.lex_state = 0}, + [2052] = {.lex_state = 48}, + [2053] = {.lex_state = 48}, + [2054] = {.lex_state = 48}, + [2055] = {.lex_state = 48}, + [2056] = {.lex_state = 48}, + [2057] = {.lex_state = 48}, + [2058] = {.lex_state = 48}, + [2059] = {.lex_state = 48}, + [2060] = {.lex_state = 48}, + [2061] = {.lex_state = 48}, + [2062] = {.lex_state = 0}, + [2063] = {.lex_state = 48}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -9969,105 +10046,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(1), }, [1] = { - [sym_compilation] = STATE(2008), - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym__defining_identifier_list] = STATE(2006), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), + [sym_compilation] = STATE(2051), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym__defining_identifier_list] = STATE(2048), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), [sym_compilation_unit] = STATE(2), - [sym__declarative_item] = STATE(488), - [sym__basic_declarative_item] = STATE(488), - [sym__basic_declaration] = STATE(488), - [sym__package_declaration] = STATE(488), - [sym_package_specification] = STATE(2003), - [sym_with_clause] = STATE(488), - [sym_use_clause] = STATE(488), - [sym_subunit] = STATE(488), - [sym__proper_body] = STATE(488), - [sym_subprogram_body] = STATE(488), - [sym_package_body] = STATE(488), - [sym__type_declaration] = STATE(488), - [sym_full_type_declaration] = STATE(488), - [sym_private_type_declaration] = STATE(488), - [sym_private_extension_declaration] = STATE(488), - [sym_incomplete_type_declaration] = STATE(488), - [sym__aspect_clause] = STATE(488), - [sym_at_clause] = STATE(488), - [sym_attribute_definition_clause] = STATE(488), - [sym_body_stub] = STATE(488), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), - [sym_task_body] = STATE(488), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), - [sym_protected_body] = STATE(488), - [sym_protected_body_stub] = STATE(261), - [sym_entry_declaration] = STATE(488), - [sym_enumeration_representation_clause] = STATE(488), - [sym_exception_declaration] = STATE(488), - [sym_function_specification] = STATE(1097), - [sym__generic_declaration] = STATE(488), - [sym_generic_formal_part] = STATE(944), - [sym_generic_subprogram_declaration] = STATE(488), - [sym_generic_package_declaration] = STATE(488), - [sym_generic_instantiation] = STATE(488), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_procedure_declaration] = STATE(488), - [sym_null_statement] = STATE(488), - [sym_number_declaration] = STATE(488), - [sym_object_declaration] = STATE(488), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(983), - [sym_pragma_g] = STATE(488), - [sym_procedure_specification] = STATE(1106), - [sym_record_representation_clause] = STATE(488), - [sym__renaming_declaration] = STATE(488), - [sym_object_renaming_declaration] = STATE(488), - [sym_exception_renaming_declaration] = STATE(488), - [sym_package_renaming_declaration] = STATE(488), - [sym_subprogram_renaming_declaration] = STATE(488), - [sym_generic_renaming_declaration] = STATE(488), - [sym__simple_statement] = STATE(488), - [sym__statement] = STATE(488), - [sym__compound_statement] = STATE(488), - [sym__select_statement] = STATE(488), - [sym_asynchronous_select] = STATE(488), - [sym_conditional_entry_call] = STATE(488), - [sym_timed_entry_call] = STATE(488), - [sym_selective_accept] = STATE(488), - [sym_abort_statement] = STATE(488), - [sym_requeue_statement] = STATE(488), - [sym_accept_statement] = STATE(488), - [sym_case_statement] = STATE(488), - [sym_block_statement] = STATE(488), - [sym_if_statement] = STATE(488), - [sym_gnatprep_if_statement] = STATE(488), - [sym_exit_statement] = STATE(488), - [sym_goto_statement] = STATE(488), - [sym__delay_statement] = STATE(488), - [sym_delay_until_statement] = STATE(488), - [sym_delay_relative_statement] = STATE(488), - [sym_simple_return_statement] = STATE(488), - [sym_extended_return_statement] = STATE(488), - [sym_procedure_call_statement] = STATE(488), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(488), - [sym_loop_statement] = STATE(488), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(488), - [sym_subprogram_declaration] = STATE(488), - [sym_expression_function_declaration] = STATE(488), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(488), + [sym__declarative_item] = STATE(510), + [sym__basic_declarative_item] = STATE(510), + [sym__basic_declaration] = STATE(510), + [sym__package_declaration] = STATE(510), + [sym_package_specification] = STATE(2044), + [sym_with_clause] = STATE(510), + [sym_use_clause] = STATE(510), + [sym_subunit] = STATE(510), + [sym__proper_body] = STATE(510), + [sym_subprogram_body] = STATE(510), + [sym_package_body] = STATE(510), + [sym__type_declaration] = STATE(510), + [sym_full_type_declaration] = STATE(510), + [sym_private_type_declaration] = STATE(510), + [sym_private_extension_declaration] = STATE(510), + [sym_incomplete_type_declaration] = STATE(510), + [sym__aspect_clause] = STATE(510), + [sym_at_clause] = STATE(510), + [sym_attribute_definition_clause] = STATE(510), + [sym_body_stub] = STATE(510), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(510), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(510), + [sym_protected_body_stub] = STATE(423), + [sym_entry_declaration] = STATE(510), + [sym_enumeration_representation_clause] = STATE(510), + [sym_exception_declaration] = STATE(510), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(510), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(510), + [sym_generic_package_declaration] = STATE(510), + [sym_generic_instantiation] = STATE(510), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_procedure_declaration] = STATE(510), + [sym_null_statement] = STATE(510), + [sym_number_declaration] = STATE(510), + [sym_object_declaration] = STATE(510), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(997), + [sym_pragma_g] = STATE(510), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(510), + [sym__renaming_declaration] = STATE(510), + [sym_object_renaming_declaration] = STATE(510), + [sym_exception_renaming_declaration] = STATE(510), + [sym_package_renaming_declaration] = STATE(510), + [sym_subprogram_renaming_declaration] = STATE(510), + [sym_generic_renaming_declaration] = STATE(510), + [sym__simple_statement] = STATE(510), + [sym__statement] = STATE(510), + [sym__compound_statement] = STATE(510), + [sym__select_statement] = STATE(510), + [sym_asynchronous_select] = STATE(510), + [sym_conditional_entry_call] = STATE(510), + [sym_timed_entry_call] = STATE(510), + [sym_selective_accept] = STATE(510), + [sym_abort_statement] = STATE(510), + [sym_requeue_statement] = STATE(510), + [sym_accept_statement] = STATE(510), + [sym_case_statement] = STATE(510), + [sym_block_statement] = STATE(510), + [sym_if_statement] = STATE(510), + [sym_gnatprep_if_statement] = STATE(510), + [sym_exit_statement] = STATE(510), + [sym_goto_statement] = STATE(510), + [sym__delay_statement] = STATE(510), + [sym_delay_until_statement] = STATE(510), + [sym_delay_relative_statement] = STATE(510), + [sym_simple_return_statement] = STATE(510), + [sym_extended_return_statement] = STATE(510), + [sym_procedure_call_statement] = STATE(510), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(510), + [sym_loop_statement] = STATE(510), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(510), + [sym_subprogram_declaration] = STATE(510), + [sym_expression_function_declaration] = STATE(510), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(510), [aux_sym_compilation_repeat1] = STATE(2), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_gnatprep_identifier] = ACTIONS(9), @@ -10114,104 +10191,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [2] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym__defining_identifier_list] = STATE(2006), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym__defining_identifier_list] = STATE(2048), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), [sym_compilation_unit] = STATE(3), - [sym__declarative_item] = STATE(488), - [sym__basic_declarative_item] = STATE(488), - [sym__basic_declaration] = STATE(488), - [sym__package_declaration] = STATE(488), - [sym_package_specification] = STATE(2003), - [sym_with_clause] = STATE(488), - [sym_use_clause] = STATE(488), - [sym_subunit] = STATE(488), - [sym__proper_body] = STATE(488), - [sym_subprogram_body] = STATE(488), - [sym_package_body] = STATE(488), - [sym__type_declaration] = STATE(488), - [sym_full_type_declaration] = STATE(488), - [sym_private_type_declaration] = STATE(488), - [sym_private_extension_declaration] = STATE(488), - [sym_incomplete_type_declaration] = STATE(488), - [sym__aspect_clause] = STATE(488), - [sym_at_clause] = STATE(488), - [sym_attribute_definition_clause] = STATE(488), - [sym_body_stub] = STATE(488), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), - [sym_task_body] = STATE(488), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), - [sym_protected_body] = STATE(488), - [sym_protected_body_stub] = STATE(261), - [sym_entry_declaration] = STATE(488), - [sym_enumeration_representation_clause] = STATE(488), - [sym_exception_declaration] = STATE(488), - [sym_function_specification] = STATE(1097), - [sym__generic_declaration] = STATE(488), - [sym_generic_formal_part] = STATE(944), - [sym_generic_subprogram_declaration] = STATE(488), - [sym_generic_package_declaration] = STATE(488), - [sym_generic_instantiation] = STATE(488), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_procedure_declaration] = STATE(488), - [sym_null_statement] = STATE(488), - [sym_number_declaration] = STATE(488), - [sym_object_declaration] = STATE(488), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(983), - [sym_pragma_g] = STATE(488), - [sym_procedure_specification] = STATE(1106), - [sym_record_representation_clause] = STATE(488), - [sym__renaming_declaration] = STATE(488), - [sym_object_renaming_declaration] = STATE(488), - [sym_exception_renaming_declaration] = STATE(488), - [sym_package_renaming_declaration] = STATE(488), - [sym_subprogram_renaming_declaration] = STATE(488), - [sym_generic_renaming_declaration] = STATE(488), - [sym__simple_statement] = STATE(488), - [sym__statement] = STATE(488), - [sym__compound_statement] = STATE(488), - [sym__select_statement] = STATE(488), - [sym_asynchronous_select] = STATE(488), - [sym_conditional_entry_call] = STATE(488), - [sym_timed_entry_call] = STATE(488), - [sym_selective_accept] = STATE(488), - [sym_abort_statement] = STATE(488), - [sym_requeue_statement] = STATE(488), - [sym_accept_statement] = STATE(488), - [sym_case_statement] = STATE(488), - [sym_block_statement] = STATE(488), - [sym_if_statement] = STATE(488), - [sym_gnatprep_if_statement] = STATE(488), - [sym_exit_statement] = STATE(488), - [sym_goto_statement] = STATE(488), - [sym__delay_statement] = STATE(488), - [sym_delay_until_statement] = STATE(488), - [sym_delay_relative_statement] = STATE(488), - [sym_simple_return_statement] = STATE(488), - [sym_extended_return_statement] = STATE(488), - [sym_procedure_call_statement] = STATE(488), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(488), - [sym_loop_statement] = STATE(488), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(488), - [sym_subprogram_declaration] = STATE(488), - [sym_expression_function_declaration] = STATE(488), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(488), + [sym__declarative_item] = STATE(510), + [sym__basic_declarative_item] = STATE(510), + [sym__basic_declaration] = STATE(510), + [sym__package_declaration] = STATE(510), + [sym_package_specification] = STATE(2044), + [sym_with_clause] = STATE(510), + [sym_use_clause] = STATE(510), + [sym_subunit] = STATE(510), + [sym__proper_body] = STATE(510), + [sym_subprogram_body] = STATE(510), + [sym_package_body] = STATE(510), + [sym__type_declaration] = STATE(510), + [sym_full_type_declaration] = STATE(510), + [sym_private_type_declaration] = STATE(510), + [sym_private_extension_declaration] = STATE(510), + [sym_incomplete_type_declaration] = STATE(510), + [sym__aspect_clause] = STATE(510), + [sym_at_clause] = STATE(510), + [sym_attribute_definition_clause] = STATE(510), + [sym_body_stub] = STATE(510), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(510), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(510), + [sym_protected_body_stub] = STATE(423), + [sym_entry_declaration] = STATE(510), + [sym_enumeration_representation_clause] = STATE(510), + [sym_exception_declaration] = STATE(510), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(510), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(510), + [sym_generic_package_declaration] = STATE(510), + [sym_generic_instantiation] = STATE(510), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_procedure_declaration] = STATE(510), + [sym_null_statement] = STATE(510), + [sym_number_declaration] = STATE(510), + [sym_object_declaration] = STATE(510), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(997), + [sym_pragma_g] = STATE(510), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(510), + [sym__renaming_declaration] = STATE(510), + [sym_object_renaming_declaration] = STATE(510), + [sym_exception_renaming_declaration] = STATE(510), + [sym_package_renaming_declaration] = STATE(510), + [sym_subprogram_renaming_declaration] = STATE(510), + [sym_generic_renaming_declaration] = STATE(510), + [sym__simple_statement] = STATE(510), + [sym__statement] = STATE(510), + [sym__compound_statement] = STATE(510), + [sym__select_statement] = STATE(510), + [sym_asynchronous_select] = STATE(510), + [sym_conditional_entry_call] = STATE(510), + [sym_timed_entry_call] = STATE(510), + [sym_selective_accept] = STATE(510), + [sym_abort_statement] = STATE(510), + [sym_requeue_statement] = STATE(510), + [sym_accept_statement] = STATE(510), + [sym_case_statement] = STATE(510), + [sym_block_statement] = STATE(510), + [sym_if_statement] = STATE(510), + [sym_gnatprep_if_statement] = STATE(510), + [sym_exit_statement] = STATE(510), + [sym_goto_statement] = STATE(510), + [sym__delay_statement] = STATE(510), + [sym_delay_until_statement] = STATE(510), + [sym_delay_relative_statement] = STATE(510), + [sym_simple_return_statement] = STATE(510), + [sym_extended_return_statement] = STATE(510), + [sym_procedure_call_statement] = STATE(510), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(510), + [sym_loop_statement] = STATE(510), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(510), + [sym_subprogram_declaration] = STATE(510), + [sym_expression_function_declaration] = STATE(510), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(510), [aux_sym_compilation_repeat1] = STATE(3), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [ts_builtin_sym_end] = ACTIONS(85), [sym_identifier] = ACTIONS(7), [sym_gnatprep_identifier] = ACTIONS(9), @@ -10258,104 +10335,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [3] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym__defining_identifier_list] = STATE(2006), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym__defining_identifier_list] = STATE(2048), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), [sym_compilation_unit] = STATE(3), - [sym__declarative_item] = STATE(488), - [sym__basic_declarative_item] = STATE(488), - [sym__basic_declaration] = STATE(488), - [sym__package_declaration] = STATE(488), - [sym_package_specification] = STATE(2003), - [sym_with_clause] = STATE(488), - [sym_use_clause] = STATE(488), - [sym_subunit] = STATE(488), - [sym__proper_body] = STATE(488), - [sym_subprogram_body] = STATE(488), - [sym_package_body] = STATE(488), - [sym__type_declaration] = STATE(488), - [sym_full_type_declaration] = STATE(488), - [sym_private_type_declaration] = STATE(488), - [sym_private_extension_declaration] = STATE(488), - [sym_incomplete_type_declaration] = STATE(488), - [sym__aspect_clause] = STATE(488), - [sym_at_clause] = STATE(488), - [sym_attribute_definition_clause] = STATE(488), - [sym_body_stub] = STATE(488), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), - [sym_task_body] = STATE(488), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), - [sym_protected_body] = STATE(488), - [sym_protected_body_stub] = STATE(261), - [sym_entry_declaration] = STATE(488), - [sym_enumeration_representation_clause] = STATE(488), - [sym_exception_declaration] = STATE(488), - [sym_function_specification] = STATE(1097), - [sym__generic_declaration] = STATE(488), - [sym_generic_formal_part] = STATE(944), - [sym_generic_subprogram_declaration] = STATE(488), - [sym_generic_package_declaration] = STATE(488), - [sym_generic_instantiation] = STATE(488), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_procedure_declaration] = STATE(488), - [sym_null_statement] = STATE(488), - [sym_number_declaration] = STATE(488), - [sym_object_declaration] = STATE(488), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(983), - [sym_pragma_g] = STATE(488), - [sym_procedure_specification] = STATE(1106), - [sym_record_representation_clause] = STATE(488), - [sym__renaming_declaration] = STATE(488), - [sym_object_renaming_declaration] = STATE(488), - [sym_exception_renaming_declaration] = STATE(488), - [sym_package_renaming_declaration] = STATE(488), - [sym_subprogram_renaming_declaration] = STATE(488), - [sym_generic_renaming_declaration] = STATE(488), - [sym__simple_statement] = STATE(488), - [sym__statement] = STATE(488), - [sym__compound_statement] = STATE(488), - [sym__select_statement] = STATE(488), - [sym_asynchronous_select] = STATE(488), - [sym_conditional_entry_call] = STATE(488), - [sym_timed_entry_call] = STATE(488), - [sym_selective_accept] = STATE(488), - [sym_abort_statement] = STATE(488), - [sym_requeue_statement] = STATE(488), - [sym_accept_statement] = STATE(488), - [sym_case_statement] = STATE(488), - [sym_block_statement] = STATE(488), - [sym_if_statement] = STATE(488), - [sym_gnatprep_if_statement] = STATE(488), - [sym_exit_statement] = STATE(488), - [sym_goto_statement] = STATE(488), - [sym__delay_statement] = STATE(488), - [sym_delay_until_statement] = STATE(488), - [sym_delay_relative_statement] = STATE(488), - [sym_simple_return_statement] = STATE(488), - [sym_extended_return_statement] = STATE(488), - [sym_procedure_call_statement] = STATE(488), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(488), - [sym_loop_statement] = STATE(488), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(488), - [sym_subprogram_declaration] = STATE(488), - [sym_expression_function_declaration] = STATE(488), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(488), + [sym__declarative_item] = STATE(510), + [sym__basic_declarative_item] = STATE(510), + [sym__basic_declaration] = STATE(510), + [sym__package_declaration] = STATE(510), + [sym_package_specification] = STATE(2044), + [sym_with_clause] = STATE(510), + [sym_use_clause] = STATE(510), + [sym_subunit] = STATE(510), + [sym__proper_body] = STATE(510), + [sym_subprogram_body] = STATE(510), + [sym_package_body] = STATE(510), + [sym__type_declaration] = STATE(510), + [sym_full_type_declaration] = STATE(510), + [sym_private_type_declaration] = STATE(510), + [sym_private_extension_declaration] = STATE(510), + [sym_incomplete_type_declaration] = STATE(510), + [sym__aspect_clause] = STATE(510), + [sym_at_clause] = STATE(510), + [sym_attribute_definition_clause] = STATE(510), + [sym_body_stub] = STATE(510), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(510), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(510), + [sym_protected_body_stub] = STATE(423), + [sym_entry_declaration] = STATE(510), + [sym_enumeration_representation_clause] = STATE(510), + [sym_exception_declaration] = STATE(510), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(510), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(510), + [sym_generic_package_declaration] = STATE(510), + [sym_generic_instantiation] = STATE(510), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_procedure_declaration] = STATE(510), + [sym_null_statement] = STATE(510), + [sym_number_declaration] = STATE(510), + [sym_object_declaration] = STATE(510), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(997), + [sym_pragma_g] = STATE(510), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(510), + [sym__renaming_declaration] = STATE(510), + [sym_object_renaming_declaration] = STATE(510), + [sym_exception_renaming_declaration] = STATE(510), + [sym_package_renaming_declaration] = STATE(510), + [sym_subprogram_renaming_declaration] = STATE(510), + [sym_generic_renaming_declaration] = STATE(510), + [sym__simple_statement] = STATE(510), + [sym__statement] = STATE(510), + [sym__compound_statement] = STATE(510), + [sym__select_statement] = STATE(510), + [sym_asynchronous_select] = STATE(510), + [sym_conditional_entry_call] = STATE(510), + [sym_timed_entry_call] = STATE(510), + [sym_selective_accept] = STATE(510), + [sym_abort_statement] = STATE(510), + [sym_requeue_statement] = STATE(510), + [sym_accept_statement] = STATE(510), + [sym_case_statement] = STATE(510), + [sym_block_statement] = STATE(510), + [sym_if_statement] = STATE(510), + [sym_gnatprep_if_statement] = STATE(510), + [sym_exit_statement] = STATE(510), + [sym_goto_statement] = STATE(510), + [sym__delay_statement] = STATE(510), + [sym_delay_until_statement] = STATE(510), + [sym_delay_relative_statement] = STATE(510), + [sym_simple_return_statement] = STATE(510), + [sym_extended_return_statement] = STATE(510), + [sym_procedure_call_statement] = STATE(510), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(510), + [sym_loop_statement] = STATE(510), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(510), + [sym_subprogram_declaration] = STATE(510), + [sym_expression_function_declaration] = STATE(510), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(510), [aux_sym_compilation_repeat1] = STATE(3), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [ts_builtin_sym_end] = ACTIONS(87), [sym_identifier] = ACTIONS(89), [sym_gnatprep_identifier] = ACTIONS(92), @@ -10402,92 +10479,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(203), }, [4] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(10), - [sym_null_statement] = STATE(7), - [sym_pragma_g] = STATE(7), - [sym__simple_statement] = STATE(7), - [sym__statement] = STATE(7), - [sym__compound_statement] = STATE(7), - [sym__select_statement] = STATE(7), - [sym_asynchronous_select] = STATE(7), - [sym_conditional_entry_call] = STATE(7), - [sym_timed_entry_call] = STATE(7), - [sym_selective_accept] = STATE(7), - [sym_abort_statement] = STATE(7), - [sym_requeue_statement] = STATE(7), - [sym_accept_statement] = STATE(7), - [sym_case_statement] = STATE(7), - [sym_block_statement] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_gnatprep_if_statement] = STATE(7), - [sym_exit_statement] = STATE(7), - [sym_goto_statement] = STATE(7), - [sym__delay_statement] = STATE(7), - [sym_delay_until_statement] = STATE(7), - [sym_delay_relative_statement] = STATE(7), - [sym_simple_return_statement] = STATE(7), - [sym_extended_return_statement] = STATE(7), - [sym_procedure_call_statement] = STATE(7), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(7), - [sym_loop_statement] = STATE(7), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(7), - [aux_sym__sequence_of_statements_repeat1] = STATE(7), - [aux_sym__sequence_of_statements_repeat2] = STATE(10), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(4), + [sym_pragma_g] = STATE(4), + [sym__simple_statement] = STATE(4), + [sym__statement] = STATE(4), + [sym__compound_statement] = STATE(4), + [sym__select_statement] = STATE(4), + [sym_asynchronous_select] = STATE(4), + [sym_conditional_entry_call] = STATE(4), + [sym_timed_entry_call] = STATE(4), + [sym_selective_accept] = STATE(4), + [sym_abort_statement] = STATE(4), + [sym_requeue_statement] = STATE(4), + [sym_accept_statement] = STATE(4), + [sym_case_statement] = STATE(4), + [sym_block_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_gnatprep_if_statement] = STATE(4), + [sym_exit_statement] = STATE(4), + [sym_goto_statement] = STATE(4), + [sym__delay_statement] = STATE(4), + [sym_delay_until_statement] = STATE(4), + [sym_delay_relative_statement] = STATE(4), + [sym_simple_return_statement] = STATE(4), + [sym_extended_return_statement] = STATE(4), + [sym_procedure_call_statement] = STATE(4), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(4), + [sym_loop_statement] = STATE(4), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(4), + [aux_sym__sequence_of_statements_repeat1] = STATE(4), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(206), - [sym_gnatprep_identifier] = ACTIONS(9), + [sym_gnatprep_identifier] = ACTIONS(209), [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(9), - [sym_character_literal] = ACTIONS(9), - [sym_target_name] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), - [aux_sym_iterator_filter_token1] = ACTIONS(210), - [aux_sym_package_specification_token3] = ACTIONS(210), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_expression_token2] = ACTIONS(210), - [aux_sym_expression_token3] = ACTIONS(210), - [aux_sym_expression_token4] = ACTIONS(210), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [aux_sym_exception_declaration_token1] = ACTIONS(210), - [anon_sym_LT_LT] = ACTIONS(55), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_elsif_expression_item_token1] = ACTIONS(210), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(210), - [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(210), - [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(210), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_goto_statement_token1] = ACTIONS(75), - [aux_sym_delay_until_statement_token1] = ACTIONS(77), - [aux_sym_loop_statement_token1] = ACTIONS(79), - [aux_sym_iteration_scheme_token1] = ACTIONS(81), + [sym_string_literal] = ACTIONS(209), + [sym_character_literal] = ACTIONS(209), + [sym_target_name] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(212), + [aux_sym_iterated_element_association_token1] = ACTIONS(215), + [aux_sym_iterator_filter_token1] = ACTIONS(218), + [aux_sym_package_specification_token3] = ACTIONS(218), + [aux_sym_subprogram_body_token1] = ACTIONS(220), + [aux_sym_expression_token2] = ACTIONS(218), + [aux_sym_expression_token3] = ACTIONS(218), + [aux_sym_expression_token4] = ACTIONS(218), + [aux_sym_raise_expression_token1] = ACTIONS(223), + [aux_sym_primary_null_token1] = ACTIONS(226), + [aux_sym_declare_expression_token1] = ACTIONS(229), + [aux_sym_case_expression_token1] = ACTIONS(232), + [aux_sym_exception_declaration_token1] = ACTIONS(218), + [anon_sym_LT_LT] = ACTIONS(235), + [aux_sym_pragma_g_token1] = ACTIONS(238), + [aux_sym_if_expression_token1] = ACTIONS(241), + [aux_sym_elsif_expression_item_token1] = ACTIONS(218), + [aux_sym_result_profile_token1] = ACTIONS(244), + [aux_sym_asynchronous_select_token1] = ACTIONS(247), + [aux_sym_asynchronous_select_token2] = ACTIONS(250), + [aux_sym_requeue_statement_token1] = ACTIONS(253), + [aux_sym_accept_statement_token1] = ACTIONS(256), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(259), + [aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(218), + [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(218), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(218), + [aux_sym_exit_statement_token1] = ACTIONS(262), + [aux_sym_goto_statement_token1] = ACTIONS(265), + [aux_sym_delay_until_statement_token1] = ACTIONS(268), + [aux_sym_loop_statement_token1] = ACTIONS(271), + [aux_sym_iteration_scheme_token1] = ACTIONS(274), }, [5] = { - [sym__defining_identifier_list] = STATE(2006), + [sym__defining_identifier_list] = STATE(2048), [sym__declarative_item] = STATE(5), [sym__basic_declarative_item] = STATE(5), [sym__basic_declaration] = STATE(5), [sym__package_declaration] = STATE(5), - [sym_package_specification] = STATE(2003), + [sym_package_specification] = STATE(2044), [sym_use_clause] = STATE(5), [sym__proper_body] = STATE(5), [sym_subprogram_body] = STATE(5), @@ -10501,31 +10578,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(5), [sym_attribute_definition_clause] = STATE(5), [sym_body_stub] = STATE(5), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), [sym_task_body] = STATE(5), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), [sym_protected_body] = STATE(5), - [sym_protected_body_stub] = STATE(261), + [sym_protected_body_stub] = STATE(423), [sym__declarative_item_pragma] = STATE(5), [sym_enumeration_representation_clause] = STATE(5), [sym_exception_declaration] = STATE(5), - [sym_function_specification] = STATE(1097), + [sym_function_specification] = STATE(1187), [sym__generic_declaration] = STATE(5), - [sym_generic_formal_part] = STATE(944), + [sym_generic_formal_part] = STATE(956), [sym_generic_subprogram_declaration] = STATE(5), [sym_generic_package_declaration] = STATE(5), [sym_generic_instantiation] = STATE(5), [sym_null_procedure_declaration] = STATE(5), [sym_number_declaration] = STATE(5), [sym_object_declaration] = STATE(5), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(1042), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), [sym_pragma_g] = STATE(5), - [sym_procedure_specification] = STATE(1106), + [sym_procedure_specification] = STATE(1163), [sym_record_representation_clause] = STATE(5), [sym__renaming_declaration] = STATE(5), [sym_object_renaming_declaration] = STATE(5), @@ -10536,38 +10613,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_gnatprep_declarative_if_statement] = STATE(5), [sym_subprogram_declaration] = STATE(5), [sym_expression_function_declaration] = STATE(5), - [sym__subprogram_specification] = STATE(1004), + [sym__subprogram_specification] = STATE(1075), [sym_subtype_declaration] = STATE(5), [aux_sym_non_empty_declarative_part_repeat1] = STATE(5), - [sym_identifier] = ACTIONS(212), + [sym_identifier] = ACTIONS(277), [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(215), - [aux_sym_iterated_element_association_token2] = ACTIONS(218), - [aux_sym_package_specification_token1] = ACTIONS(221), - [aux_sym_package_specification_token3] = ACTIONS(224), - [aux_sym_use_clause_token2] = ACTIONS(226), - [aux_sym_subprogram_body_token1] = ACTIONS(224), - [aux_sym_relation_membership_token1] = ACTIONS(229), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(232), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(235), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(238), - [aux_sym_interface_type_definition_token1] = ACTIONS(241), - [aux_sym_generic_formal_part_token1] = ACTIONS(244), - [aux_sym_global_mode_token1] = ACTIONS(247), - [aux_sym_pragma_g_token1] = ACTIONS(250), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(253), - [aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(224), - [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(224), - [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(224), - [aux_sym_subtype_declaration_token1] = ACTIONS(256), + [aux_sym_iterated_element_association_token1] = ACTIONS(280), + [aux_sym_iterated_element_association_token2] = ACTIONS(283), + [aux_sym_package_specification_token1] = ACTIONS(286), + [aux_sym_package_specification_token3] = ACTIONS(289), + [aux_sym_use_clause_token2] = ACTIONS(291), + [aux_sym_subprogram_body_token1] = ACTIONS(289), + [aux_sym_relation_membership_token1] = ACTIONS(294), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(297), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(300), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(303), + [aux_sym_interface_type_definition_token1] = ACTIONS(306), + [aux_sym_generic_formal_part_token1] = ACTIONS(309), + [aux_sym_global_mode_token1] = ACTIONS(312), + [aux_sym_pragma_g_token1] = ACTIONS(315), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(318), + [aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(289), + [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(289), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(289), + [aux_sym_subtype_declaration_token1] = ACTIONS(321), }, [6] = { - [sym__defining_identifier_list] = STATE(2006), + [sym__defining_identifier_list] = STATE(2048), [sym__declarative_item] = STATE(5), [sym__basic_declarative_item] = STATE(5), [sym__basic_declaration] = STATE(5), [sym__package_declaration] = STATE(5), - [sym_package_specification] = STATE(2003), + [sym_package_specification] = STATE(2044), [sym_use_clause] = STATE(5), [sym__proper_body] = STATE(5), [sym_subprogram_body] = STATE(5), @@ -10581,31 +10658,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(5), [sym_attribute_definition_clause] = STATE(5), [sym_body_stub] = STATE(5), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), [sym_task_body] = STATE(5), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), [sym_protected_body] = STATE(5), - [sym_protected_body_stub] = STATE(261), + [sym_protected_body_stub] = STATE(423), [sym__declarative_item_pragma] = STATE(5), [sym_enumeration_representation_clause] = STATE(5), [sym_exception_declaration] = STATE(5), - [sym_function_specification] = STATE(1097), + [sym_function_specification] = STATE(1187), [sym__generic_declaration] = STATE(5), - [sym_generic_formal_part] = STATE(944), + [sym_generic_formal_part] = STATE(956), [sym_generic_subprogram_declaration] = STATE(5), [sym_generic_package_declaration] = STATE(5), [sym_generic_instantiation] = STATE(5), [sym_null_procedure_declaration] = STATE(5), [sym_number_declaration] = STATE(5), [sym_object_declaration] = STATE(5), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(1042), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), [sym_pragma_g] = STATE(5), - [sym_procedure_specification] = STATE(1106), + [sym_procedure_specification] = STATE(1163), [sym_record_representation_clause] = STATE(5), [sym__renaming_declaration] = STATE(5), [sym_object_renaming_declaration] = STATE(5), @@ -10616,17 +10693,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_gnatprep_declarative_if_statement] = STATE(5), [sym_subprogram_declaration] = STATE(5), [sym_expression_function_declaration] = STATE(5), - [sym__subprogram_specification] = STATE(1004), + [sym__subprogram_specification] = STATE(1075), [sym_subtype_declaration] = STATE(5), [aux_sym_non_empty_declarative_part_repeat1] = STATE(5), - [sym_identifier] = ACTIONS(259), + [aux_sym_gnatprep_declarative_if_statement_repeat1] = STATE(1176), + [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(261), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_package_specification_token3] = ACTIONS(263), [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(263), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), @@ -10635,178 +10711,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265), - [aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(263), - [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(263), - [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(263), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(330), + [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(332), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(334), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [7] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(7), - [sym_pragma_g] = STATE(7), - [sym__simple_statement] = STATE(7), - [sym__statement] = STATE(7), - [sym__compound_statement] = STATE(7), - [sym__select_statement] = STATE(7), - [sym_asynchronous_select] = STATE(7), - [sym_conditional_entry_call] = STATE(7), - [sym_timed_entry_call] = STATE(7), - [sym_selective_accept] = STATE(7), - [sym_abort_statement] = STATE(7), - [sym_requeue_statement] = STATE(7), - [sym_accept_statement] = STATE(7), - [sym_case_statement] = STATE(7), - [sym_block_statement] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_gnatprep_if_statement] = STATE(7), - [sym_exit_statement] = STATE(7), - [sym_goto_statement] = STATE(7), - [sym__delay_statement] = STATE(7), - [sym_delay_until_statement] = STATE(7), - [sym_delay_relative_statement] = STATE(7), - [sym_simple_return_statement] = STATE(7), - [sym_extended_return_statement] = STATE(7), - [sym_procedure_call_statement] = STATE(7), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(7), - [sym_loop_statement] = STATE(7), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(7), - [aux_sym__sequence_of_statements_repeat1] = STATE(7), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(267), - [sym_gnatprep_identifier] = ACTIONS(270), + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(28), + [sym__basic_declarative_item] = STATE(28), + [sym__basic_declaration] = STATE(28), + [sym__package_declaration] = STATE(28), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(28), + [sym__proper_body] = STATE(28), + [sym_subprogram_body] = STATE(28), + [sym_package_body] = STATE(28), + [sym__type_declaration] = STATE(28), + [sym_full_type_declaration] = STATE(28), + [sym_private_type_declaration] = STATE(28), + [sym_private_extension_declaration] = STATE(28), + [sym_incomplete_type_declaration] = STATE(28), + [sym__aspect_clause] = STATE(28), + [sym_at_clause] = STATE(28), + [sym_attribute_definition_clause] = STATE(28), + [sym_body_stub] = STATE(28), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(28), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(28), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(28), + [sym_non_empty_declarative_part] = STATE(1770), + [sym_enumeration_representation_clause] = STATE(28), + [sym_exception_declaration] = STATE(28), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(28), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(28), + [sym_generic_package_declaration] = STATE(28), + [sym_generic_instantiation] = STATE(28), + [sym_null_procedure_declaration] = STATE(28), + [sym_number_declaration] = STATE(28), + [sym_object_declaration] = STATE(28), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(28), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(28), + [sym__renaming_declaration] = STATE(28), + [sym_object_renaming_declaration] = STATE(28), + [sym_exception_renaming_declaration] = STATE(28), + [sym_package_renaming_declaration] = STATE(28), + [sym_subprogram_renaming_declaration] = STATE(28), + [sym_generic_renaming_declaration] = STATE(28), + [sym_gnatprep_declarative_if_statement] = STATE(28), + [sym_subprogram_declaration] = STATE(28), + [sym_expression_function_declaration] = STATE(28), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(28), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(270), - [sym_character_literal] = ACTIONS(270), - [sym_target_name] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(273), - [aux_sym_iterated_element_association_token1] = ACTIONS(276), - [aux_sym_iterator_filter_token1] = ACTIONS(279), - [aux_sym_package_specification_token3] = ACTIONS(279), - [aux_sym_subprogram_body_token1] = ACTIONS(281), - [aux_sym_expression_token2] = ACTIONS(279), - [aux_sym_expression_token3] = ACTIONS(279), - [aux_sym_expression_token4] = ACTIONS(279), - [aux_sym_raise_expression_token1] = ACTIONS(284), - [aux_sym_primary_null_token1] = ACTIONS(287), - [aux_sym_declare_expression_token1] = ACTIONS(290), - [aux_sym_case_expression_token1] = ACTIONS(293), - [aux_sym_exception_declaration_token1] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(296), - [aux_sym_pragma_g_token1] = ACTIONS(299), - [aux_sym_if_expression_token1] = ACTIONS(302), - [aux_sym_elsif_expression_item_token1] = ACTIONS(279), - [aux_sym_result_profile_token1] = ACTIONS(305), - [aux_sym_asynchronous_select_token1] = ACTIONS(308), - [aux_sym_asynchronous_select_token2] = ACTIONS(311), - [aux_sym_requeue_statement_token1] = ACTIONS(314), - [aux_sym_accept_statement_token1] = ACTIONS(317), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(320), - [aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(279), - [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(279), - [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(279), - [aux_sym_exit_statement_token1] = ACTIONS(323), - [aux_sym_goto_statement_token1] = ACTIONS(326), - [aux_sym_delay_until_statement_token1] = ACTIONS(329), - [aux_sym_loop_statement_token1] = ACTIONS(332), - [aux_sym_iteration_scheme_token1] = ACTIONS(335), - }, - [8] = { - [sym__defining_identifier_list] = STATE(2006), - [sym__declarative_item] = STATE(6), - [sym__basic_declarative_item] = STATE(6), - [sym__basic_declaration] = STATE(6), - [sym__package_declaration] = STATE(6), - [sym_package_specification] = STATE(2003), - [sym_use_clause] = STATE(6), - [sym__proper_body] = STATE(6), - [sym_subprogram_body] = STATE(6), - [sym_package_body] = STATE(6), - [sym__type_declaration] = STATE(6), - [sym_full_type_declaration] = STATE(6), - [sym_private_type_declaration] = STATE(6), - [sym_private_extension_declaration] = STATE(6), - [sym_incomplete_type_declaration] = STATE(6), - [sym__aspect_clause] = STATE(6), - [sym_at_clause] = STATE(6), - [sym_attribute_definition_clause] = STATE(6), - [sym_body_stub] = STATE(6), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), - [sym_task_body] = STATE(6), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), - [sym_protected_body] = STATE(6), - [sym_protected_body_stub] = STATE(261), - [sym__declarative_item_pragma] = STATE(6), - [sym_non_empty_declarative_part] = STATE(1899), - [sym_enumeration_representation_clause] = STATE(6), - [sym_exception_declaration] = STATE(6), - [sym_function_specification] = STATE(1097), - [sym__generic_declaration] = STATE(6), - [sym_generic_formal_part] = STATE(944), - [sym_generic_subprogram_declaration] = STATE(6), - [sym_generic_package_declaration] = STATE(6), - [sym_generic_instantiation] = STATE(6), - [sym_null_procedure_declaration] = STATE(6), - [sym_number_declaration] = STATE(6), - [sym_object_declaration] = STATE(6), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(1042), - [sym_pragma_g] = STATE(6), - [sym_procedure_specification] = STATE(1106), - [sym_record_representation_clause] = STATE(6), - [sym__renaming_declaration] = STATE(6), - [sym_object_renaming_declaration] = STATE(6), - [sym_exception_renaming_declaration] = STATE(6), - [sym_package_renaming_declaration] = STATE(6), - [sym_subprogram_renaming_declaration] = STATE(6), - [sym_generic_renaming_declaration] = STATE(6), - [sym_gnatprep_declarative_if_statement] = STATE(6), - [sym_subprogram_declaration] = STATE(6), - [sym_expression_function_declaration] = STATE(6), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(6), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(261), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subunit_token1] = ACTIONS(338), - [aux_sym_subprogram_body_token1] = ACTIONS(340), + [aux_sym_subunit_token1] = ACTIONS(336), + [aux_sym_subprogram_body_token1] = ACTIONS(338), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_private_type_declaration_token1] = ACTIONS(342), + [aux_sym_private_type_declaration_token1] = ACTIONS(340), [aux_sym_interface_type_definition_token1] = ACTIONS(47), [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [8] = { + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(28), + [sym__basic_declarative_item] = STATE(28), + [sym__basic_declaration] = STATE(28), + [sym__package_declaration] = STATE(28), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(28), + [sym__proper_body] = STATE(28), + [sym_subprogram_body] = STATE(28), + [sym_package_body] = STATE(28), + [sym__type_declaration] = STATE(28), + [sym_full_type_declaration] = STATE(28), + [sym_private_type_declaration] = STATE(28), + [sym_private_extension_declaration] = STATE(28), + [sym_incomplete_type_declaration] = STATE(28), + [sym__aspect_clause] = STATE(28), + [sym_at_clause] = STATE(28), + [sym_attribute_definition_clause] = STATE(28), + [sym_body_stub] = STATE(28), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(28), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(28), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(28), + [sym_non_empty_declarative_part] = STATE(1895), + [sym_enumeration_representation_clause] = STATE(28), + [sym_exception_declaration] = STATE(28), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(28), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(28), + [sym_generic_package_declaration] = STATE(28), + [sym_generic_instantiation] = STATE(28), + [sym_null_procedure_declaration] = STATE(28), + [sym_number_declaration] = STATE(28), + [sym_object_declaration] = STATE(28), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(28), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(28), + [sym__renaming_declaration] = STATE(28), + [sym_object_renaming_declaration] = STATE(28), + [sym_exception_renaming_declaration] = STATE(28), + [sym_package_renaming_declaration] = STATE(28), + [sym_subprogram_renaming_declaration] = STATE(28), + [sym_generic_renaming_declaration] = STATE(28), + [sym_gnatprep_declarative_if_statement] = STATE(28), + [sym_subprogram_declaration] = STATE(28), + [sym_expression_function_declaration] = STATE(28), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(28), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [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(342), + [aux_sym_subprogram_body_token1] = ACTIONS(344), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_private_type_declaration_token1] = ACTIONS(346), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [9] = { - [sym__defining_identifier_list] = STATE(2006), + [sym__defining_identifier_list] = STATE(2048), [sym__declarative_item] = STATE(6), [sym__basic_declarative_item] = STATE(6), [sym__basic_declaration] = STATE(6), [sym__package_declaration] = STATE(6), - [sym_package_specification] = STATE(2003), + [sym_package_specification] = STATE(2044), [sym_use_clause] = STATE(6), [sym__proper_body] = STATE(6), [sym_subprogram_body] = STATE(6), @@ -10820,32 +10895,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(6), [sym_attribute_definition_clause] = STATE(6), [sym_body_stub] = STATE(6), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), [sym_task_body] = STATE(6), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), [sym_protected_body] = STATE(6), - [sym_protected_body_stub] = STATE(261), + [sym_protected_body_stub] = STATE(423), [sym__declarative_item_pragma] = STATE(6), - [sym_non_empty_declarative_part] = STATE(1812), [sym_enumeration_representation_clause] = STATE(6), [sym_exception_declaration] = STATE(6), - [sym_function_specification] = STATE(1097), + [sym_function_specification] = STATE(1187), [sym__generic_declaration] = STATE(6), - [sym_generic_formal_part] = STATE(944), + [sym_generic_formal_part] = STATE(956), [sym_generic_subprogram_declaration] = STATE(6), [sym_generic_package_declaration] = STATE(6), [sym_generic_instantiation] = STATE(6), [sym_null_procedure_declaration] = STATE(6), [sym_number_declaration] = STATE(6), [sym_object_declaration] = STATE(6), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(1042), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), [sym_pragma_g] = STATE(6), - [sym_procedure_specification] = STATE(1106), + [sym_procedure_specification] = STATE(1163), [sym_record_representation_clause] = STATE(6), [sym__renaming_declaration] = STATE(6), [sym_object_renaming_declaration] = STATE(6), @@ -10856,330 +10930,328 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_gnatprep_declarative_if_statement] = STATE(6), [sym_subprogram_declaration] = STATE(6), [sym_expression_function_declaration] = STATE(6), - [sym__subprogram_specification] = STATE(1004), + [sym__subprogram_specification] = STATE(1075), [sym_subtype_declaration] = STATE(6), [aux_sym_non_empty_declarative_part_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(259), + [aux_sym_gnatprep_declarative_if_statement_repeat1] = STATE(1188), + [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(261), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subunit_token1] = ACTIONS(344), - [aux_sym_subprogram_body_token1] = ACTIONS(346), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_private_type_declaration_token1] = ACTIONS(348), [aux_sym_interface_type_definition_token1] = ACTIONS(47), [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(330), + [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(348), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(350), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [10] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(523), - [sym_null_statement] = STATE(147), - [sym_pragma_g] = STATE(147), - [sym__simple_statement] = STATE(147), - [sym__compound_statement] = STATE(147), - [sym__select_statement] = STATE(147), - [sym_asynchronous_select] = STATE(147), - [sym_conditional_entry_call] = STATE(147), - [sym_timed_entry_call] = STATE(147), - [sym_selective_accept] = STATE(147), - [sym_abort_statement] = STATE(147), - [sym_requeue_statement] = STATE(147), - [sym_accept_statement] = STATE(147), - [sym_case_statement] = STATE(147), - [sym_block_statement] = STATE(147), - [sym_if_statement] = STATE(147), - [sym_gnatprep_if_statement] = STATE(147), - [sym_exit_statement] = STATE(147), - [sym_goto_statement] = STATE(147), - [sym__delay_statement] = STATE(147), - [sym_delay_until_statement] = STATE(147), - [sym_delay_relative_statement] = STATE(147), - [sym_simple_return_statement] = STATE(147), - [sym_extended_return_statement] = STATE(147), - [sym_procedure_call_statement] = STATE(147), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(147), - [sym_loop_statement] = STATE(147), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(147), - [aux_sym__sequence_of_statements_repeat2] = STATE(523), - [sym_identifier] = ACTIONS(206), - [sym_gnatprep_identifier] = ACTIONS(9), + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(28), + [sym__basic_declarative_item] = STATE(28), + [sym__basic_declaration] = STATE(28), + [sym__package_declaration] = STATE(28), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(28), + [sym__proper_body] = STATE(28), + [sym_subprogram_body] = STATE(28), + [sym_package_body] = STATE(28), + [sym__type_declaration] = STATE(28), + [sym_full_type_declaration] = STATE(28), + [sym_private_type_declaration] = STATE(28), + [sym_private_extension_declaration] = STATE(28), + [sym_incomplete_type_declaration] = STATE(28), + [sym__aspect_clause] = STATE(28), + [sym_at_clause] = STATE(28), + [sym_attribute_definition_clause] = STATE(28), + [sym_body_stub] = STATE(28), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(28), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(28), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(28), + [sym_non_empty_declarative_part] = STATE(1770), + [sym_enumeration_representation_clause] = STATE(28), + [sym_exception_declaration] = STATE(28), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(28), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(28), + [sym_generic_package_declaration] = STATE(28), + [sym_generic_instantiation] = STATE(28), + [sym_null_procedure_declaration] = STATE(28), + [sym_number_declaration] = STATE(28), + [sym_object_declaration] = STATE(28), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(28), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(28), + [sym__renaming_declaration] = STATE(28), + [sym_object_renaming_declaration] = STATE(28), + [sym_exception_renaming_declaration] = STATE(28), + [sym_package_renaming_declaration] = STATE(28), + [sym_subprogram_renaming_declaration] = STATE(28), + [sym_generic_renaming_declaration] = STATE(28), + [sym_gnatprep_declarative_if_statement] = STATE(28), + [sym_subprogram_declaration] = STATE(28), + [sym_expression_function_declaration] = STATE(28), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(28), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(9), - [sym_character_literal] = ACTIONS(9), - [sym_target_name] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), - [aux_sym_iterator_filter_token1] = ACTIONS(350), - [aux_sym_package_specification_token3] = ACTIONS(350), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_expression_token2] = ACTIONS(350), - [aux_sym_expression_token3] = ACTIONS(350), - [aux_sym_expression_token4] = ACTIONS(350), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [aux_sym_exception_declaration_token1] = ACTIONS(350), - [anon_sym_LT_LT] = ACTIONS(55), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_elsif_expression_item_token1] = ACTIONS(350), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(350), - [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(350), - [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(350), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_goto_statement_token1] = ACTIONS(75), - [aux_sym_delay_until_statement_token1] = ACTIONS(77), - [aux_sym_loop_statement_token1] = ACTIONS(79), - [aux_sym_iteration_scheme_token1] = ACTIONS(81), - }, - [11] = { - [sym_unary_adding_operator] = STATE(508), - [sym__name] = STATE(500), - [sym_selected_component] = STATE(451), - [sym_slice] = STATE(451), - [sym__attribute_reference] = STATE(451), - [sym__reduction_attribute_reference] = STATE(451), - [sym_value_sequence] = STATE(2005), - [sym_iterated_element_association] = STATE(1197), - [sym_qualified_expression] = STATE(451), - [sym__subtype_indication] = STATE(1518), - [sym_range_g] = STATE(1522), - [sym_expression] = STATE(967), - [sym__relation] = STATE(573), - [sym_relation_membership] = STATE(573), - [sym_raise_expression] = STATE(573), - [sym__simple_expression] = STATE(620), - [sym_term] = STATE(528), - [sym__factor] = STATE(504), - [sym_factor_power] = STATE(504), - [sym_factor_abs] = STATE(504), - [sym_factor_not] = STATE(504), - [sym__parenthesized_expression] = STATE(506), - [sym__primary] = STATE(506), - [sym_primary_null] = STATE(506), - [sym_allocator] = STATE(506), - [sym__conditional_expression] = STATE(1906), - [sym_quantified_expression] = STATE(1906), - [sym_declare_expression] = STATE(1906), - [sym_case_expression] = STATE(1906), - [sym_component_choice_list] = STATE(1934), - [sym__aggregate] = STATE(506), - [sym__delta_aggregate] = STATE(506), - [sym_extension_aggregate] = STATE(506), - [sym_record_delta_aggregate] = STATE(506), - [sym_array_delta_aggregate] = STATE(506), - [sym_record_aggregate] = STATE(506), - [sym_record_component_association_list] = STATE(1933), - [sym__named_record_component_association] = STATE(1180), - [sym_null_exclusion] = STATE(771), - [sym__array_aggregate] = STATE(506), - [sym_positional_array_aggregate] = STATE(506), - [sym_null_array_aggregate] = STATE(506), - [sym_named_array_aggregate] = STATE(506), - [sym__array_component_association_list] = STATE(1931), - [sym_array_component_association] = STATE(1156), - [sym_discrete_choice_list] = STATE(1930), - [sym_discrete_choice] = STATE(1275), - [sym_global_aspect_element] = STATE(1341), - [sym_global_mode] = STATE(695), - [sym_non_empty_mode] = STATE(840), - [sym_if_expression] = STATE(1906), - [sym_function_call] = STATE(500), - [sym_identifier] = ACTIONS(352), - [sym_gnatprep_identifier] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(356), - [sym_character_literal] = ACTIONS(354), - [sym_numeric_literal] = ACTIONS(358), - [anon_sym_PLUS] = ACTIONS(360), - [anon_sym_DASH] = ACTIONS(362), - [sym_target_name] = ACTIONS(354), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_LBRACK] = ACTIONS(366), - [aux_sym_chunk_specification_token1] = ACTIONS(368), - [aux_sym_iterated_element_association_token1] = ACTIONS(370), - [aux_sym_relation_membership_token1] = ACTIONS(372), - [aux_sym_raise_expression_token1] = ACTIONS(374), - [aux_sym_factor_abs_token1] = ACTIONS(376), - [aux_sym_primary_null_token1] = ACTIONS(378), - [aux_sym_allocator_token1] = ACTIONS(380), - [aux_sym_declare_expression_token1] = ACTIONS(382), - [aux_sym_case_expression_token1] = ACTIONS(384), - [aux_sym_component_choice_list_token1] = ACTIONS(386), - [aux_sym_global_mode_token1] = ACTIONS(388), - [aux_sym_non_empty_mode_token1] = ACTIONS(390), - [aux_sym_if_expression_token1] = ACTIONS(392), - }, - [12] = { - [sym__defining_identifier_list] = STATE(2006), - [sym__declarative_item] = STATE(6), - [sym__basic_declarative_item] = STATE(6), - [sym__basic_declaration] = STATE(6), - [sym__package_declaration] = STATE(6), - [sym_package_specification] = STATE(2003), - [sym_use_clause] = STATE(6), - [sym__proper_body] = STATE(6), - [sym_subprogram_body] = STATE(6), - [sym_package_body] = STATE(6), - [sym__type_declaration] = STATE(6), - [sym_full_type_declaration] = STATE(6), - [sym_private_type_declaration] = STATE(6), - [sym_private_extension_declaration] = STATE(6), - [sym_incomplete_type_declaration] = STATE(6), - [sym__aspect_clause] = STATE(6), - [sym_at_clause] = STATE(6), - [sym_attribute_definition_clause] = STATE(6), - [sym_body_stub] = STATE(6), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), - [sym_task_body] = STATE(6), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), - [sym_protected_body] = STATE(6), - [sym_protected_body_stub] = STATE(261), - [sym__declarative_item_pragma] = STATE(6), - [sym_non_empty_declarative_part] = STATE(1899), - [sym_enumeration_representation_clause] = STATE(6), - [sym_exception_declaration] = STATE(6), - [sym_function_specification] = STATE(1097), - [sym__generic_declaration] = STATE(6), - [sym_generic_formal_part] = STATE(944), - [sym_generic_subprogram_declaration] = STATE(6), - [sym_generic_package_declaration] = STATE(6), - [sym_generic_instantiation] = STATE(6), - [sym_null_procedure_declaration] = STATE(6), - [sym_number_declaration] = STATE(6), - [sym_object_declaration] = STATE(6), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(1042), - [sym_pragma_g] = STATE(6), - [sym_procedure_specification] = STATE(1106), - [sym_record_representation_clause] = STATE(6), - [sym__renaming_declaration] = STATE(6), - [sym_object_renaming_declaration] = STATE(6), - [sym_exception_renaming_declaration] = STATE(6), - [sym_package_renaming_declaration] = STATE(6), - [sym_subprogram_renaming_declaration] = STATE(6), - [sym_generic_renaming_declaration] = STATE(6), - [sym_gnatprep_declarative_if_statement] = STATE(6), - [sym_subprogram_declaration] = STATE(6), - [sym_expression_function_declaration] = STATE(6), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(6), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(261), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(340), + [aux_sym_subprogram_body_token1] = ACTIONS(338), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_private_type_declaration_token1] = ACTIONS(342), + [aux_sym_private_type_declaration_token1] = ACTIONS(340), [aux_sym_interface_type_definition_token1] = ACTIONS(47), [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [11] = { + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(28), + [sym__basic_declarative_item] = STATE(28), + [sym__basic_declaration] = STATE(28), + [sym__package_declaration] = STATE(28), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(28), + [sym__proper_body] = STATE(28), + [sym_subprogram_body] = STATE(28), + [sym_package_body] = STATE(28), + [sym__type_declaration] = STATE(28), + [sym_full_type_declaration] = STATE(28), + [sym_private_type_declaration] = STATE(28), + [sym_private_extension_declaration] = STATE(28), + [sym_incomplete_type_declaration] = STATE(28), + [sym__aspect_clause] = STATE(28), + [sym_at_clause] = STATE(28), + [sym_attribute_definition_clause] = STATE(28), + [sym_body_stub] = STATE(28), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(28), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(28), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(28), + [sym_non_empty_declarative_part] = STATE(1895), + [sym_enumeration_representation_clause] = STATE(28), + [sym_exception_declaration] = STATE(28), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(28), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(28), + [sym_generic_package_declaration] = STATE(28), + [sym_generic_instantiation] = STATE(28), + [sym_null_procedure_declaration] = STATE(28), + [sym_number_declaration] = STATE(28), + [sym_object_declaration] = STATE(28), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(28), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(28), + [sym__renaming_declaration] = STATE(28), + [sym_object_renaming_declaration] = STATE(28), + [sym_exception_renaming_declaration] = STATE(28), + [sym_package_renaming_declaration] = STATE(28), + [sym_subprogram_renaming_declaration] = STATE(28), + [sym_generic_renaming_declaration] = STATE(28), + [sym_gnatprep_declarative_if_statement] = STATE(28), + [sym_subprogram_declaration] = STATE(28), + [sym_expression_function_declaration] = STATE(28), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(28), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [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(344), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_private_type_declaration_token1] = ACTIONS(346), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [12] = { + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(28), + [sym__basic_declarative_item] = STATE(28), + [sym__basic_declaration] = STATE(28), + [sym__package_declaration] = STATE(28), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(28), + [sym__proper_body] = STATE(28), + [sym_subprogram_body] = STATE(28), + [sym_package_body] = STATE(28), + [sym__type_declaration] = STATE(28), + [sym_full_type_declaration] = STATE(28), + [sym_private_type_declaration] = STATE(28), + [sym_private_extension_declaration] = STATE(28), + [sym_incomplete_type_declaration] = STATE(28), + [sym__aspect_clause] = STATE(28), + [sym_at_clause] = STATE(28), + [sym_attribute_definition_clause] = STATE(28), + [sym_body_stub] = STATE(28), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(28), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(28), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(28), + [sym_non_empty_declarative_part] = STATE(1545), + [sym_enumeration_representation_clause] = STATE(28), + [sym_exception_declaration] = STATE(28), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(28), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(28), + [sym_generic_package_declaration] = STATE(28), + [sym_generic_instantiation] = STATE(28), + [sym_null_procedure_declaration] = STATE(28), + [sym_number_declaration] = STATE(28), + [sym_object_declaration] = STATE(28), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(28), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(28), + [sym__renaming_declaration] = STATE(28), + [sym_object_renaming_declaration] = STATE(28), + [sym_exception_renaming_declaration] = STATE(28), + [sym_package_renaming_declaration] = STATE(28), + [sym_subprogram_renaming_declaration] = STATE(28), + [sym_generic_renaming_declaration] = STATE(28), + [sym_gnatprep_declarative_if_statement] = STATE(28), + [sym_subprogram_declaration] = STATE(28), + [sym_expression_function_declaration] = STATE(28), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(28), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_package_specification_token3] = ACTIONS(352), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(354), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [13] = { - [sym__defining_identifier_list] = STATE(2006), - [sym__declarative_item] = STATE(6), - [sym__basic_declarative_item] = STATE(6), - [sym__basic_declaration] = STATE(6), - [sym__package_declaration] = STATE(6), - [sym_package_specification] = STATE(2003), - [sym_use_clause] = STATE(6), - [sym__proper_body] = STATE(6), - [sym_subprogram_body] = STATE(6), - [sym_package_body] = STATE(6), - [sym__type_declaration] = STATE(6), - [sym_full_type_declaration] = STATE(6), - [sym_private_type_declaration] = STATE(6), - [sym_private_extension_declaration] = STATE(6), - [sym_incomplete_type_declaration] = STATE(6), - [sym__aspect_clause] = STATE(6), - [sym_at_clause] = STATE(6), - [sym_attribute_definition_clause] = STATE(6), - [sym_body_stub] = STATE(6), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), - [sym_task_body] = STATE(6), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), - [sym_protected_body] = STATE(6), - [sym_protected_body_stub] = STATE(261), - [sym__declarative_item_pragma] = STATE(6), - [sym_non_empty_declarative_part] = STATE(1383), - [sym_enumeration_representation_clause] = STATE(6), - [sym_exception_declaration] = STATE(6), - [sym_function_specification] = STATE(1097), - [sym__generic_declaration] = STATE(6), - [sym_generic_formal_part] = STATE(944), - [sym_generic_subprogram_declaration] = STATE(6), - [sym_generic_package_declaration] = STATE(6), - [sym_generic_instantiation] = STATE(6), - [sym_null_procedure_declaration] = STATE(6), - [sym_number_declaration] = STATE(6), - [sym_object_declaration] = STATE(6), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(1042), - [sym_pragma_g] = STATE(6), - [sym_procedure_specification] = STATE(1106), - [sym_record_representation_clause] = STATE(6), - [sym__renaming_declaration] = STATE(6), - [sym_object_renaming_declaration] = STATE(6), - [sym_exception_renaming_declaration] = STATE(6), - [sym_package_renaming_declaration] = STATE(6), - [sym_subprogram_renaming_declaration] = STATE(6), - [sym_generic_renaming_declaration] = STATE(6), - [sym_gnatprep_declarative_if_statement] = STATE(6), - [sym_subprogram_declaration] = STATE(6), - [sym_expression_function_declaration] = STATE(6), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(6), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(259), + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(5), + [sym__basic_declarative_item] = STATE(5), + [sym__basic_declaration] = STATE(5), + [sym__package_declaration] = STATE(5), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(5), + [sym__proper_body] = STATE(5), + [sym_subprogram_body] = STATE(5), + [sym_package_body] = STATE(5), + [sym__type_declaration] = STATE(5), + [sym_full_type_declaration] = STATE(5), + [sym_private_type_declaration] = STATE(5), + [sym_private_extension_declaration] = STATE(5), + [sym_incomplete_type_declaration] = STATE(5), + [sym__aspect_clause] = STATE(5), + [sym_at_clause] = STATE(5), + [sym_attribute_definition_clause] = STATE(5), + [sym_body_stub] = STATE(5), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(5), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(5), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(5), + [sym_enumeration_representation_clause] = STATE(5), + [sym_exception_declaration] = STATE(5), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(5), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(5), + [sym_generic_package_declaration] = STATE(5), + [sym_generic_instantiation] = STATE(5), + [sym_null_procedure_declaration] = STATE(5), + [sym_number_declaration] = STATE(5), + [sym_object_declaration] = STATE(5), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(5), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(5), + [sym__renaming_declaration] = STATE(5), + [sym_object_renaming_declaration] = STATE(5), + [sym_exception_renaming_declaration] = STATE(5), + [sym_package_renaming_declaration] = STATE(5), + [sym_subprogram_renaming_declaration] = STATE(5), + [sym_generic_renaming_declaration] = STATE(5), + [sym_gnatprep_declarative_if_statement] = STATE(5), + [sym_subprogram_declaration] = STATE(5), + [sym_expression_function_declaration] = STATE(5), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(5), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(5), + [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(261), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_package_specification_token3] = ACTIONS(394), [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(396), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), @@ -11188,154 +11260,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(356), + [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(356), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(356), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [14] = { - [sym__defining_identifier_list] = STATE(2006), - [sym__declarative_item] = STATE(6), - [sym__basic_declarative_item] = STATE(6), - [sym__basic_declaration] = STATE(6), - [sym__package_declaration] = STATE(6), - [sym_package_specification] = STATE(2003), - [sym_use_clause] = STATE(6), - [sym__proper_body] = STATE(6), - [sym_subprogram_body] = STATE(6), - [sym_package_body] = STATE(6), - [sym__type_declaration] = STATE(6), - [sym_full_type_declaration] = STATE(6), - [sym_private_type_declaration] = STATE(6), - [sym_private_extension_declaration] = STATE(6), - [sym_incomplete_type_declaration] = STATE(6), - [sym__aspect_clause] = STATE(6), - [sym_at_clause] = STATE(6), - [sym_attribute_definition_clause] = STATE(6), - [sym_body_stub] = STATE(6), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), - [sym_task_body] = STATE(6), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), - [sym_protected_body] = STATE(6), - [sym_protected_body_stub] = STATE(261), - [sym__declarative_item_pragma] = STATE(6), - [sym_non_empty_declarative_part] = STATE(1812), - [sym_enumeration_representation_clause] = STATE(6), - [sym_exception_declaration] = STATE(6), - [sym_function_specification] = STATE(1097), - [sym__generic_declaration] = STATE(6), - [sym_generic_formal_part] = STATE(944), - [sym_generic_subprogram_declaration] = STATE(6), - [sym_generic_package_declaration] = STATE(6), - [sym_generic_instantiation] = STATE(6), - [sym_null_procedure_declaration] = STATE(6), - [sym_number_declaration] = STATE(6), - [sym_object_declaration] = STATE(6), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(1042), - [sym_pragma_g] = STATE(6), - [sym_procedure_specification] = STATE(1106), - [sym_record_representation_clause] = STATE(6), - [sym__renaming_declaration] = STATE(6), - [sym_object_renaming_declaration] = STATE(6), - [sym_exception_renaming_declaration] = STATE(6), - [sym_package_renaming_declaration] = STATE(6), - [sym_subprogram_renaming_declaration] = STATE(6), - [sym_generic_renaming_declaration] = STATE(6), - [sym_gnatprep_declarative_if_statement] = STATE(6), - [sym_subprogram_declaration] = STATE(6), - [sym_expression_function_declaration] = STATE(6), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(6), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(259), + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(28), + [sym__basic_declarative_item] = STATE(28), + [sym__basic_declaration] = STATE(28), + [sym__package_declaration] = STATE(28), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(28), + [sym__proper_body] = STATE(28), + [sym_subprogram_body] = STATE(28), + [sym_package_body] = STATE(28), + [sym__type_declaration] = STATE(28), + [sym_full_type_declaration] = STATE(28), + [sym_private_type_declaration] = STATE(28), + [sym_private_extension_declaration] = STATE(28), + [sym_incomplete_type_declaration] = STATE(28), + [sym__aspect_clause] = STATE(28), + [sym_at_clause] = STATE(28), + [sym_attribute_definition_clause] = STATE(28), + [sym_body_stub] = STATE(28), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(28), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(28), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(28), + [sym_non_empty_declarative_part] = STATE(1523), + [sym_enumeration_representation_clause] = STATE(28), + [sym_exception_declaration] = STATE(28), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(28), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(28), + [sym_generic_package_declaration] = STATE(28), + [sym_generic_instantiation] = STATE(28), + [sym_null_procedure_declaration] = STATE(28), + [sym_number_declaration] = STATE(28), + [sym_object_declaration] = STATE(28), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(28), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(28), + [sym__renaming_declaration] = STATE(28), + [sym_object_renaming_declaration] = STATE(28), + [sym_exception_renaming_declaration] = STATE(28), + [sym_package_renaming_declaration] = STATE(28), + [sym_subprogram_renaming_declaration] = STATE(28), + [sym_generic_renaming_declaration] = STATE(28), + [sym_gnatprep_declarative_if_statement] = STATE(28), + [sym_subprogram_declaration] = STATE(28), + [sym_expression_function_declaration] = STATE(28), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(28), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(261), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_package_specification_token3] = ACTIONS(358), [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(346), + [aux_sym_subprogram_body_token1] = ACTIONS(360), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_private_type_declaration_token1] = ACTIONS(348), [aux_sym_interface_type_definition_token1] = ACTIONS(47), [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [15] = { - [sym__defining_identifier_list] = STATE(2006), - [sym__declarative_item] = STATE(6), - [sym__basic_declarative_item] = STATE(6), - [sym__basic_declaration] = STATE(6), - [sym__package_declaration] = STATE(6), - [sym_package_specification] = STATE(2003), - [sym_use_clause] = STATE(6), - [sym__proper_body] = STATE(6), - [sym_subprogram_body] = STATE(6), - [sym_package_body] = STATE(6), - [sym__type_declaration] = STATE(6), - [sym_full_type_declaration] = STATE(6), - [sym_private_type_declaration] = STATE(6), - [sym_private_extension_declaration] = STATE(6), - [sym_incomplete_type_declaration] = STATE(6), - [sym__aspect_clause] = STATE(6), - [sym_at_clause] = STATE(6), - [sym_attribute_definition_clause] = STATE(6), - [sym_body_stub] = STATE(6), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), - [sym_task_body] = STATE(6), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), - [sym_protected_body] = STATE(6), - [sym_protected_body_stub] = STATE(261), - [sym__declarative_item_pragma] = STATE(6), - [sym_non_empty_declarative_part] = STATE(1437), - [sym_enumeration_representation_clause] = STATE(6), - [sym_exception_declaration] = STATE(6), - [sym_function_specification] = STATE(1097), - [sym__generic_declaration] = STATE(6), - [sym_generic_formal_part] = STATE(944), - [sym_generic_subprogram_declaration] = STATE(6), - [sym_generic_package_declaration] = STATE(6), - [sym_generic_instantiation] = STATE(6), - [sym_null_procedure_declaration] = STATE(6), - [sym_number_declaration] = STATE(6), - [sym_object_declaration] = STATE(6), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(1042), - [sym_pragma_g] = STATE(6), - [sym_procedure_specification] = STATE(1106), - [sym_record_representation_clause] = STATE(6), - [sym__renaming_declaration] = STATE(6), - [sym_object_renaming_declaration] = STATE(6), - [sym_exception_renaming_declaration] = STATE(6), - [sym_package_renaming_declaration] = STATE(6), - [sym_subprogram_renaming_declaration] = STATE(6), - [sym_generic_renaming_declaration] = STATE(6), - [sym_gnatprep_declarative_if_statement] = STATE(6), - [sym_subprogram_declaration] = STATE(6), - [sym_expression_function_declaration] = STATE(6), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(6), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(259), + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(13), + [sym__basic_declarative_item] = STATE(13), + [sym__basic_declaration] = STATE(13), + [sym__package_declaration] = STATE(13), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(13), + [sym__proper_body] = STATE(13), + [sym_subprogram_body] = STATE(13), + [sym_package_body] = STATE(13), + [sym__type_declaration] = STATE(13), + [sym_full_type_declaration] = STATE(13), + [sym_private_type_declaration] = STATE(13), + [sym_private_extension_declaration] = STATE(13), + [sym_incomplete_type_declaration] = STATE(13), + [sym__aspect_clause] = STATE(13), + [sym_at_clause] = STATE(13), + [sym_attribute_definition_clause] = STATE(13), + [sym_body_stub] = STATE(13), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(13), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(13), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(13), + [sym_enumeration_representation_clause] = STATE(13), + [sym_exception_declaration] = STATE(13), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(13), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(13), + [sym_generic_package_declaration] = STATE(13), + [sym_generic_instantiation] = STATE(13), + [sym_null_procedure_declaration] = STATE(13), + [sym_number_declaration] = STATE(13), + [sym_object_declaration] = STATE(13), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(13), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(13), + [sym__renaming_declaration] = STATE(13), + [sym_object_renaming_declaration] = STATE(13), + [sym_exception_renaming_declaration] = STATE(13), + [sym_package_renaming_declaration] = STATE(13), + [sym_subprogram_renaming_declaration] = STATE(13), + [sym_generic_renaming_declaration] = STATE(13), + [sym_gnatprep_declarative_if_statement] = STATE(13), + [sym_subprogram_declaration] = STATE(13), + [sym_expression_function_declaration] = STATE(13), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(13), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(13), + [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(261), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_package_specification_token3] = ACTIONS(398), [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(400), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), @@ -11344,383 +11416,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(362), + [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(362), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(362), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [16] = { - [sym__defining_identifier_list] = STATE(2006), - [sym__declarative_item] = STATE(6), - [sym__basic_declarative_item] = STATE(6), - [sym__basic_declaration] = STATE(6), - [sym__package_declaration] = STATE(6), - [sym_package_specification] = STATE(2003), - [sym_use_clause] = STATE(6), - [sym__proper_body] = STATE(6), - [sym_subprogram_body] = STATE(6), - [sym_package_body] = STATE(6), - [sym__type_declaration] = STATE(6), - [sym_full_type_declaration] = STATE(6), - [sym_private_type_declaration] = STATE(6), - [sym_private_extension_declaration] = STATE(6), - [sym_incomplete_type_declaration] = STATE(6), - [sym__aspect_clause] = STATE(6), - [sym_at_clause] = STATE(6), - [sym_attribute_definition_clause] = STATE(6), - [sym_body_stub] = STATE(6), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), - [sym_task_body] = STATE(6), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), - [sym_protected_body] = STATE(6), - [sym_protected_body_stub] = STATE(261), - [sym__declarative_item_pragma] = STATE(6), - [sym_non_empty_declarative_part] = STATE(1752), - [sym_enumeration_representation_clause] = STATE(6), - [sym_exception_declaration] = STATE(6), - [sym_function_specification] = STATE(1097), - [sym__generic_declaration] = STATE(6), - [sym_generic_formal_part] = STATE(944), - [sym_generic_subprogram_declaration] = STATE(6), - [sym_generic_package_declaration] = STATE(6), - [sym_generic_instantiation] = STATE(6), - [sym_null_procedure_declaration] = STATE(6), - [sym_number_declaration] = STATE(6), - [sym_object_declaration] = STATE(6), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(1042), - [sym_pragma_g] = STATE(6), - [sym_procedure_specification] = STATE(1106), - [sym_record_representation_clause] = STATE(6), - [sym__renaming_declaration] = STATE(6), - [sym_object_renaming_declaration] = STATE(6), - [sym_exception_renaming_declaration] = STATE(6), - [sym_package_renaming_declaration] = STATE(6), - [sym_subprogram_renaming_declaration] = STATE(6), - [sym_generic_renaming_declaration] = STATE(6), - [sym_gnatprep_declarative_if_statement] = STATE(6), - [sym_subprogram_declaration] = STATE(6), - [sym_expression_function_declaration] = STATE(6), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(6), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(259), + [sym_unary_adding_operator] = STATE(537), + [sym__name] = STATE(522), + [sym_selected_component] = STATE(478), + [sym_slice] = STATE(478), + [sym__attribute_reference] = STATE(478), + [sym__reduction_attribute_reference] = STATE(478), + [sym_value_sequence] = STATE(2045), + [sym_iterated_element_association] = STATE(1371), + [sym_qualified_expression] = STATE(478), + [sym__subtype_indication] = STATE(1432), + [sym_range_g] = STATE(1433), + [sym_expression] = STATE(1002), + [sym__relation] = STATE(607), + [sym_relation_membership] = STATE(607), + [sym_raise_expression] = STATE(607), + [sym__simple_expression] = STATE(661), + [sym_term] = STATE(546), + [sym__factor] = STATE(524), + [sym_factor_power] = STATE(524), + [sym_factor_abs] = STATE(524), + [sym_factor_not] = STATE(524), + [sym__parenthesized_expression] = STATE(528), + [sym__primary] = STATE(528), + [sym_primary_null] = STATE(528), + [sym_allocator] = STATE(528), + [sym__conditional_expression] = STATE(1943), + [sym_quantified_expression] = STATE(1943), + [sym_declare_expression] = STATE(1943), + [sym_case_expression] = STATE(1943), + [sym_component_choice_list] = STATE(1942), + [sym__aggregate] = STATE(528), + [sym__delta_aggregate] = STATE(528), + [sym_extension_aggregate] = STATE(528), + [sym_record_delta_aggregate] = STATE(528), + [sym_array_delta_aggregate] = STATE(528), + [sym_record_aggregate] = STATE(528), + [sym_record_component_association_list] = STATE(1941), + [sym__named_record_component_association] = STATE(1338), + [sym_null_exclusion] = STATE(835), + [sym__array_aggregate] = STATE(528), + [sym_positional_array_aggregate] = STATE(528), + [sym_null_array_aggregate] = STATE(528), + [sym_named_array_aggregate] = STATE(528), + [sym__array_component_association_list] = STATE(1940), + [sym_array_component_association] = STATE(1103), + [sym_discrete_choice_list] = STATE(1939), + [sym_discrete_choice] = STATE(1393), + [sym_global_aspect_element] = STATE(1360), + [sym_global_mode] = STATE(772), + [sym_non_empty_mode] = STATE(872), + [sym_if_expression] = STATE(1943), + [sym_function_call] = STATE(522), + [sym_identifier] = ACTIONS(364), + [sym_gnatprep_identifier] = ACTIONS(366), [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(261), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subunit_token1] = ACTIONS(402), - [aux_sym_subprogram_body_token1] = ACTIONS(404), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265), - [aux_sym_subtype_declaration_token1] = ACTIONS(83), + [sym_string_literal] = ACTIONS(368), + [sym_character_literal] = ACTIONS(366), + [sym_numeric_literal] = ACTIONS(370), + [anon_sym_PLUS] = ACTIONS(372), + [anon_sym_DASH] = ACTIONS(374), + [sym_target_name] = ACTIONS(366), + [anon_sym_LPAREN] = ACTIONS(376), + [anon_sym_LBRACK] = ACTIONS(378), + [aux_sym_chunk_specification_token1] = ACTIONS(380), + [aux_sym_iterated_element_association_token1] = ACTIONS(382), + [aux_sym_relation_membership_token1] = ACTIONS(384), + [aux_sym_raise_expression_token1] = ACTIONS(386), + [aux_sym_factor_abs_token1] = ACTIONS(388), + [aux_sym_primary_null_token1] = ACTIONS(390), + [aux_sym_allocator_token1] = ACTIONS(392), + [aux_sym_declare_expression_token1] = ACTIONS(394), + [aux_sym_case_expression_token1] = ACTIONS(396), + [aux_sym_component_choice_list_token1] = ACTIONS(398), + [aux_sym_global_mode_token1] = ACTIONS(400), + [aux_sym_non_empty_mode_token1] = ACTIONS(402), + [aux_sym_if_expression_token1] = ACTIONS(404), }, [17] = { - [sym__defining_identifier_list] = STATE(2006), - [sym__declarative_item] = STATE(6), - [sym__basic_declarative_item] = STATE(6), - [sym__basic_declaration] = STATE(6), - [sym__package_declaration] = STATE(6), - [sym_package_specification] = STATE(2003), - [sym_use_clause] = STATE(6), - [sym__proper_body] = STATE(6), - [sym_subprogram_body] = STATE(6), - [sym_package_body] = STATE(6), - [sym__type_declaration] = STATE(6), - [sym_full_type_declaration] = STATE(6), - [sym_private_type_declaration] = STATE(6), - [sym_private_extension_declaration] = STATE(6), - [sym_incomplete_type_declaration] = STATE(6), - [sym__aspect_clause] = STATE(6), - [sym_at_clause] = STATE(6), - [sym_attribute_definition_clause] = STATE(6), - [sym_body_stub] = STATE(6), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), - [sym_task_body] = STATE(6), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), - [sym_protected_body] = STATE(6), - [sym_protected_body_stub] = STATE(261), - [sym__declarative_item_pragma] = STATE(6), - [sym_non_empty_declarative_part] = STATE(1899), - [sym_enumeration_representation_clause] = STATE(6), - [sym_exception_declaration] = STATE(6), - [sym_function_specification] = STATE(1097), - [sym__generic_declaration] = STATE(6), - [sym_generic_formal_part] = STATE(944), - [sym_generic_subprogram_declaration] = STATE(6), - [sym_generic_package_declaration] = STATE(6), - [sym_generic_instantiation] = STATE(6), - [sym_null_procedure_declaration] = STATE(6), - [sym_number_declaration] = STATE(6), - [sym_object_declaration] = STATE(6), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(1042), - [sym_pragma_g] = STATE(6), - [sym_procedure_specification] = STATE(1106), - [sym_record_representation_clause] = STATE(6), - [sym__renaming_declaration] = STATE(6), - [sym_object_renaming_declaration] = STATE(6), - [sym_exception_renaming_declaration] = STATE(6), - [sym_package_renaming_declaration] = STATE(6), - [sym_subprogram_renaming_declaration] = STATE(6), - [sym_generic_renaming_declaration] = STATE(6), - [sym_gnatprep_declarative_if_statement] = STATE(6), - [sym_subprogram_declaration] = STATE(6), - [sym_expression_function_declaration] = STATE(6), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(6), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(259), + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(28), + [sym__basic_declarative_item] = STATE(28), + [sym__basic_declaration] = STATE(28), + [sym__package_declaration] = STATE(28), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(28), + [sym__proper_body] = STATE(28), + [sym_subprogram_body] = STATE(28), + [sym_package_body] = STATE(28), + [sym__type_declaration] = STATE(28), + [sym_full_type_declaration] = STATE(28), + [sym_private_type_declaration] = STATE(28), + [sym_private_extension_declaration] = STATE(28), + [sym_incomplete_type_declaration] = STATE(28), + [sym__aspect_clause] = STATE(28), + [sym_at_clause] = STATE(28), + [sym_attribute_definition_clause] = STATE(28), + [sym_body_stub] = STATE(28), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(28), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(28), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(28), + [sym_non_empty_declarative_part] = STATE(1650), + [sym_enumeration_representation_clause] = STATE(28), + [sym_exception_declaration] = STATE(28), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(28), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(28), + [sym_generic_package_declaration] = STATE(28), + [sym_generic_instantiation] = STATE(28), + [sym_null_procedure_declaration] = STATE(28), + [sym_number_declaration] = STATE(28), + [sym_object_declaration] = STATE(28), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(28), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(28), + [sym__renaming_declaration] = STATE(28), + [sym_object_renaming_declaration] = STATE(28), + [sym_exception_renaming_declaration] = STATE(28), + [sym_package_renaming_declaration] = STATE(28), + [sym_subprogram_renaming_declaration] = STATE(28), + [sym_generic_renaming_declaration] = STATE(28), + [sym_gnatprep_declarative_if_statement] = STATE(28), + [sym_subprogram_declaration] = STATE(28), + [sym_expression_function_declaration] = STATE(28), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(28), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(261), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(340), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265), - [aux_sym_subtype_declaration_token1] = ACTIONS(83), - }, - [18] = { - [sym__defining_identifier_list] = STATE(2006), - [sym__declarative_item] = STATE(6), - [sym__basic_declarative_item] = STATE(6), - [sym__basic_declaration] = STATE(6), - [sym__package_declaration] = STATE(6), - [sym_package_specification] = STATE(2003), - [sym_use_clause] = STATE(6), - [sym__proper_body] = STATE(6), - [sym_subprogram_body] = STATE(6), - [sym_package_body] = STATE(6), - [sym__type_declaration] = STATE(6), - [sym_full_type_declaration] = STATE(6), - [sym_private_type_declaration] = STATE(6), - [sym_private_extension_declaration] = STATE(6), - [sym_incomplete_type_declaration] = STATE(6), - [sym__aspect_clause] = STATE(6), - [sym_at_clause] = STATE(6), - [sym_attribute_definition_clause] = STATE(6), - [sym_body_stub] = STATE(6), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), - [sym_task_body] = STATE(6), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), - [sym_protected_body] = STATE(6), - [sym_protected_body_stub] = STATE(261), - [sym__declarative_item_pragma] = STATE(6), - [sym_non_empty_declarative_part] = STATE(1637), - [sym_enumeration_representation_clause] = STATE(6), - [sym_exception_declaration] = STATE(6), - [sym_function_specification] = STATE(1097), - [sym__generic_declaration] = STATE(6), - [sym_generic_formal_part] = STATE(944), - [sym_generic_subprogram_declaration] = STATE(6), - [sym_generic_package_declaration] = STATE(6), - [sym_generic_instantiation] = STATE(6), - [sym_null_procedure_declaration] = STATE(6), - [sym_number_declaration] = STATE(6), - [sym_object_declaration] = STATE(6), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(1042), - [sym_pragma_g] = STATE(6), - [sym_procedure_specification] = STATE(1106), - [sym_record_representation_clause] = STATE(6), - [sym__renaming_declaration] = STATE(6), - [sym_object_renaming_declaration] = STATE(6), - [sym_exception_renaming_declaration] = STATE(6), - [sym_package_renaming_declaration] = STATE(6), - [sym_subprogram_renaming_declaration] = STATE(6), - [sym_generic_renaming_declaration] = STATE(6), - [sym_gnatprep_declarative_if_statement] = STATE(6), - [sym_subprogram_declaration] = STATE(6), - [sym_expression_function_declaration] = STATE(6), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(6), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(261), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(406), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265), - [aux_sym_subtype_declaration_token1] = ACTIONS(83), - }, - [19] = { - [sym__defining_identifier_list] = STATE(2006), - [sym__declarative_item] = STATE(6), - [sym__basic_declarative_item] = STATE(6), - [sym__basic_declaration] = STATE(6), - [sym__package_declaration] = STATE(6), - [sym_package_specification] = STATE(2003), - [sym_use_clause] = STATE(6), - [sym__proper_body] = STATE(6), - [sym_subprogram_body] = STATE(6), - [sym_package_body] = STATE(6), - [sym__type_declaration] = STATE(6), - [sym_full_type_declaration] = STATE(6), - [sym_private_type_declaration] = STATE(6), - [sym_private_extension_declaration] = STATE(6), - [sym_incomplete_type_declaration] = STATE(6), - [sym__aspect_clause] = STATE(6), - [sym_at_clause] = STATE(6), - [sym_attribute_definition_clause] = STATE(6), - [sym_body_stub] = STATE(6), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), - [sym_task_body] = STATE(6), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), - [sym_protected_body] = STATE(6), - [sym_protected_body_stub] = STATE(261), - [sym__declarative_item_pragma] = STATE(6), - [sym_non_empty_declarative_part] = STATE(1812), - [sym_enumeration_representation_clause] = STATE(6), - [sym_exception_declaration] = STATE(6), - [sym_function_specification] = STATE(1097), - [sym__generic_declaration] = STATE(6), - [sym_generic_formal_part] = STATE(944), - [sym_generic_subprogram_declaration] = STATE(6), - [sym_generic_package_declaration] = STATE(6), - [sym_generic_instantiation] = STATE(6), - [sym_null_procedure_declaration] = STATE(6), - [sym_number_declaration] = STATE(6), - [sym_object_declaration] = STATE(6), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(1042), - [sym_pragma_g] = STATE(6), - [sym_procedure_specification] = STATE(1106), - [sym_record_representation_clause] = STATE(6), - [sym__renaming_declaration] = STATE(6), - [sym_object_renaming_declaration] = STATE(6), - [sym_exception_renaming_declaration] = STATE(6), - [sym_package_renaming_declaration] = STATE(6), - [sym_subprogram_renaming_declaration] = STATE(6), - [sym_generic_renaming_declaration] = STATE(6), - [sym_gnatprep_declarative_if_statement] = STATE(6), - [sym_subprogram_declaration] = STATE(6), - [sym_expression_function_declaration] = STATE(6), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(6), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(261), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(346), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265), - [aux_sym_subtype_declaration_token1] = ACTIONS(83), - }, - [20] = { - [sym__defining_identifier_list] = STATE(2006), - [sym__declarative_item] = STATE(6), - [sym__basic_declarative_item] = STATE(6), - [sym__basic_declaration] = STATE(6), - [sym__package_declaration] = STATE(6), - [sym_package_specification] = STATE(2003), - [sym_use_clause] = STATE(6), - [sym__proper_body] = STATE(6), - [sym_subprogram_body] = STATE(6), - [sym_package_body] = STATE(6), - [sym__type_declaration] = STATE(6), - [sym_full_type_declaration] = STATE(6), - [sym_private_type_declaration] = STATE(6), - [sym_private_extension_declaration] = STATE(6), - [sym_incomplete_type_declaration] = STATE(6), - [sym__aspect_clause] = STATE(6), - [sym_at_clause] = STATE(6), - [sym_attribute_definition_clause] = STATE(6), - [sym_body_stub] = STATE(6), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), - [sym_task_body] = STATE(6), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), - [sym_protected_body] = STATE(6), - [sym_protected_body_stub] = STATE(261), - [sym__declarative_item_pragma] = STATE(6), - [sym_non_empty_declarative_part] = STATE(1689), - [sym_enumeration_representation_clause] = STATE(6), - [sym_exception_declaration] = STATE(6), - [sym_function_specification] = STATE(1097), - [sym__generic_declaration] = STATE(6), - [sym_generic_formal_part] = STATE(944), - [sym_generic_subprogram_declaration] = STATE(6), - [sym_generic_package_declaration] = STATE(6), - [sym_generic_instantiation] = STATE(6), - [sym_null_procedure_declaration] = STATE(6), - [sym_number_declaration] = STATE(6), - [sym_object_declaration] = STATE(6), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(1042), - [sym_pragma_g] = STATE(6), - [sym_procedure_specification] = STATE(1106), - [sym_record_representation_clause] = STATE(6), - [sym__renaming_declaration] = STATE(6), - [sym_object_renaming_declaration] = STATE(6), - [sym_exception_renaming_declaration] = STATE(6), - [sym_package_renaming_declaration] = STATE(6), - [sym_subprogram_renaming_declaration] = STATE(6), - [sym_generic_renaming_declaration] = STATE(6), - [sym_gnatprep_declarative_if_statement] = STATE(6), - [sym_subprogram_declaration] = STATE(6), - [sym_expression_function_declaration] = STATE(6), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(6), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(261), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), [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(406), [aux_sym_subprogram_body_token1] = ACTIONS(408), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), @@ -11730,148 +11575,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, - [21] = { - [sym__defining_identifier_list] = STATE(2006), - [sym__declarative_item] = STATE(6), - [sym__basic_declarative_item] = STATE(6), - [sym__basic_declaration] = STATE(6), - [sym__package_declaration] = STATE(6), - [sym_package_specification] = STATE(2003), - [sym_use_clause] = STATE(6), - [sym__proper_body] = STATE(6), - [sym_subprogram_body] = STATE(6), - [sym_package_body] = STATE(6), - [sym__type_declaration] = STATE(6), - [sym_full_type_declaration] = STATE(6), - [sym_private_type_declaration] = STATE(6), - [sym_private_extension_declaration] = STATE(6), - [sym_incomplete_type_declaration] = STATE(6), - [sym__aspect_clause] = STATE(6), - [sym_at_clause] = STATE(6), - [sym_attribute_definition_clause] = STATE(6), - [sym_body_stub] = STATE(6), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), - [sym_task_body] = STATE(6), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), - [sym_protected_body] = STATE(6), - [sym_protected_body_stub] = STATE(261), - [sym__declarative_item_pragma] = STATE(6), - [sym_non_empty_declarative_part] = STATE(1752), - [sym_enumeration_representation_clause] = STATE(6), - [sym_exception_declaration] = STATE(6), - [sym_function_specification] = STATE(1097), - [sym__generic_declaration] = STATE(6), - [sym_generic_formal_part] = STATE(944), - [sym_generic_subprogram_declaration] = STATE(6), - [sym_generic_package_declaration] = STATE(6), - [sym_generic_instantiation] = STATE(6), - [sym_null_procedure_declaration] = STATE(6), - [sym_number_declaration] = STATE(6), - [sym_object_declaration] = STATE(6), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(1042), - [sym_pragma_g] = STATE(6), - [sym_procedure_specification] = STATE(1106), - [sym_record_representation_clause] = STATE(6), - [sym__renaming_declaration] = STATE(6), - [sym_object_renaming_declaration] = STATE(6), - [sym_exception_renaming_declaration] = STATE(6), - [sym_package_renaming_declaration] = STATE(6), - [sym_subprogram_renaming_declaration] = STATE(6), - [sym_generic_renaming_declaration] = STATE(6), - [sym_gnatprep_declarative_if_statement] = STATE(6), - [sym_subprogram_declaration] = STATE(6), - [sym_expression_function_declaration] = STATE(6), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(6), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(259), + [18] = { + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(28), + [sym__basic_declarative_item] = STATE(28), + [sym__basic_declaration] = STATE(28), + [sym__package_declaration] = STATE(28), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(28), + [sym__proper_body] = STATE(28), + [sym_subprogram_body] = STATE(28), + [sym_package_body] = STATE(28), + [sym__type_declaration] = STATE(28), + [sym_full_type_declaration] = STATE(28), + [sym_private_type_declaration] = STATE(28), + [sym_private_extension_declaration] = STATE(28), + [sym_incomplete_type_declaration] = STATE(28), + [sym__aspect_clause] = STATE(28), + [sym_at_clause] = STATE(28), + [sym_attribute_definition_clause] = STATE(28), + [sym_body_stub] = STATE(28), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(28), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(28), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(28), + [sym_non_empty_declarative_part] = STATE(1888), + [sym_enumeration_representation_clause] = STATE(28), + [sym_exception_declaration] = STATE(28), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(28), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(28), + [sym_generic_package_declaration] = STATE(28), + [sym_generic_instantiation] = STATE(28), + [sym_null_procedure_declaration] = STATE(28), + [sym_number_declaration] = STATE(28), + [sym_object_declaration] = STATE(28), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(28), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(28), + [sym__renaming_declaration] = STATE(28), + [sym_object_renaming_declaration] = STATE(28), + [sym_exception_renaming_declaration] = STATE(28), + [sym_package_renaming_declaration] = STATE(28), + [sym_subprogram_renaming_declaration] = STATE(28), + [sym_generic_renaming_declaration] = STATE(28), + [sym_gnatprep_declarative_if_statement] = STATE(28), + [sym_subprogram_declaration] = STATE(28), + [sym_expression_function_declaration] = STATE(28), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(28), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(261), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(404), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265), - [aux_sym_subtype_declaration_token1] = ACTIONS(83), - }, - [22] = { - [sym__defining_identifier_list] = STATE(2006), - [sym__declarative_item] = STATE(6), - [sym__basic_declarative_item] = STATE(6), - [sym__basic_declaration] = STATE(6), - [sym__package_declaration] = STATE(6), - [sym_package_specification] = STATE(2003), - [sym_use_clause] = STATE(6), - [sym__proper_body] = STATE(6), - [sym_subprogram_body] = STATE(6), - [sym_package_body] = STATE(6), - [sym__type_declaration] = STATE(6), - [sym_full_type_declaration] = STATE(6), - [sym_private_type_declaration] = STATE(6), - [sym_private_extension_declaration] = STATE(6), - [sym_incomplete_type_declaration] = STATE(6), - [sym__aspect_clause] = STATE(6), - [sym_at_clause] = STATE(6), - [sym_attribute_definition_clause] = STATE(6), - [sym_body_stub] = STATE(6), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), - [sym_task_body] = STATE(6), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), - [sym_protected_body] = STATE(6), - [sym_protected_body_stub] = STATE(261), - [sym__declarative_item_pragma] = STATE(6), - [sym_non_empty_declarative_part] = STATE(1986), - [sym_enumeration_representation_clause] = STATE(6), - [sym_exception_declaration] = STATE(6), - [sym_function_specification] = STATE(1097), - [sym__generic_declaration] = STATE(6), - [sym_generic_formal_part] = STATE(944), - [sym_generic_subprogram_declaration] = STATE(6), - [sym_generic_package_declaration] = STATE(6), - [sym_generic_instantiation] = STATE(6), - [sym_null_procedure_declaration] = STATE(6), - [sym_number_declaration] = STATE(6), - [sym_object_declaration] = STATE(6), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(1042), - [sym_pragma_g] = STATE(6), - [sym_procedure_specification] = STATE(1106), - [sym_record_representation_clause] = STATE(6), - [sym__renaming_declaration] = STATE(6), - [sym_object_renaming_declaration] = STATE(6), - [sym_exception_renaming_declaration] = STATE(6), - [sym_package_renaming_declaration] = STATE(6), - [sym_subprogram_renaming_declaration] = STATE(6), - [sym_generic_renaming_declaration] = STATE(6), - [sym_gnatprep_declarative_if_statement] = STATE(6), - [sym_subprogram_declaration] = STATE(6), - [sym_expression_function_declaration] = STATE(6), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(6), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(261), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), [aux_sym_use_clause_token2] = ACTIONS(25), @@ -11884,71 +11652,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, - [23] = { - [sym__defining_identifier_list] = STATE(2006), - [sym__declarative_item] = STATE(6), - [sym__basic_declarative_item] = STATE(6), - [sym__basic_declaration] = STATE(6), - [sym__package_declaration] = STATE(6), - [sym_package_specification] = STATE(2003), - [sym_use_clause] = STATE(6), - [sym__proper_body] = STATE(6), - [sym_subprogram_body] = STATE(6), - [sym_package_body] = STATE(6), - [sym__type_declaration] = STATE(6), - [sym_full_type_declaration] = STATE(6), - [sym_private_type_declaration] = STATE(6), - [sym_private_extension_declaration] = STATE(6), - [sym_incomplete_type_declaration] = STATE(6), - [sym__aspect_clause] = STATE(6), - [sym_at_clause] = STATE(6), - [sym_attribute_definition_clause] = STATE(6), - [sym_body_stub] = STATE(6), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), - [sym_task_body] = STATE(6), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), - [sym_protected_body] = STATE(6), - [sym_protected_body_stub] = STATE(261), - [sym__declarative_item_pragma] = STATE(6), - [sym_non_empty_declarative_part] = STATE(1973), - [sym_enumeration_representation_clause] = STATE(6), - [sym_exception_declaration] = STATE(6), - [sym_function_specification] = STATE(1097), - [sym__generic_declaration] = STATE(6), - [sym_generic_formal_part] = STATE(944), - [sym_generic_subprogram_declaration] = STATE(6), - [sym_generic_package_declaration] = STATE(6), - [sym_generic_instantiation] = STATE(6), - [sym_null_procedure_declaration] = STATE(6), - [sym_number_declaration] = STATE(6), - [sym_object_declaration] = STATE(6), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(1042), - [sym_pragma_g] = STATE(6), - [sym_procedure_specification] = STATE(1106), - [sym_record_representation_clause] = STATE(6), - [sym__renaming_declaration] = STATE(6), - [sym_object_renaming_declaration] = STATE(6), - [sym_exception_renaming_declaration] = STATE(6), - [sym_package_renaming_declaration] = STATE(6), - [sym_subprogram_renaming_declaration] = STATE(6), - [sym_generic_renaming_declaration] = STATE(6), - [sym_gnatprep_declarative_if_statement] = STATE(6), - [sym_subprogram_declaration] = STATE(6), - [sym_expression_function_declaration] = STATE(6), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(6), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(259), + [19] = { + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(28), + [sym__basic_declarative_item] = STATE(28), + [sym__basic_declaration] = STATE(28), + [sym__package_declaration] = STATE(28), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(28), + [sym__proper_body] = STATE(28), + [sym_subprogram_body] = STATE(28), + [sym_package_body] = STATE(28), + [sym__type_declaration] = STATE(28), + [sym_full_type_declaration] = STATE(28), + [sym_private_type_declaration] = STATE(28), + [sym_private_extension_declaration] = STATE(28), + [sym_incomplete_type_declaration] = STATE(28), + [sym__aspect_clause] = STATE(28), + [sym_at_clause] = STATE(28), + [sym_attribute_definition_clause] = STATE(28), + [sym_body_stub] = STATE(28), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(28), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(28), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(28), + [sym_non_empty_declarative_part] = STATE(1895), + [sym_enumeration_representation_clause] = STATE(28), + [sym_exception_declaration] = STATE(28), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(28), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(28), + [sym_generic_package_declaration] = STATE(28), + [sym_generic_instantiation] = STATE(28), + [sym_null_procedure_declaration] = STATE(28), + [sym_number_declaration] = STATE(28), + [sym_object_declaration] = STATE(28), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(28), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(28), + [sym__renaming_declaration] = STATE(28), + [sym_object_renaming_declaration] = STATE(28), + [sym_exception_renaming_declaration] = STATE(28), + [sym_package_renaming_declaration] = STATE(28), + [sym_subprogram_renaming_declaration] = STATE(28), + [sym_generic_renaming_declaration] = STATE(28), + [sym_gnatprep_declarative_if_statement] = STATE(28), + [sym_subprogram_declaration] = STATE(28), + [sym_expression_function_declaration] = STATE(28), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(28), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(261), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [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(344), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [20] = { + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(28), + [sym__basic_declarative_item] = STATE(28), + [sym__basic_declaration] = STATE(28), + [sym__package_declaration] = STATE(28), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(28), + [sym__proper_body] = STATE(28), + [sym_subprogram_body] = STATE(28), + [sym_package_body] = STATE(28), + [sym__type_declaration] = STATE(28), + [sym_full_type_declaration] = STATE(28), + [sym_private_type_declaration] = STATE(28), + [sym_private_extension_declaration] = STATE(28), + [sym_incomplete_type_declaration] = STATE(28), + [sym__aspect_clause] = STATE(28), + [sym_at_clause] = STATE(28), + [sym_attribute_definition_clause] = STATE(28), + [sym_body_stub] = STATE(28), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(28), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(28), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(28), + [sym_non_empty_declarative_part] = STATE(2026), + [sym_enumeration_representation_clause] = STATE(28), + [sym_exception_declaration] = STATE(28), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(28), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(28), + [sym_generic_package_declaration] = STATE(28), + [sym_generic_instantiation] = STATE(28), + [sym_null_procedure_declaration] = STATE(28), + [sym_number_declaration] = STATE(28), + [sym_object_declaration] = STATE(28), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(28), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(28), + [sym__renaming_declaration] = STATE(28), + [sym_object_renaming_declaration] = STATE(28), + [sym_exception_renaming_declaration] = STATE(28), + [sym_package_renaming_declaration] = STATE(28), + [sym_subprogram_renaming_declaration] = STATE(28), + [sym_generic_renaming_declaration] = STATE(28), + [sym_gnatprep_declarative_if_statement] = STATE(28), + [sym_subprogram_declaration] = STATE(28), + [sym_expression_function_declaration] = STATE(28), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(28), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), [aux_sym_use_clause_token2] = ACTIONS(25), @@ -11961,71 +11806,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, - [24] = { - [sym__defining_identifier_list] = STATE(2006), - [sym__declarative_item] = STATE(6), - [sym__basic_declarative_item] = STATE(6), - [sym__basic_declaration] = STATE(6), - [sym__package_declaration] = STATE(6), - [sym_package_specification] = STATE(2003), - [sym_use_clause] = STATE(6), - [sym__proper_body] = STATE(6), - [sym_subprogram_body] = STATE(6), - [sym_package_body] = STATE(6), - [sym__type_declaration] = STATE(6), - [sym_full_type_declaration] = STATE(6), - [sym_private_type_declaration] = STATE(6), - [sym_private_extension_declaration] = STATE(6), - [sym_incomplete_type_declaration] = STATE(6), - [sym__aspect_clause] = STATE(6), - [sym_at_clause] = STATE(6), - [sym_attribute_definition_clause] = STATE(6), - [sym_body_stub] = STATE(6), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), - [sym_task_body] = STATE(6), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), - [sym_protected_body] = STATE(6), - [sym_protected_body_stub] = STATE(261), - [sym__declarative_item_pragma] = STATE(6), - [sym_non_empty_declarative_part] = STATE(1849), - [sym_enumeration_representation_clause] = STATE(6), - [sym_exception_declaration] = STATE(6), - [sym_function_specification] = STATE(1097), - [sym__generic_declaration] = STATE(6), - [sym_generic_formal_part] = STATE(944), - [sym_generic_subprogram_declaration] = STATE(6), - [sym_generic_package_declaration] = STATE(6), - [sym_generic_instantiation] = STATE(6), - [sym_null_procedure_declaration] = STATE(6), - [sym_number_declaration] = STATE(6), - [sym_object_declaration] = STATE(6), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(1042), - [sym_pragma_g] = STATE(6), - [sym_procedure_specification] = STATE(1106), - [sym_record_representation_clause] = STATE(6), - [sym__renaming_declaration] = STATE(6), - [sym_object_renaming_declaration] = STATE(6), - [sym_exception_renaming_declaration] = STATE(6), - [sym_package_renaming_declaration] = STATE(6), - [sym_subprogram_renaming_declaration] = STATE(6), - [sym_generic_renaming_declaration] = STATE(6), - [sym_gnatprep_declarative_if_statement] = STATE(6), - [sym_subprogram_declaration] = STATE(6), - [sym_expression_function_declaration] = STATE(6), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(6), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(259), + [21] = { + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(28), + [sym__basic_declarative_item] = STATE(28), + [sym__basic_declaration] = STATE(28), + [sym__package_declaration] = STATE(28), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(28), + [sym__proper_body] = STATE(28), + [sym_subprogram_body] = STATE(28), + [sym_package_body] = STATE(28), + [sym__type_declaration] = STATE(28), + [sym_full_type_declaration] = STATE(28), + [sym_private_type_declaration] = STATE(28), + [sym_private_extension_declaration] = STATE(28), + [sym_incomplete_type_declaration] = STATE(28), + [sym__aspect_clause] = STATE(28), + [sym_at_clause] = STATE(28), + [sym_attribute_definition_clause] = STATE(28), + [sym_body_stub] = STATE(28), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(28), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(28), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(28), + [sym_non_empty_declarative_part] = STATE(1969), + [sym_enumeration_representation_clause] = STATE(28), + [sym_exception_declaration] = STATE(28), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(28), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(28), + [sym_generic_package_declaration] = STATE(28), + [sym_generic_instantiation] = STATE(28), + [sym_null_procedure_declaration] = STATE(28), + [sym_number_declaration] = STATE(28), + [sym_object_declaration] = STATE(28), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(28), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(28), + [sym__renaming_declaration] = STATE(28), + [sym_object_renaming_declaration] = STATE(28), + [sym_exception_renaming_declaration] = STATE(28), + [sym_package_renaming_declaration] = STATE(28), + [sym_subprogram_renaming_declaration] = STATE(28), + [sym_generic_renaming_declaration] = STATE(28), + [sym_gnatprep_declarative_if_statement] = STATE(28), + [sym_subprogram_declaration] = STATE(28), + [sym_expression_function_declaration] = STATE(28), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(28), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(261), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), [aux_sym_use_clause_token2] = ACTIONS(25), @@ -12038,71 +11883,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, - [25] = { - [sym__defining_identifier_list] = STATE(2006), - [sym__declarative_item] = STATE(6), - [sym__basic_declarative_item] = STATE(6), - [sym__basic_declaration] = STATE(6), - [sym__package_declaration] = STATE(6), - [sym_package_specification] = STATE(2003), - [sym_use_clause] = STATE(6), - [sym__proper_body] = STATE(6), - [sym_subprogram_body] = STATE(6), - [sym_package_body] = STATE(6), - [sym__type_declaration] = STATE(6), - [sym_full_type_declaration] = STATE(6), - [sym_private_type_declaration] = STATE(6), - [sym_private_extension_declaration] = STATE(6), - [sym_incomplete_type_declaration] = STATE(6), - [sym__aspect_clause] = STATE(6), - [sym_at_clause] = STATE(6), - [sym_attribute_definition_clause] = STATE(6), - [sym_body_stub] = STATE(6), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), - [sym_task_body] = STATE(6), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), - [sym_protected_body] = STATE(6), - [sym_protected_body_stub] = STATE(261), - [sym__declarative_item_pragma] = STATE(6), - [sym_non_empty_declarative_part] = STATE(1925), - [sym_enumeration_representation_clause] = STATE(6), - [sym_exception_declaration] = STATE(6), - [sym_function_specification] = STATE(1097), - [sym__generic_declaration] = STATE(6), - [sym_generic_formal_part] = STATE(944), - [sym_generic_subprogram_declaration] = STATE(6), - [sym_generic_package_declaration] = STATE(6), - [sym_generic_instantiation] = STATE(6), - [sym_null_procedure_declaration] = STATE(6), - [sym_number_declaration] = STATE(6), - [sym_object_declaration] = STATE(6), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(1042), - [sym_pragma_g] = STATE(6), - [sym_procedure_specification] = STATE(1106), - [sym_record_representation_clause] = STATE(6), - [sym__renaming_declaration] = STATE(6), - [sym_object_renaming_declaration] = STATE(6), - [sym_exception_renaming_declaration] = STATE(6), - [sym_package_renaming_declaration] = STATE(6), - [sym_subprogram_renaming_declaration] = STATE(6), - [sym_generic_renaming_declaration] = STATE(6), - [sym_gnatprep_declarative_if_statement] = STATE(6), - [sym_subprogram_declaration] = STATE(6), - [sym_expression_function_declaration] = STATE(6), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(6), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(259), + [22] = { + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(28), + [sym__basic_declarative_item] = STATE(28), + [sym__basic_declaration] = STATE(28), + [sym__package_declaration] = STATE(28), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(28), + [sym__proper_body] = STATE(28), + [sym_subprogram_body] = STATE(28), + [sym_package_body] = STATE(28), + [sym__type_declaration] = STATE(28), + [sym_full_type_declaration] = STATE(28), + [sym_private_type_declaration] = STATE(28), + [sym_private_extension_declaration] = STATE(28), + [sym_incomplete_type_declaration] = STATE(28), + [sym__aspect_clause] = STATE(28), + [sym_at_clause] = STATE(28), + [sym_attribute_definition_clause] = STATE(28), + [sym_body_stub] = STATE(28), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(28), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(28), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(28), + [sym_non_empty_declarative_part] = STATE(1770), + [sym_enumeration_representation_clause] = STATE(28), + [sym_exception_declaration] = STATE(28), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(28), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(28), + [sym_generic_package_declaration] = STATE(28), + [sym_generic_instantiation] = STATE(28), + [sym_null_procedure_declaration] = STATE(28), + [sym_number_declaration] = STATE(28), + [sym_object_declaration] = STATE(28), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(28), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(28), + [sym__renaming_declaration] = STATE(28), + [sym_object_renaming_declaration] = STATE(28), + [sym_exception_renaming_declaration] = STATE(28), + [sym_package_renaming_declaration] = STATE(28), + [sym_subprogram_renaming_declaration] = STATE(28), + [sym_generic_renaming_declaration] = STATE(28), + [sym_gnatprep_declarative_if_statement] = STATE(28), + [sym_subprogram_declaration] = STATE(28), + [sym_expression_function_declaration] = STATE(28), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(28), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(261), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [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(338), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [23] = { + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(28), + [sym__basic_declarative_item] = STATE(28), + [sym__basic_declaration] = STATE(28), + [sym__package_declaration] = STATE(28), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(28), + [sym__proper_body] = STATE(28), + [sym_subprogram_body] = STATE(28), + [sym_package_body] = STATE(28), + [sym__type_declaration] = STATE(28), + [sym_full_type_declaration] = STATE(28), + [sym_private_type_declaration] = STATE(28), + [sym_private_extension_declaration] = STATE(28), + [sym_incomplete_type_declaration] = STATE(28), + [sym__aspect_clause] = STATE(28), + [sym_at_clause] = STATE(28), + [sym_attribute_definition_clause] = STATE(28), + [sym_body_stub] = STATE(28), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(28), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(28), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(28), + [sym_non_empty_declarative_part] = STATE(1854), + [sym_enumeration_representation_clause] = STATE(28), + [sym_exception_declaration] = STATE(28), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(28), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(28), + [sym_generic_package_declaration] = STATE(28), + [sym_generic_instantiation] = STATE(28), + [sym_null_procedure_declaration] = STATE(28), + [sym_number_declaration] = STATE(28), + [sym_object_declaration] = STATE(28), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(28), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(28), + [sym__renaming_declaration] = STATE(28), + [sym_object_renaming_declaration] = STATE(28), + [sym_exception_renaming_declaration] = STATE(28), + [sym_package_renaming_declaration] = STATE(28), + [sym_subprogram_renaming_declaration] = STATE(28), + [sym_generic_renaming_declaration] = STATE(28), + [sym_gnatprep_declarative_if_statement] = STATE(28), + [sym_subprogram_declaration] = STATE(28), + [sym_expression_function_declaration] = STATE(28), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(28), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), [aux_sym_use_clause_token2] = ACTIONS(25), @@ -12115,71 +12037,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, - [26] = { - [sym__defining_identifier_list] = STATE(2006), - [sym__declarative_item] = STATE(6), - [sym__basic_declarative_item] = STATE(6), - [sym__basic_declaration] = STATE(6), - [sym__package_declaration] = STATE(6), - [sym_package_specification] = STATE(2003), - [sym_use_clause] = STATE(6), - [sym__proper_body] = STATE(6), - [sym_subprogram_body] = STATE(6), - [sym_package_body] = STATE(6), - [sym__type_declaration] = STATE(6), - [sym_full_type_declaration] = STATE(6), - [sym_private_type_declaration] = STATE(6), - [sym_private_extension_declaration] = STATE(6), - [sym_incomplete_type_declaration] = STATE(6), - [sym__aspect_clause] = STATE(6), - [sym_at_clause] = STATE(6), - [sym_attribute_definition_clause] = STATE(6), - [sym_body_stub] = STATE(6), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), - [sym_task_body] = STATE(6), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), - [sym_protected_body] = STATE(6), - [sym_protected_body_stub] = STATE(261), - [sym__declarative_item_pragma] = STATE(6), - [sym_non_empty_declarative_part] = STATE(1902), - [sym_enumeration_representation_clause] = STATE(6), - [sym_exception_declaration] = STATE(6), - [sym_function_specification] = STATE(1097), - [sym__generic_declaration] = STATE(6), - [sym_generic_formal_part] = STATE(944), - [sym_generic_subprogram_declaration] = STATE(6), - [sym_generic_package_declaration] = STATE(6), - [sym_generic_instantiation] = STATE(6), - [sym_null_procedure_declaration] = STATE(6), - [sym_number_declaration] = STATE(6), - [sym_object_declaration] = STATE(6), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(1042), - [sym_pragma_g] = STATE(6), - [sym_procedure_specification] = STATE(1106), - [sym_record_representation_clause] = STATE(6), - [sym__renaming_declaration] = STATE(6), - [sym_object_renaming_declaration] = STATE(6), - [sym_exception_renaming_declaration] = STATE(6), - [sym_package_renaming_declaration] = STATE(6), - [sym_subprogram_renaming_declaration] = STATE(6), - [sym_generic_renaming_declaration] = STATE(6), - [sym_gnatprep_declarative_if_statement] = STATE(6), - [sym_subprogram_declaration] = STATE(6), - [sym_expression_function_declaration] = STATE(6), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(6), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(259), + [24] = { + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(28), + [sym__basic_declarative_item] = STATE(28), + [sym__basic_declaration] = STATE(28), + [sym__package_declaration] = STATE(28), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(28), + [sym__proper_body] = STATE(28), + [sym_subprogram_body] = STATE(28), + [sym_package_body] = STATE(28), + [sym__type_declaration] = STATE(28), + [sym_full_type_declaration] = STATE(28), + [sym_private_type_declaration] = STATE(28), + [sym_private_extension_declaration] = STATE(28), + [sym_incomplete_type_declaration] = STATE(28), + [sym__aspect_clause] = STATE(28), + [sym_at_clause] = STATE(28), + [sym_attribute_definition_clause] = STATE(28), + [sym_body_stub] = STATE(28), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(28), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(28), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(28), + [sym_non_empty_declarative_part] = STATE(2019), + [sym_enumeration_representation_clause] = STATE(28), + [sym_exception_declaration] = STATE(28), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(28), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(28), + [sym_generic_package_declaration] = STATE(28), + [sym_generic_instantiation] = STATE(28), + [sym_null_procedure_declaration] = STATE(28), + [sym_number_declaration] = STATE(28), + [sym_object_declaration] = STATE(28), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(28), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(28), + [sym__renaming_declaration] = STATE(28), + [sym_object_renaming_declaration] = STATE(28), + [sym_exception_renaming_declaration] = STATE(28), + [sym_package_renaming_declaration] = STATE(28), + [sym_subprogram_renaming_declaration] = STATE(28), + [sym_generic_renaming_declaration] = STATE(28), + [sym_gnatprep_declarative_if_statement] = STATE(28), + [sym_subprogram_declaration] = STATE(28), + [sym_expression_function_declaration] = STATE(28), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(28), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(261), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), [aux_sym_use_clause_token2] = ACTIONS(25), @@ -12192,74 +12114,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, - [27] = { - [sym__defining_identifier_list] = STATE(2006), - [sym__declarative_item] = STATE(6), - [sym__basic_declarative_item] = STATE(6), - [sym__basic_declaration] = STATE(6), - [sym__package_declaration] = STATE(6), - [sym_package_specification] = STATE(2003), - [sym_use_clause] = STATE(6), - [sym__proper_body] = STATE(6), - [sym_subprogram_body] = STATE(6), - [sym_package_body] = STATE(6), - [sym__type_declaration] = STATE(6), - [sym_full_type_declaration] = STATE(6), - [sym_private_type_declaration] = STATE(6), - [sym_private_extension_declaration] = STATE(6), - [sym_incomplete_type_declaration] = STATE(6), - [sym__aspect_clause] = STATE(6), - [sym_at_clause] = STATE(6), - [sym_attribute_definition_clause] = STATE(6), - [sym_body_stub] = STATE(6), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), - [sym_task_body] = STATE(6), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), - [sym_protected_body] = STATE(6), - [sym_protected_body_stub] = STATE(261), - [sym__declarative_item_pragma] = STATE(6), - [sym_non_empty_declarative_part] = STATE(1178), - [sym_enumeration_representation_clause] = STATE(6), - [sym_exception_declaration] = STATE(6), - [sym_function_specification] = STATE(1097), - [sym__generic_declaration] = STATE(6), - [sym_generic_formal_part] = STATE(944), - [sym_generic_subprogram_declaration] = STATE(6), - [sym_generic_package_declaration] = STATE(6), - [sym_generic_instantiation] = STATE(6), - [sym_null_procedure_declaration] = STATE(6), - [sym_number_declaration] = STATE(6), - [sym_object_declaration] = STATE(6), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(1042), - [sym_pragma_g] = STATE(6), - [sym_procedure_specification] = STATE(1106), - [sym_record_representation_clause] = STATE(6), - [sym__renaming_declaration] = STATE(6), - [sym_object_renaming_declaration] = STATE(6), - [sym_exception_renaming_declaration] = STATE(6), - [sym_package_renaming_declaration] = STATE(6), - [sym_subprogram_renaming_declaration] = STATE(6), - [sym_generic_renaming_declaration] = STATE(6), - [sym_gnatprep_declarative_if_statement] = STATE(6), - [sym_subprogram_declaration] = STATE(6), - [sym_expression_function_declaration] = STATE(6), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(6), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(259), + [25] = { + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(28), + [sym__basic_declarative_item] = STATE(28), + [sym__basic_declaration] = STATE(28), + [sym__package_declaration] = STATE(28), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(28), + [sym__proper_body] = STATE(28), + [sym_subprogram_body] = STATE(28), + [sym_package_body] = STATE(28), + [sym__type_declaration] = STATE(28), + [sym_full_type_declaration] = STATE(28), + [sym_private_type_declaration] = STATE(28), + [sym_private_extension_declaration] = STATE(28), + [sym_incomplete_type_declaration] = STATE(28), + [sym__aspect_clause] = STATE(28), + [sym_at_clause] = STATE(28), + [sym_attribute_definition_clause] = STATE(28), + [sym_body_stub] = STATE(28), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(28), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(28), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(28), + [sym_non_empty_declarative_part] = STATE(1905), + [sym_enumeration_representation_clause] = STATE(28), + [sym_exception_declaration] = STATE(28), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(28), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(28), + [sym_generic_package_declaration] = STATE(28), + [sym_generic_instantiation] = STATE(28), + [sym_null_procedure_declaration] = STATE(28), + [sym_number_declaration] = STATE(28), + [sym_object_declaration] = STATE(28), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(28), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(28), + [sym__renaming_declaration] = STATE(28), + [sym_object_renaming_declaration] = STATE(28), + [sym_exception_renaming_declaration] = STATE(28), + [sym_package_renaming_declaration] = STATE(28), + [sym_subprogram_renaming_declaration] = STATE(28), + [sym_generic_renaming_declaration] = STATE(28), + [sym_gnatprep_declarative_if_statement] = STATE(28), + [sym_subprogram_declaration] = STATE(28), + [sym_expression_function_declaration] = STATE(28), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(28), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(261), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), [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(420), [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), @@ -12268,250 +12191,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, - [28] = { - [sym__defining_identifier_list] = STATE(2006), - [sym__declarative_item] = STATE(6), - [sym__basic_declarative_item] = STATE(6), - [sym__basic_declaration] = STATE(6), - [sym__package_declaration] = STATE(6), - [sym_package_specification] = STATE(2003), - [sym_use_clause] = STATE(6), - [sym__proper_body] = STATE(6), - [sym_subprogram_body] = STATE(6), - [sym_package_body] = STATE(6), - [sym__type_declaration] = STATE(6), - [sym_full_type_declaration] = STATE(6), - [sym_private_type_declaration] = STATE(6), - [sym_private_extension_declaration] = STATE(6), - [sym_incomplete_type_declaration] = STATE(6), - [sym__aspect_clause] = STATE(6), - [sym_at_clause] = STATE(6), - [sym_attribute_definition_clause] = STATE(6), - [sym_body_stub] = STATE(6), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), - [sym_task_body] = STATE(6), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), - [sym_protected_body] = STATE(6), - [sym_protected_body_stub] = STATE(261), - [sym__declarative_item_pragma] = STATE(6), - [sym_non_empty_declarative_part] = STATE(1110), - [sym_enumeration_representation_clause] = STATE(6), - [sym_exception_declaration] = STATE(6), - [sym_function_specification] = STATE(1097), - [sym__generic_declaration] = STATE(6), - [sym_generic_formal_part] = STATE(944), - [sym_generic_subprogram_declaration] = STATE(6), - [sym_generic_package_declaration] = STATE(6), - [sym_generic_instantiation] = STATE(6), - [sym_null_procedure_declaration] = STATE(6), - [sym_number_declaration] = STATE(6), - [sym_object_declaration] = STATE(6), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(1042), - [sym_pragma_g] = STATE(6), - [sym_procedure_specification] = STATE(1106), - [sym_record_representation_clause] = STATE(6), - [sym__renaming_declaration] = STATE(6), - [sym_object_renaming_declaration] = STATE(6), - [sym_exception_renaming_declaration] = STATE(6), - [sym_package_renaming_declaration] = STATE(6), - [sym_subprogram_renaming_declaration] = STATE(6), - [sym_generic_renaming_declaration] = STATE(6), - [sym_gnatprep_declarative_if_statement] = STATE(6), - [sym_subprogram_declaration] = STATE(6), - [sym_expression_function_declaration] = STATE(6), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(6), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(261), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265), - [aux_sym_subtype_declaration_token1] = ACTIONS(83), - }, - [29] = { - [sym__defining_identifier_list] = STATE(2006), - [sym__declarative_item] = STATE(6), - [sym__basic_declarative_item] = STATE(6), - [sym__basic_declaration] = STATE(6), - [sym__package_declaration] = STATE(6), - [sym_package_specification] = STATE(2003), - [sym_use_clause] = STATE(6), - [sym__proper_body] = STATE(6), - [sym_subprogram_body] = STATE(6), - [sym_package_body] = STATE(6), - [sym__type_declaration] = STATE(6), - [sym_full_type_declaration] = STATE(6), - [sym_private_type_declaration] = STATE(6), - [sym_private_extension_declaration] = STATE(6), - [sym_incomplete_type_declaration] = STATE(6), - [sym__aspect_clause] = STATE(6), - [sym_at_clause] = STATE(6), - [sym_attribute_definition_clause] = STATE(6), - [sym_body_stub] = STATE(6), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), - [sym_task_body] = STATE(6), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), - [sym_protected_body] = STATE(6), - [sym_protected_body_stub] = STATE(261), - [sym__declarative_item_pragma] = STATE(6), - [sym_non_empty_declarative_part] = STATE(1537), - [sym_enumeration_representation_clause] = STATE(6), - [sym_exception_declaration] = STATE(6), - [sym_function_specification] = STATE(1097), - [sym__generic_declaration] = STATE(6), - [sym_generic_formal_part] = STATE(944), - [sym_generic_subprogram_declaration] = STATE(6), - [sym_generic_package_declaration] = STATE(6), - [sym_generic_instantiation] = STATE(6), - [sym_null_procedure_declaration] = STATE(6), - [sym_number_declaration] = STATE(6), - [sym_object_declaration] = STATE(6), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(1042), - [sym_pragma_g] = STATE(6), - [sym_procedure_specification] = STATE(1106), - [sym_record_representation_clause] = STATE(6), - [sym__renaming_declaration] = STATE(6), - [sym_object_renaming_declaration] = STATE(6), - [sym_exception_renaming_declaration] = STATE(6), - [sym_package_renaming_declaration] = STATE(6), - [sym_subprogram_renaming_declaration] = STATE(6), - [sym_generic_renaming_declaration] = STATE(6), - [sym_gnatprep_declarative_if_statement] = STATE(6), - [sym_subprogram_declaration] = STATE(6), - [sym_expression_function_declaration] = STATE(6), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(6), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(261), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265), - [aux_sym_subtype_declaration_token1] = ACTIONS(83), - }, - [30] = { - [sym__defining_identifier_list] = STATE(2006), - [sym__declarative_item] = STATE(6), - [sym__basic_declarative_item] = STATE(6), - [sym__basic_declaration] = STATE(6), - [sym__package_declaration] = STATE(6), - [sym_package_specification] = STATE(2003), - [sym_use_clause] = STATE(6), - [sym__proper_body] = STATE(6), - [sym_subprogram_body] = STATE(6), - [sym_package_body] = STATE(6), - [sym__type_declaration] = STATE(6), - [sym_full_type_declaration] = STATE(6), - [sym_private_type_declaration] = STATE(6), - [sym_private_extension_declaration] = STATE(6), - [sym_incomplete_type_declaration] = STATE(6), - [sym__aspect_clause] = STATE(6), - [sym_at_clause] = STATE(6), - [sym_attribute_definition_clause] = STATE(6), - [sym_body_stub] = STATE(6), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), - [sym_task_body] = STATE(6), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), - [sym_protected_body] = STATE(6), - [sym_protected_body_stub] = STATE(261), - [sym__declarative_item_pragma] = STATE(6), - [sym_non_empty_declarative_part] = STATE(1729), - [sym_enumeration_representation_clause] = STATE(6), - [sym_exception_declaration] = STATE(6), - [sym_function_specification] = STATE(1097), - [sym__generic_declaration] = STATE(6), - [sym_generic_formal_part] = STATE(944), - [sym_generic_subprogram_declaration] = STATE(6), - [sym_generic_package_declaration] = STATE(6), - [sym_generic_instantiation] = STATE(6), - [sym_null_procedure_declaration] = STATE(6), - [sym_number_declaration] = STATE(6), - [sym_object_declaration] = STATE(6), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(1042), - [sym_pragma_g] = STATE(6), - [sym_procedure_specification] = STATE(1106), - [sym_record_representation_clause] = STATE(6), - [sym__renaming_declaration] = STATE(6), - [sym_object_renaming_declaration] = STATE(6), - [sym_exception_renaming_declaration] = STATE(6), - [sym_package_renaming_declaration] = STATE(6), - [sym_subprogram_renaming_declaration] = STATE(6), - [sym_generic_renaming_declaration] = STATE(6), - [sym_gnatprep_declarative_if_statement] = STATE(6), - [sym_subprogram_declaration] = STATE(6), - [sym_expression_function_declaration] = STATE(6), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(6), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(261), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265), - [aux_sym_subtype_declaration_token1] = ACTIONS(83), - }, - [31] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), + [26] = { + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(38), [sym_null_statement] = STATE(4), [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1080), [sym__simple_statement] = STATE(4), [sym__statement] = STATE(4), [sym__compound_statement] = STATE(4), @@ -12535,181 +12229,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(4), [sym_extended_return_statement] = STATE(4), [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), + [sym_function_call] = STATE(985), [sym_raise_statement] = STATE(4), [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), + [sym_iteration_scheme] = STATE(2043), [sym_assignment_statement] = STATE(4), [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [aux_sym__sequence_of_statements_repeat2] = STATE(38), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), - [aux_sym_package_specification_token3] = ACTIONS(420), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), + [aux_sym_iterator_filter_token1] = ACTIONS(426), + [aux_sym_package_specification_token3] = ACTIONS(426), [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_expression_token2] = ACTIONS(422), - [aux_sym_expression_token3] = ACTIONS(420), - [aux_sym_expression_token4] = ACTIONS(420), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [anon_sym_LT_LT] = ACTIONS(55), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_goto_statement_token1] = ACTIONS(75), - [aux_sym_delay_until_statement_token1] = ACTIONS(77), - [aux_sym_loop_statement_token1] = ACTIONS(79), - [aux_sym_iteration_scheme_token1] = ACTIONS(81), - }, - [32] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1205), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), - [sym_gnatprep_identifier] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(9), - [sym_character_literal] = ACTIONS(9), - [sym_target_name] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), - [aux_sym_package_specification_token3] = ACTIONS(424), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_expression_token3] = ACTIONS(424), - [aux_sym_expression_token4] = ACTIONS(424), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [anon_sym_LT_LT] = ACTIONS(55), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_goto_statement_token1] = ACTIONS(75), - [aux_sym_delay_until_statement_token1] = ACTIONS(77), - [aux_sym_loop_statement_token1] = ACTIONS(79), - [aux_sym_iteration_scheme_token1] = ACTIONS(81), - }, - [33] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1186), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), - [sym_gnatprep_identifier] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(9), - [sym_character_literal] = ACTIONS(9), - [sym_target_name] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_expression_token2] = ACTIONS(422), + [aux_sym_expression_token2] = ACTIONS(426), [aux_sym_expression_token3] = ACTIONS(426), [aux_sym_expression_token4] = ACTIONS(426), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), [aux_sym_declare_expression_token1] = ACTIONS(43), [aux_sym_case_expression_token1] = ACTIONS(45), + [aux_sym_exception_declaration_token1] = ACTIONS(426), [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(426), [aux_sym_result_profile_token1] = ACTIONS(61), [aux_sym_asynchronous_select_token1] = ACTIONS(63), [aux_sym_asynchronous_select_token2] = ACTIONS(65), @@ -12722,356 +12271,908 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_loop_statement_token1] = ACTIONS(79), [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, + [27] = { + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(28), + [sym__basic_declarative_item] = STATE(28), + [sym__basic_declaration] = STATE(28), + [sym__package_declaration] = STATE(28), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(28), + [sym__proper_body] = STATE(28), + [sym_subprogram_body] = STATE(28), + [sym_package_body] = STATE(28), + [sym__type_declaration] = STATE(28), + [sym_full_type_declaration] = STATE(28), + [sym_private_type_declaration] = STATE(28), + [sym_private_extension_declaration] = STATE(28), + [sym_incomplete_type_declaration] = STATE(28), + [sym__aspect_clause] = STATE(28), + [sym_at_clause] = STATE(28), + [sym_attribute_definition_clause] = STATE(28), + [sym_body_stub] = STATE(28), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(28), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(28), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(28), + [sym_non_empty_declarative_part] = STATE(1571), + [sym_enumeration_representation_clause] = STATE(28), + [sym_exception_declaration] = STATE(28), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(28), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(28), + [sym_generic_package_declaration] = STATE(28), + [sym_generic_instantiation] = STATE(28), + [sym_null_procedure_declaration] = STATE(28), + [sym_number_declaration] = STATE(28), + [sym_object_declaration] = STATE(28), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(28), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(28), + [sym__renaming_declaration] = STATE(28), + [sym_object_renaming_declaration] = STATE(28), + [sym_exception_renaming_declaration] = STATE(28), + [sym_package_renaming_declaration] = STATE(28), + [sym_subprogram_renaming_declaration] = STATE(28), + [sym_generic_renaming_declaration] = STATE(28), + [sym_gnatprep_declarative_if_statement] = STATE(28), + [sym_subprogram_declaration] = STATE(28), + [sym_expression_function_declaration] = STATE(28), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(28), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [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(428), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [28] = { + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(5), + [sym__basic_declarative_item] = STATE(5), + [sym__basic_declaration] = STATE(5), + [sym__package_declaration] = STATE(5), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(5), + [sym__proper_body] = STATE(5), + [sym_subprogram_body] = STATE(5), + [sym_package_body] = STATE(5), + [sym__type_declaration] = STATE(5), + [sym_full_type_declaration] = STATE(5), + [sym_private_type_declaration] = STATE(5), + [sym_private_extension_declaration] = STATE(5), + [sym_incomplete_type_declaration] = STATE(5), + [sym__aspect_clause] = STATE(5), + [sym_at_clause] = STATE(5), + [sym_attribute_definition_clause] = STATE(5), + [sym_body_stub] = STATE(5), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(5), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(5), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(5), + [sym_enumeration_representation_clause] = STATE(5), + [sym_exception_declaration] = STATE(5), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(5), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(5), + [sym_generic_package_declaration] = STATE(5), + [sym_generic_instantiation] = STATE(5), + [sym_null_procedure_declaration] = STATE(5), + [sym_number_declaration] = STATE(5), + [sym_object_declaration] = STATE(5), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(5), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(5), + [sym__renaming_declaration] = STATE(5), + [sym_object_renaming_declaration] = STATE(5), + [sym_exception_renaming_declaration] = STATE(5), + [sym_package_renaming_declaration] = STATE(5), + [sym_subprogram_renaming_declaration] = STATE(5), + [sym_generic_renaming_declaration] = STATE(5), + [sym_gnatprep_declarative_if_statement] = STATE(5), + [sym_subprogram_declaration] = STATE(5), + [sym_expression_function_declaration] = STATE(5), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(5), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(5), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_package_specification_token3] = ACTIONS(430), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(430), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [29] = { + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(28), + [sym__basic_declarative_item] = STATE(28), + [sym__basic_declaration] = STATE(28), + [sym__package_declaration] = STATE(28), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(28), + [sym__proper_body] = STATE(28), + [sym_subprogram_body] = STATE(28), + [sym_package_body] = STATE(28), + [sym__type_declaration] = STATE(28), + [sym_full_type_declaration] = STATE(28), + [sym_private_type_declaration] = STATE(28), + [sym_private_extension_declaration] = STATE(28), + [sym_incomplete_type_declaration] = STATE(28), + [sym__aspect_clause] = STATE(28), + [sym_at_clause] = STATE(28), + [sym_attribute_definition_clause] = STATE(28), + [sym_body_stub] = STATE(28), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(28), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(28), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(28), + [sym_non_empty_declarative_part] = STATE(1650), + [sym_enumeration_representation_clause] = STATE(28), + [sym_exception_declaration] = STATE(28), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(28), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(28), + [sym_generic_package_declaration] = STATE(28), + [sym_generic_instantiation] = STATE(28), + [sym_null_procedure_declaration] = STATE(28), + [sym_number_declaration] = STATE(28), + [sym_object_declaration] = STATE(28), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(28), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(28), + [sym__renaming_declaration] = STATE(28), + [sym_object_renaming_declaration] = STATE(28), + [sym_exception_renaming_declaration] = STATE(28), + [sym_package_renaming_declaration] = STATE(28), + [sym_subprogram_renaming_declaration] = STATE(28), + [sym_generic_renaming_declaration] = STATE(28), + [sym_gnatprep_declarative_if_statement] = STATE(28), + [sym_subprogram_declaration] = STATE(28), + [sym_expression_function_declaration] = STATE(28), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(28), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(408), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [30] = { + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(32), + [sym__basic_declarative_item] = STATE(32), + [sym__basic_declaration] = STATE(32), + [sym__package_declaration] = STATE(32), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(32), + [sym__proper_body] = STATE(32), + [sym_subprogram_body] = STATE(32), + [sym_package_body] = STATE(32), + [sym__type_declaration] = STATE(32), + [sym_full_type_declaration] = STATE(32), + [sym_private_type_declaration] = STATE(32), + [sym_private_extension_declaration] = STATE(32), + [sym_incomplete_type_declaration] = STATE(32), + [sym__aspect_clause] = STATE(32), + [sym_at_clause] = STATE(32), + [sym_attribute_definition_clause] = STATE(32), + [sym_body_stub] = STATE(32), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(32), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(32), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(32), + [sym_enumeration_representation_clause] = STATE(32), + [sym_exception_declaration] = STATE(32), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(32), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(32), + [sym_generic_package_declaration] = STATE(32), + [sym_generic_instantiation] = STATE(32), + [sym_null_procedure_declaration] = STATE(32), + [sym_number_declaration] = STATE(32), + [sym_object_declaration] = STATE(32), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(32), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(32), + [sym__renaming_declaration] = STATE(32), + [sym_object_renaming_declaration] = STATE(32), + [sym_exception_renaming_declaration] = STATE(32), + [sym_package_renaming_declaration] = STATE(32), + [sym_subprogram_renaming_declaration] = STATE(32), + [sym_generic_renaming_declaration] = STATE(32), + [sym_gnatprep_declarative_if_statement] = STATE(32), + [sym_subprogram_declaration] = STATE(32), + [sym_expression_function_declaration] = STATE(32), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(32), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(32), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(432), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [31] = { + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(5), + [sym__basic_declarative_item] = STATE(5), + [sym__basic_declaration] = STATE(5), + [sym__package_declaration] = STATE(5), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(5), + [sym__proper_body] = STATE(5), + [sym_subprogram_body] = STATE(5), + [sym_package_body] = STATE(5), + [sym__type_declaration] = STATE(5), + [sym_full_type_declaration] = STATE(5), + [sym_private_type_declaration] = STATE(5), + [sym_private_extension_declaration] = STATE(5), + [sym_incomplete_type_declaration] = STATE(5), + [sym__aspect_clause] = STATE(5), + [sym_at_clause] = STATE(5), + [sym_attribute_definition_clause] = STATE(5), + [sym_body_stub] = STATE(5), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(5), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(5), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(5), + [sym_enumeration_representation_clause] = STATE(5), + [sym_exception_declaration] = STATE(5), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(5), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(5), + [sym_generic_package_declaration] = STATE(5), + [sym_generic_instantiation] = STATE(5), + [sym_null_procedure_declaration] = STATE(5), + [sym_number_declaration] = STATE(5), + [sym_object_declaration] = STATE(5), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(5), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(5), + [sym__renaming_declaration] = STATE(5), + [sym_object_renaming_declaration] = STATE(5), + [sym_exception_renaming_declaration] = STATE(5), + [sym_package_renaming_declaration] = STATE(5), + [sym_subprogram_renaming_declaration] = STATE(5), + [sym_generic_renaming_declaration] = STATE(5), + [sym_gnatprep_declarative_if_statement] = STATE(5), + [sym_subprogram_declaration] = STATE(5), + [sym_expression_function_declaration] = STATE(5), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(5), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(5), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(434), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [32] = { + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(5), + [sym__basic_declarative_item] = STATE(5), + [sym__basic_declaration] = STATE(5), + [sym__package_declaration] = STATE(5), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(5), + [sym__proper_body] = STATE(5), + [sym_subprogram_body] = STATE(5), + [sym_package_body] = STATE(5), + [sym__type_declaration] = STATE(5), + [sym_full_type_declaration] = STATE(5), + [sym_private_type_declaration] = STATE(5), + [sym_private_extension_declaration] = STATE(5), + [sym_incomplete_type_declaration] = STATE(5), + [sym__aspect_clause] = STATE(5), + [sym_at_clause] = STATE(5), + [sym_attribute_definition_clause] = STATE(5), + [sym_body_stub] = STATE(5), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(5), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(5), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(5), + [sym_enumeration_representation_clause] = STATE(5), + [sym_exception_declaration] = STATE(5), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(5), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(5), + [sym_generic_package_declaration] = STATE(5), + [sym_generic_instantiation] = STATE(5), + [sym_null_procedure_declaration] = STATE(5), + [sym_number_declaration] = STATE(5), + [sym_object_declaration] = STATE(5), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(5), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(5), + [sym__renaming_declaration] = STATE(5), + [sym_object_renaming_declaration] = STATE(5), + [sym_exception_renaming_declaration] = STATE(5), + [sym_package_renaming_declaration] = STATE(5), + [sym_subprogram_renaming_declaration] = STATE(5), + [sym_generic_renaming_declaration] = STATE(5), + [sym_gnatprep_declarative_if_statement] = STATE(5), + [sym_subprogram_declaration] = STATE(5), + [sym_expression_function_declaration] = STATE(5), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(5), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(5), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(436), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [33] = { + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(31), + [sym__basic_declarative_item] = STATE(31), + [sym__basic_declaration] = STATE(31), + [sym__package_declaration] = STATE(31), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(31), + [sym__proper_body] = STATE(31), + [sym_subprogram_body] = STATE(31), + [sym_package_body] = STATE(31), + [sym__type_declaration] = STATE(31), + [sym_full_type_declaration] = STATE(31), + [sym_private_type_declaration] = STATE(31), + [sym_private_extension_declaration] = STATE(31), + [sym_incomplete_type_declaration] = STATE(31), + [sym__aspect_clause] = STATE(31), + [sym_at_clause] = STATE(31), + [sym_attribute_definition_clause] = STATE(31), + [sym_body_stub] = STATE(31), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(31), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(31), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(31), + [sym_enumeration_representation_clause] = STATE(31), + [sym_exception_declaration] = STATE(31), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(31), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(31), + [sym_generic_package_declaration] = STATE(31), + [sym_generic_instantiation] = STATE(31), + [sym_null_procedure_declaration] = STATE(31), + [sym_number_declaration] = STATE(31), + [sym_object_declaration] = STATE(31), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(31), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(31), + [sym__renaming_declaration] = STATE(31), + [sym_object_renaming_declaration] = STATE(31), + [sym_exception_renaming_declaration] = STATE(31), + [sym_package_renaming_declaration] = STATE(31), + [sym_subprogram_renaming_declaration] = STATE(31), + [sym_generic_renaming_declaration] = STATE(31), + [sym_gnatprep_declarative_if_statement] = STATE(31), + [sym_subprogram_declaration] = STATE(31), + [sym_expression_function_declaration] = STATE(31), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(31), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(31), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(334), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, [34] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1190), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), - [sym_gnatprep_identifier] = ACTIONS(9), + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(5), + [sym__basic_declarative_item] = STATE(5), + [sym__basic_declaration] = STATE(5), + [sym__package_declaration] = STATE(5), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(5), + [sym__proper_body] = STATE(5), + [sym_subprogram_body] = STATE(5), + [sym_package_body] = STATE(5), + [sym__type_declaration] = STATE(5), + [sym_full_type_declaration] = STATE(5), + [sym_private_type_declaration] = STATE(5), + [sym_private_extension_declaration] = STATE(5), + [sym_incomplete_type_declaration] = STATE(5), + [sym__aspect_clause] = STATE(5), + [sym_at_clause] = STATE(5), + [sym_attribute_definition_clause] = STATE(5), + [sym_body_stub] = STATE(5), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(5), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(5), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(5), + [sym_enumeration_representation_clause] = STATE(5), + [sym_exception_declaration] = STATE(5), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(5), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(5), + [sym_generic_package_declaration] = STATE(5), + [sym_generic_instantiation] = STATE(5), + [sym_null_procedure_declaration] = STATE(5), + [sym_number_declaration] = STATE(5), + [sym_object_declaration] = STATE(5), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(5), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(5), + [sym__renaming_declaration] = STATE(5), + [sym_object_renaming_declaration] = STATE(5), + [sym_exception_renaming_declaration] = STATE(5), + [sym_package_renaming_declaration] = STATE(5), + [sym_subprogram_renaming_declaration] = STATE(5), + [sym_generic_renaming_declaration] = STATE(5), + [sym_gnatprep_declarative_if_statement] = STATE(5), + [sym_subprogram_declaration] = STATE(5), + [sym_expression_function_declaration] = STATE(5), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(5), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(5), + [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(9), - [sym_character_literal] = ACTIONS(9), - [sym_target_name] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), - [aux_sym_package_specification_token3] = ACTIONS(420), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_expression_token3] = ACTIONS(420), - [aux_sym_expression_token4] = ACTIONS(420), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_goto_statement_token1] = ACTIONS(75), - [aux_sym_delay_until_statement_token1] = ACTIONS(77), - [aux_sym_loop_statement_token1] = ACTIONS(79), - [aux_sym_iteration_scheme_token1] = ACTIONS(81), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(438), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [35] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_handled_sequence_of_statements] = STATE(1926), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1379), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), - [sym_gnatprep_identifier] = ACTIONS(9), + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(5), + [sym__basic_declarative_item] = STATE(5), + [sym__basic_declaration] = STATE(5), + [sym__package_declaration] = STATE(5), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(5), + [sym__proper_body] = STATE(5), + [sym_subprogram_body] = STATE(5), + [sym_package_body] = STATE(5), + [sym__type_declaration] = STATE(5), + [sym_full_type_declaration] = STATE(5), + [sym_private_type_declaration] = STATE(5), + [sym_private_extension_declaration] = STATE(5), + [sym_incomplete_type_declaration] = STATE(5), + [sym__aspect_clause] = STATE(5), + [sym_at_clause] = STATE(5), + [sym_attribute_definition_clause] = STATE(5), + [sym_body_stub] = STATE(5), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(5), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(5), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(5), + [sym_enumeration_representation_clause] = STATE(5), + [sym_exception_declaration] = STATE(5), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(5), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(5), + [sym_generic_package_declaration] = STATE(5), + [sym_generic_instantiation] = STATE(5), + [sym_null_procedure_declaration] = STATE(5), + [sym_number_declaration] = STATE(5), + [sym_object_declaration] = STATE(5), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(5), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(5), + [sym__renaming_declaration] = STATE(5), + [sym_object_renaming_declaration] = STATE(5), + [sym_exception_renaming_declaration] = STATE(5), + [sym_package_renaming_declaration] = STATE(5), + [sym_subprogram_renaming_declaration] = STATE(5), + [sym_generic_renaming_declaration] = STATE(5), + [sym_gnatprep_declarative_if_statement] = STATE(5), + [sym_subprogram_declaration] = STATE(5), + [sym_expression_function_declaration] = STATE(5), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(5), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(5), + [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(9), - [sym_character_literal] = ACTIONS(9), - [sym_target_name] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_goto_statement_token1] = ACTIONS(75), - [aux_sym_delay_until_statement_token1] = ACTIONS(77), - [aux_sym_loop_statement_token1] = ACTIONS(79), - [aux_sym_iteration_scheme_token1] = ACTIONS(81), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(440), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [36] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_handled_sequence_of_statements] = STATE(1678), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1379), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), - [sym_gnatprep_identifier] = ACTIONS(9), + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(34), + [sym__basic_declarative_item] = STATE(34), + [sym__basic_declaration] = STATE(34), + [sym__package_declaration] = STATE(34), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(34), + [sym__proper_body] = STATE(34), + [sym_subprogram_body] = STATE(34), + [sym_package_body] = STATE(34), + [sym__type_declaration] = STATE(34), + [sym_full_type_declaration] = STATE(34), + [sym_private_type_declaration] = STATE(34), + [sym_private_extension_declaration] = STATE(34), + [sym_incomplete_type_declaration] = STATE(34), + [sym__aspect_clause] = STATE(34), + [sym_at_clause] = STATE(34), + [sym_attribute_definition_clause] = STATE(34), + [sym_body_stub] = STATE(34), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(34), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(34), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(34), + [sym_enumeration_representation_clause] = STATE(34), + [sym_exception_declaration] = STATE(34), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(34), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(34), + [sym_generic_package_declaration] = STATE(34), + [sym_generic_instantiation] = STATE(34), + [sym_null_procedure_declaration] = STATE(34), + [sym_number_declaration] = STATE(34), + [sym_object_declaration] = STATE(34), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(34), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(34), + [sym__renaming_declaration] = STATE(34), + [sym_object_renaming_declaration] = STATE(34), + [sym_exception_renaming_declaration] = STATE(34), + [sym_package_renaming_declaration] = STATE(34), + [sym_subprogram_renaming_declaration] = STATE(34), + [sym_generic_renaming_declaration] = STATE(34), + [sym_gnatprep_declarative_if_statement] = STATE(34), + [sym_subprogram_declaration] = STATE(34), + [sym_expression_function_declaration] = STATE(34), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(34), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(34), + [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(9), - [sym_character_literal] = ACTIONS(9), - [sym_target_name] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_goto_statement_token1] = ACTIONS(75), - [aux_sym_delay_until_statement_token1] = ACTIONS(77), - [aux_sym_loop_statement_token1] = ACTIONS(79), - [aux_sym_iteration_scheme_token1] = ACTIONS(81), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(442), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [37] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_handled_sequence_of_statements] = STATE(1694), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1379), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), - [sym_gnatprep_identifier] = ACTIONS(9), + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(35), + [sym__basic_declarative_item] = STATE(35), + [sym__basic_declaration] = STATE(35), + [sym__package_declaration] = STATE(35), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(35), + [sym__proper_body] = STATE(35), + [sym_subprogram_body] = STATE(35), + [sym_package_body] = STATE(35), + [sym__type_declaration] = STATE(35), + [sym_full_type_declaration] = STATE(35), + [sym_private_type_declaration] = STATE(35), + [sym_private_extension_declaration] = STATE(35), + [sym_incomplete_type_declaration] = STATE(35), + [sym__aspect_clause] = STATE(35), + [sym_at_clause] = STATE(35), + [sym_attribute_definition_clause] = STATE(35), + [sym_body_stub] = STATE(35), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(35), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(35), + [sym_protected_body_stub] = STATE(423), + [sym__declarative_item_pragma] = STATE(35), + [sym_enumeration_representation_clause] = STATE(35), + [sym_exception_declaration] = STATE(35), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(35), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(35), + [sym_generic_package_declaration] = STATE(35), + [sym_generic_instantiation] = STATE(35), + [sym_null_procedure_declaration] = STATE(35), + [sym_number_declaration] = STATE(35), + [sym_object_declaration] = STATE(35), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_pragma_g] = STATE(35), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(35), + [sym__renaming_declaration] = STATE(35), + [sym_object_renaming_declaration] = STATE(35), + [sym_exception_renaming_declaration] = STATE(35), + [sym_package_renaming_declaration] = STATE(35), + [sym_subprogram_renaming_declaration] = STATE(35), + [sym_generic_renaming_declaration] = STATE(35), + [sym_gnatprep_declarative_if_statement] = STATE(35), + [sym_subprogram_declaration] = STATE(35), + [sym_expression_function_declaration] = STATE(35), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(35), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(35), + [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(9), - [sym_character_literal] = ACTIONS(9), - [sym_target_name] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_goto_statement_token1] = ACTIONS(75), - [aux_sym_delay_until_statement_token1] = ACTIONS(77), - [aux_sym_loop_statement_token1] = ACTIONS(79), - [aux_sym_iteration_scheme_token1] = ACTIONS(81), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(434), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [38] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_handled_sequence_of_statements] = STATE(1639), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1379), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(554), + [sym_null_statement] = STATE(195), + [sym_pragma_g] = STATE(195), + [sym__simple_statement] = STATE(195), + [sym__compound_statement] = STATE(195), + [sym__select_statement] = STATE(195), + [sym_asynchronous_select] = STATE(195), + [sym_conditional_entry_call] = STATE(195), + [sym_timed_entry_call] = STATE(195), + [sym_selective_accept] = STATE(195), + [sym_abort_statement] = STATE(195), + [sym_requeue_statement] = STATE(195), + [sym_accept_statement] = STATE(195), + [sym_case_statement] = STATE(195), + [sym_block_statement] = STATE(195), + [sym_if_statement] = STATE(195), + [sym_gnatprep_if_statement] = STATE(195), + [sym_exit_statement] = STATE(195), + [sym_goto_statement] = STATE(195), + [sym__delay_statement] = STATE(195), + [sym_delay_until_statement] = STATE(195), + [sym_delay_relative_statement] = STATE(195), + [sym_simple_return_statement] = STATE(195), + [sym_extended_return_statement] = STATE(195), + [sym_procedure_call_statement] = STATE(195), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(195), + [sym_loop_statement] = STATE(195), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(195), + [aux_sym__sequence_of_statements_repeat2] = STATE(554), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), + [aux_sym_iterator_filter_token1] = ACTIONS(444), + [aux_sym_package_specification_token3] = ACTIONS(444), [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_expression_token2] = ACTIONS(444), + [aux_sym_expression_token3] = ACTIONS(444), + [aux_sym_expression_token4] = ACTIONS(444), [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(444), [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(444), [aux_sym_result_profile_token1] = ACTIONS(61), [aux_sym_asynchronous_select_token1] = ACTIONS(63), [aux_sym_asynchronous_select_token2] = ACTIONS(65), @@ -13085,130 +13186,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [39] = { - [sym_unary_adding_operator] = STATE(508), - [sym__name] = STATE(500), - [sym_selected_component] = STATE(451), - [sym_slice] = STATE(451), - [sym__attribute_reference] = STATE(451), - [sym__reduction_attribute_reference] = STATE(451), - [sym_value_sequence] = STATE(2005), - [sym_iterated_element_association] = STATE(1197), - [sym_qualified_expression] = STATE(451), - [sym__subtype_indication] = STATE(1518), - [sym_range_g] = STATE(1522), - [sym_expression] = STATE(967), - [sym__relation] = STATE(573), - [sym_relation_membership] = STATE(573), - [sym_raise_expression] = STATE(573), - [sym__simple_expression] = STATE(620), - [sym_term] = STATE(528), - [sym__factor] = STATE(504), - [sym_factor_power] = STATE(504), - [sym_factor_abs] = STATE(504), - [sym_factor_not] = STATE(504), - [sym__parenthesized_expression] = STATE(506), - [sym__primary] = STATE(506), - [sym_primary_null] = STATE(506), - [sym_allocator] = STATE(506), - [sym__conditional_expression] = STATE(1906), - [sym_quantified_expression] = STATE(1906), - [sym_declare_expression] = STATE(1906), - [sym_case_expression] = STATE(1906), - [sym_component_choice_list] = STATE(1934), - [sym__aggregate] = STATE(506), - [sym__delta_aggregate] = STATE(506), - [sym_extension_aggregate] = STATE(506), - [sym_record_delta_aggregate] = STATE(506), - [sym_array_delta_aggregate] = STATE(506), - [sym_record_aggregate] = STATE(506), - [sym_record_component_association_list] = STATE(1933), - [sym__named_record_component_association] = STATE(1180), - [sym_null_exclusion] = STATE(771), - [sym__array_aggregate] = STATE(506), - [sym_positional_array_aggregate] = STATE(506), - [sym_null_array_aggregate] = STATE(506), - [sym_named_array_aggregate] = STATE(506), - [sym__array_component_association_list] = STATE(1931), - [sym_array_component_association] = STATE(1156), - [sym_discrete_choice_list] = STATE(1930), - [sym_discrete_choice] = STATE(1275), - [sym_if_expression] = STATE(1906), - [sym_function_call] = STATE(500), - [sym_identifier] = ACTIONS(352), - [sym_gnatprep_identifier] = ACTIONS(354), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(356), - [sym_character_literal] = ACTIONS(354), - [sym_numeric_literal] = ACTIONS(358), - [anon_sym_PLUS] = ACTIONS(360), - [anon_sym_DASH] = ACTIONS(362), - [sym_target_name] = ACTIONS(354), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_LBRACK] = ACTIONS(366), - [aux_sym_iterated_element_association_token1] = ACTIONS(370), - [aux_sym_relation_membership_token1] = ACTIONS(372), - [aux_sym_raise_expression_token1] = ACTIONS(374), - [aux_sym_factor_abs_token1] = ACTIONS(376), - [aux_sym_primary_null_token1] = ACTIONS(378), - [aux_sym_allocator_token1] = ACTIONS(380), - [aux_sym_declare_expression_token1] = ACTIONS(382), - [aux_sym_case_expression_token1] = ACTIONS(384), - [aux_sym_component_choice_list_token1] = ACTIONS(386), - [aux_sym_if_expression_token1] = ACTIONS(392), - }, - [40] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_handled_sequence_of_statements] = STATE(1722), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1379), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1116), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), + [aux_sym_package_specification_token3] = ACTIONS(446), [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_expression_token2] = ACTIONS(448), + [aux_sym_expression_token3] = ACTIONS(446), + [aux_sym_expression_token4] = ACTIONS(446), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [40] = { + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1358), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), + [aux_sym_package_specification_token3] = ACTIONS(450), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_expression_token3] = ACTIONS(450), + [aux_sym_expression_token4] = ACTIONS(450), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), [aux_sym_declare_expression_token1] = ACTIONS(43), @@ -13229,57 +13335,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [41] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_handled_sequence_of_statements] = STATE(1940), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1379), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(43), + [sym_pragma_g] = STATE(43), + [sym__simple_statement] = STATE(43), + [sym__statement] = STATE(43), + [sym__compound_statement] = STATE(43), + [sym__select_statement] = STATE(43), + [sym_asynchronous_select] = STATE(43), + [sym_conditional_entry_call] = STATE(43), + [sym_timed_entry_call] = STATE(43), + [sym_selective_accept] = STATE(43), + [sym_abort_statement] = STATE(43), + [sym_requeue_statement] = STATE(43), + [sym_accept_statement] = STATE(43), + [sym_case_statement] = STATE(43), + [sym_block_statement] = STATE(43), + [sym_if_statement] = STATE(43), + [sym_gnatprep_if_statement] = STATE(43), + [sym_exit_statement] = STATE(43), + [sym_goto_statement] = STATE(43), + [sym__delay_statement] = STATE(43), + [sym_delay_until_statement] = STATE(43), + [sym_delay_relative_statement] = STATE(43), + [sym_simple_return_statement] = STATE(43), + [sym_extended_return_statement] = STATE(43), + [sym_procedure_call_statement] = STATE(43), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(43), + [sym_loop_statement] = STATE(43), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(43), + [aux_sym__sequence_of_statements_repeat1] = STATE(43), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [aux_sym_gnatprep_if_statement_repeat1] = STATE(1162), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13294,6 +13399,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_requeue_statement_token1] = ACTIONS(67), [aux_sym_accept_statement_token1] = ACTIONS(69), [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(452), + [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(454), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(456), [aux_sym_exit_statement_token1] = ACTIONS(73), [aux_sym_goto_statement_token1] = ACTIONS(75), [aux_sym_delay_until_statement_token1] = ACTIONS(77), @@ -13301,58 +13409,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [42] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_handled_sequence_of_statements] = STATE(1800), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1379), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1353), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_expression_token2] = ACTIONS(448), + [aux_sym_expression_token3] = ACTIONS(458), + [aux_sym_expression_token4] = ACTIONS(458), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), [aux_sym_declare_expression_token1] = ACTIONS(43), @@ -13373,19 +13483,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [43] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_handled_sequence_of_statements] = STATE(1609), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), [sym_null_statement] = STATE(4), [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1379), [sym__simple_statement] = STATE(4), [sym__statement] = STATE(4), [sym__compound_statement] = STATE(4), @@ -13409,21 +13517,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(4), [sym_extended_return_statement] = STATE(4), [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), + [sym_function_call] = STATE(985), [sym_raise_statement] = STATE(4), [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), + [sym_iteration_scheme] = STATE(2043), [sym_assignment_statement] = STATE(4), [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [aux_sym_gnatprep_if_statement_repeat1] = STATE(1169), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13438,6 +13547,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_requeue_statement_token1] = ACTIONS(67), [aux_sym_accept_statement_token1] = ACTIONS(69), [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(452), + [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(460), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(462), [aux_sym_exit_statement_token1] = ACTIONS(73), [aux_sym_goto_statement_token1] = ACTIONS(75), [aux_sym_delay_until_statement_token1] = ACTIONS(77), @@ -13445,58 +13557,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [44] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_handled_sequence_of_statements] = STATE(1702), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1379), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1310), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), + [aux_sym_package_specification_token3] = ACTIONS(446), [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_expression_token3] = ACTIONS(446), + [aux_sym_expression_token4] = ACTIONS(446), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), [aux_sym_declare_expression_token1] = ACTIONS(43), @@ -13517,19 +13631,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [45] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_handled_sequence_of_statements] = STATE(1753), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), [sym_null_statement] = STATE(4), [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1379), [sym__simple_statement] = STATE(4), [sym__statement] = STATE(4), [sym__compound_statement] = STATE(4), @@ -13553,21 +13665,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(4), [sym_extended_return_statement] = STATE(4), [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), + [sym_function_call] = STATE(985), [sym_raise_statement] = STATE(4), [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), + [sym_iteration_scheme] = STATE(2043), [sym_assignment_statement] = STATE(4), [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13582,6 +13694,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_requeue_statement_token1] = ACTIONS(67), [aux_sym_accept_statement_token1] = ACTIONS(69), [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(464), + [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(464), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(464), [aux_sym_exit_statement_token1] = ACTIONS(73), [aux_sym_goto_statement_token1] = ACTIONS(75), [aux_sym_delay_until_statement_token1] = ACTIONS(77), @@ -13589,57 +13704,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [46] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_handled_sequence_of_statements] = STATE(1574), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1379), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(45), + [sym_pragma_g] = STATE(45), + [sym__simple_statement] = STATE(45), + [sym__statement] = STATE(45), + [sym__compound_statement] = STATE(45), + [sym__select_statement] = STATE(45), + [sym_asynchronous_select] = STATE(45), + [sym_conditional_entry_call] = STATE(45), + [sym_timed_entry_call] = STATE(45), + [sym_selective_accept] = STATE(45), + [sym_abort_statement] = STATE(45), + [sym_requeue_statement] = STATE(45), + [sym_accept_statement] = STATE(45), + [sym_case_statement] = STATE(45), + [sym_block_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_gnatprep_if_statement] = STATE(45), + [sym_exit_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym__delay_statement] = STATE(45), + [sym_delay_until_statement] = STATE(45), + [sym_delay_relative_statement] = STATE(45), + [sym_simple_return_statement] = STATE(45), + [sym_extended_return_statement] = STATE(45), + [sym_procedure_call_statement] = STATE(45), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(45), + [sym_loop_statement] = STATE(45), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(45), + [aux_sym__sequence_of_statements_repeat1] = STATE(45), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13654,6 +13767,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_requeue_statement_token1] = ACTIONS(67), [aux_sym_accept_statement_token1] = ACTIONS(69), [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(466), + [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(466), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(466), [aux_sym_exit_statement_token1] = ACTIONS(73), [aux_sym_goto_statement_token1] = ACTIONS(75), [aux_sym_delay_until_statement_token1] = ACTIONS(77), @@ -13661,57 +13777,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [47] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_handled_sequence_of_statements] = STATE(1809), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1379), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_handled_sequence_of_statements] = STATE(1950), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1405), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13733,57 +13849,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [48] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_handled_sequence_of_statements] = STATE(1783), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1379), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_handled_sequence_of_statements] = STATE(2030), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1405), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13805,57 +13921,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [49] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_handled_sequence_of_statements] = STATE(1990), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1379), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_handled_sequence_of_statements] = STATE(1762), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1405), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13877,57 +13993,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [50] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_handled_sequence_of_statements] = STATE(1992), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1379), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_handled_sequence_of_statements] = STATE(1970), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1405), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13949,57 +14065,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [51] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_handled_sequence_of_statements] = STATE(1564), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1379), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_handled_sequence_of_statements] = STATE(2038), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1405), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14021,57 +14137,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [52] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_handled_sequence_of_statements] = STATE(1648), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1379), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_handled_sequence_of_statements] = STATE(1736), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1405), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14093,57 +14209,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [53] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_handled_sequence_of_statements] = STATE(1827), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1379), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_handled_sequence_of_statements] = STATE(1852), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1405), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14165,57 +14281,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [54] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_handled_sequence_of_statements] = STATE(1667), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1379), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_handled_sequence_of_statements] = STATE(1796), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1405), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14237,57 +14353,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [55] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_handled_sequence_of_statements] = STATE(1970), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1379), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_handled_sequence_of_statements] = STATE(1819), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1405), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14309,57 +14425,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [56] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_handled_sequence_of_statements] = STATE(1867), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1379), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_handled_sequence_of_statements] = STATE(1633), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1405), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14381,129 +14497,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [57] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_handled_sequence_of_statements] = STATE(2004), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1379), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), - [sym_gnatprep_identifier] = ACTIONS(9), + [sym_unary_adding_operator] = STATE(537), + [sym__name] = STATE(522), + [sym_selected_component] = STATE(478), + [sym_slice] = STATE(478), + [sym__attribute_reference] = STATE(478), + [sym__reduction_attribute_reference] = STATE(478), + [sym_value_sequence] = STATE(2045), + [sym_iterated_element_association] = STATE(1371), + [sym_qualified_expression] = STATE(478), + [sym__subtype_indication] = STATE(1432), + [sym_range_g] = STATE(1433), + [sym_expression] = STATE(1002), + [sym__relation] = STATE(607), + [sym_relation_membership] = STATE(607), + [sym_raise_expression] = STATE(607), + [sym__simple_expression] = STATE(661), + [sym_term] = STATE(546), + [sym__factor] = STATE(524), + [sym_factor_power] = STATE(524), + [sym_factor_abs] = STATE(524), + [sym_factor_not] = STATE(524), + [sym__parenthesized_expression] = STATE(528), + [sym__primary] = STATE(528), + [sym_primary_null] = STATE(528), + [sym_allocator] = STATE(528), + [sym__conditional_expression] = STATE(1943), + [sym_quantified_expression] = STATE(1943), + [sym_declare_expression] = STATE(1943), + [sym_case_expression] = STATE(1943), + [sym_component_choice_list] = STATE(1942), + [sym__aggregate] = STATE(528), + [sym__delta_aggregate] = STATE(528), + [sym_extension_aggregate] = STATE(528), + [sym_record_delta_aggregate] = STATE(528), + [sym_array_delta_aggregate] = STATE(528), + [sym_record_aggregate] = STATE(528), + [sym_record_component_association_list] = STATE(1941), + [sym__named_record_component_association] = STATE(1338), + [sym_null_exclusion] = STATE(835), + [sym__array_aggregate] = STATE(528), + [sym_positional_array_aggregate] = STATE(528), + [sym_null_array_aggregate] = STATE(528), + [sym_named_array_aggregate] = STATE(528), + [sym__array_component_association_list] = STATE(1940), + [sym_array_component_association] = STATE(1103), + [sym_discrete_choice_list] = STATE(1939), + [sym_discrete_choice] = STATE(1393), + [sym_if_expression] = STATE(1943), + [sym_function_call] = STATE(522), + [sym_identifier] = ACTIONS(364), + [sym_gnatprep_identifier] = ACTIONS(366), [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(9), - [sym_character_literal] = ACTIONS(9), - [sym_target_name] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [anon_sym_LT_LT] = ACTIONS(55), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_goto_statement_token1] = ACTIONS(75), - [aux_sym_delay_until_statement_token1] = ACTIONS(77), - [aux_sym_loop_statement_token1] = ACTIONS(79), - [aux_sym_iteration_scheme_token1] = ACTIONS(81), + [sym_string_literal] = ACTIONS(368), + [sym_character_literal] = ACTIONS(366), + [sym_numeric_literal] = ACTIONS(370), + [anon_sym_PLUS] = ACTIONS(372), + [anon_sym_DASH] = ACTIONS(374), + [sym_target_name] = ACTIONS(366), + [anon_sym_LPAREN] = ACTIONS(376), + [anon_sym_LBRACK] = ACTIONS(378), + [aux_sym_iterated_element_association_token1] = ACTIONS(382), + [aux_sym_relation_membership_token1] = ACTIONS(384), + [aux_sym_raise_expression_token1] = ACTIONS(386), + [aux_sym_factor_abs_token1] = ACTIONS(388), + [aux_sym_primary_null_token1] = ACTIONS(390), + [aux_sym_allocator_token1] = ACTIONS(392), + [aux_sym_declare_expression_token1] = ACTIONS(394), + [aux_sym_case_expression_token1] = ACTIONS(396), + [aux_sym_component_choice_list_token1] = ACTIONS(398), + [aux_sym_if_expression_token1] = ACTIONS(404), }, [58] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_handled_sequence_of_statements] = STATE(1558), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1379), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_handled_sequence_of_statements] = STATE(1698), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1405), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14525,56 +14641,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [59] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1600), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_handled_sequence_of_statements] = STATE(1586), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1405), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14596,56 +14713,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [60] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1595), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_handled_sequence_of_statements] = STATE(2016), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1405), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14667,56 +14785,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [61] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1726), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_handled_sequence_of_statements] = STATE(1574), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1405), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14738,56 +14857,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [62] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1362), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_handled_sequence_of_statements] = STATE(1587), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1405), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14809,56 +14929,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [63] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1061), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_handled_sequence_of_statements] = STATE(2050), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1405), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14880,56 +15001,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [64] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1901), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_handled_sequence_of_statements] = STATE(1635), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1405), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14951,56 +15073,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [65] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1968), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_handled_sequence_of_statements] = STATE(1606), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1405), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15022,56 +15145,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [66] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1611), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_handled_sequence_of_statements] = STATE(1880), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1405), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15093,56 +15217,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [67] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1532), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_handled_sequence_of_statements] = STATE(1679), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1405), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15164,56 +15289,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [68] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1830), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_handled_sequence_of_statements] = STATE(1840), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1405), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15235,56 +15361,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [69] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1501), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_handled_sequence_of_statements] = STATE(1985), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1405), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15306,56 +15433,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [70] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1478), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_handled_sequence_of_statements] = STATE(1789), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1405), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15377,56 +15505,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [71] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1838), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1982), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15448,18 +15576,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [72] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), [sym_null_statement] = STATE(4), [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1618), [sym__simple_statement] = STATE(4), [sym__statement] = STATE(4), [sym__compound_statement] = STATE(4), @@ -15483,21 +15610,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(4), [sym_extended_return_statement] = STATE(4), [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), + [sym_function_call] = STATE(985), [sym_raise_statement] = STATE(4), [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), + [sym_iteration_scheme] = STATE(2043), [sym_assignment_statement] = STATE(4), [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15512,6 +15639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_requeue_statement_token1] = ACTIONS(67), [aux_sym_accept_statement_token1] = ACTIONS(69), [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(468), [aux_sym_exit_statement_token1] = ACTIONS(73), [aux_sym_goto_statement_token1] = ACTIONS(75), [aux_sym_delay_until_statement_token1] = ACTIONS(77), @@ -15519,56 +15647,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [73] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1087), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1997), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15590,18 +15718,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [74] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), [sym_null_statement] = STATE(4), [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1265), [sym__simple_statement] = STATE(4), [sym__statement] = STATE(4), [sym__compound_statement] = STATE(4), @@ -15625,21 +15752,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(4), [sym_extended_return_statement] = STATE(4), [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), + [sym_function_call] = STATE(985), [sym_raise_statement] = STATE(4), [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), + [sym_iteration_scheme] = STATE(2043), [sym_assignment_statement] = STATE(4), [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15654,6 +15781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_requeue_statement_token1] = ACTIONS(67), [aux_sym_accept_statement_token1] = ACTIONS(69), [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(470), [aux_sym_exit_statement_token1] = ACTIONS(73), [aux_sym_goto_statement_token1] = ACTIONS(75), [aux_sym_delay_until_statement_token1] = ACTIONS(77), @@ -15661,18 +15789,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [75] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), [sym_null_statement] = STATE(4), [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1589), [sym__simple_statement] = STATE(4), [sym__statement] = STATE(4), [sym__compound_statement] = STATE(4), @@ -15696,21 +15823,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(4), [sym_extended_return_statement] = STATE(4), [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), + [sym_function_call] = STATE(985), [sym_raise_statement] = STATE(4), [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), + [sym_iteration_scheme] = STATE(2043), [sym_assignment_statement] = STATE(4), [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15725,6 +15852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_requeue_statement_token1] = ACTIONS(67), [aux_sym_accept_statement_token1] = ACTIONS(69), [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(472), [aux_sym_exit_statement_token1] = ACTIONS(73), [aux_sym_goto_statement_token1] = ACTIONS(75), [aux_sym_delay_until_statement_token1] = ACTIONS(77), @@ -15732,56 +15860,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [76] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1724), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1084), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15803,18 +15931,514 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [77] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(80), + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1803), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [78] = { + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1800), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [79] = { + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1614), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [80] = { + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1612), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [81] = { + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1903), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [82] = { + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(75), + [sym_pragma_g] = STATE(75), + [sym__simple_statement] = STATE(75), + [sym__statement] = STATE(75), + [sym__compound_statement] = STATE(75), + [sym__select_statement] = STATE(75), + [sym_asynchronous_select] = STATE(75), + [sym_conditional_entry_call] = STATE(75), + [sym_timed_entry_call] = STATE(75), + [sym_selective_accept] = STATE(75), + [sym_abort_statement] = STATE(75), + [sym_requeue_statement] = STATE(75), + [sym_accept_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_block_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_gnatprep_if_statement] = STATE(75), + [sym_exit_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__delay_statement] = STATE(75), + [sym_delay_until_statement] = STATE(75), + [sym_delay_relative_statement] = STATE(75), + [sym_simple_return_statement] = STATE(75), + [sym_extended_return_statement] = STATE(75), + [sym_procedure_call_statement] = STATE(75), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(75), + [sym_loop_statement] = STATE(75), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(75), + [aux_sym__sequence_of_statements_repeat1] = STATE(75), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(474), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [83] = { + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(72), + [sym_pragma_g] = STATE(72), + [sym__simple_statement] = STATE(72), + [sym__statement] = STATE(72), + [sym__compound_statement] = STATE(72), + [sym__select_statement] = STATE(72), + [sym_asynchronous_select] = STATE(72), + [sym_conditional_entry_call] = STATE(72), + [sym_timed_entry_call] = STATE(72), + [sym_selective_accept] = STATE(72), + [sym_abort_statement] = STATE(72), + [sym_requeue_statement] = STATE(72), + [sym_accept_statement] = STATE(72), + [sym_case_statement] = STATE(72), + [sym_block_statement] = STATE(72), + [sym_if_statement] = STATE(72), + [sym_gnatprep_if_statement] = STATE(72), + [sym_exit_statement] = STATE(72), + [sym_goto_statement] = STATE(72), + [sym__delay_statement] = STATE(72), + [sym_delay_until_statement] = STATE(72), + [sym_delay_relative_statement] = STATE(72), + [sym_simple_return_statement] = STATE(72), + [sym_extended_return_statement] = STATE(72), + [sym_procedure_call_statement] = STATE(72), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(72), + [sym_loop_statement] = STATE(72), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(72), + [aux_sym__sequence_of_statements_repeat1] = STATE(72), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(476), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [84] = { + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), [sym_null_statement] = STATE(4), [sym_pragma_g] = STATE(4), - [sym__sequence_of_statements] = STATE(1815), [sym__simple_statement] = STATE(4), [sym__statement] = STATE(4), [sym__compound_statement] = STATE(4), @@ -15838,21 +16462,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(4), [sym_extended_return_statement] = STATE(4), [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(973), + [sym_function_call] = STATE(985), [sym_raise_statement] = STATE(4), [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2002), + [sym_iteration_scheme] = STATE(2043), [sym_assignment_statement] = STATE(4), [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(206), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(476), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [85] = { + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(84), + [sym_pragma_g] = STATE(84), + [sym__simple_statement] = STATE(84), + [sym__statement] = STATE(84), + [sym__compound_statement] = STATE(84), + [sym__select_statement] = STATE(84), + [sym_asynchronous_select] = STATE(84), + [sym_conditional_entry_call] = STATE(84), + [sym_timed_entry_call] = STATE(84), + [sym_selective_accept] = STATE(84), + [sym_abort_statement] = STATE(84), + [sym_requeue_statement] = STATE(84), + [sym_accept_statement] = STATE(84), + [sym_case_statement] = STATE(84), + [sym_block_statement] = STATE(84), + [sym_if_statement] = STATE(84), + [sym_gnatprep_if_statement] = STATE(84), + [sym_exit_statement] = STATE(84), + [sym_goto_statement] = STATE(84), + [sym__delay_statement] = STATE(84), + [sym_delay_until_statement] = STATE(84), + [sym_delay_relative_statement] = STATE(84), + [sym_simple_return_statement] = STATE(84), + [sym_extended_return_statement] = STATE(84), + [sym_procedure_call_statement] = STATE(84), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(84), + [sym_loop_statement] = STATE(84), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(84), + [aux_sym__sequence_of_statements_repeat1] = STATE(84), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(462), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [86] = { + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(74), + [sym_pragma_g] = STATE(74), + [sym__simple_statement] = STATE(74), + [sym__statement] = STATE(74), + [sym__compound_statement] = STATE(74), + [sym__select_statement] = STATE(74), + [sym_asynchronous_select] = STATE(74), + [sym_conditional_entry_call] = STATE(74), + [sym_timed_entry_call] = STATE(74), + [sym_selective_accept] = STATE(74), + [sym_abort_statement] = STATE(74), + [sym_requeue_statement] = STATE(74), + [sym_accept_statement] = STATE(74), + [sym_case_statement] = STATE(74), + [sym_block_statement] = STATE(74), + [sym_if_statement] = STATE(74), + [sym_gnatprep_if_statement] = STATE(74), + [sym_exit_statement] = STATE(74), + [sym_goto_statement] = STATE(74), + [sym__delay_statement] = STATE(74), + [sym_delay_until_statement] = STATE(74), + [sym_delay_relative_statement] = STATE(74), + [sym_simple_return_statement] = STATE(74), + [sym_extended_return_statement] = STATE(74), + [sym_procedure_call_statement] = STATE(74), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(74), + [sym_loop_statement] = STATE(74), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(74), + [aux_sym__sequence_of_statements_repeat1] = STATE(74), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(478), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [87] = { + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1775), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15873,66 +16711,492 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_loop_statement_token1] = ACTIONS(79), [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, - [78] = { - [sym__defining_identifier_list] = STATE(2006), - [sym__declarative_item] = STATE(493), - [sym__basic_declarative_item] = STATE(493), - [sym__basic_declaration] = STATE(493), - [sym__package_declaration] = STATE(493), - [sym_package_specification] = STATE(2003), - [sym_use_clause] = STATE(493), - [sym__proper_body] = STATE(493), - [sym_subprogram_body] = STATE(493), - [sym_package_body] = STATE(493), - [sym__type_declaration] = STATE(493), - [sym_full_type_declaration] = STATE(493), - [sym_private_type_declaration] = STATE(493), - [sym_private_extension_declaration] = STATE(493), - [sym_incomplete_type_declaration] = STATE(493), - [sym__aspect_clause] = STATE(493), - [sym_at_clause] = STATE(493), - [sym_attribute_definition_clause] = STATE(493), - [sym_body_stub] = STATE(493), - [sym_subprogram_body_stub] = STATE(261), - [sym_package_body_stub] = STATE(261), - [sym_task_body] = STATE(493), - [sym_task_body_stub] = STATE(261), - [sym_protected_type_declaration] = STATE(262), - [sym_single_protected_declaration] = STATE(263), - [sym_protected_body] = STATE(493), - [sym_protected_body_stub] = STATE(261), - [sym_enumeration_representation_clause] = STATE(493), - [sym_exception_declaration] = STATE(493), - [sym_function_specification] = STATE(1097), - [sym__generic_declaration] = STATE(493), - [sym_generic_formal_part] = STATE(944), - [sym_generic_subprogram_declaration] = STATE(493), - [sym_generic_package_declaration] = STATE(493), - [sym_generic_instantiation] = STATE(493), - [sym_null_procedure_declaration] = STATE(493), - [sym_number_declaration] = STATE(493), - [sym_object_declaration] = STATE(493), - [sym_single_task_declaration] = STATE(263), - [sym_task_type_declaration] = STATE(262), - [sym_overriding_indicator] = STATE(1042), - [sym_procedure_specification] = STATE(1106), - [sym_record_representation_clause] = STATE(493), - [sym__renaming_declaration] = STATE(493), - [sym_object_renaming_declaration] = STATE(493), - [sym_exception_renaming_declaration] = STATE(493), - [sym_package_renaming_declaration] = STATE(493), - [sym_subprogram_renaming_declaration] = STATE(493), - [sym_generic_renaming_declaration] = STATE(493), - [sym_subprogram_declaration] = STATE(493), - [sym_expression_function_declaration] = STATE(493), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(493), - [sym_identifier] = ACTIONS(259), + [88] = { + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1452), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), + [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(261), + [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(424), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [89] = { + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1945), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [90] = { + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1500), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [91] = { + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1626), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [92] = { + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1222), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [93] = { + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(26), + [sym_pragma_g] = STATE(26), + [sym__sequence_of_statements] = STATE(1557), + [sym__simple_statement] = STATE(26), + [sym__statement] = STATE(26), + [sym__compound_statement] = STATE(26), + [sym__select_statement] = STATE(26), + [sym_asynchronous_select] = STATE(26), + [sym_conditional_entry_call] = STATE(26), + [sym_timed_entry_call] = STATE(26), + [sym_selective_accept] = STATE(26), + [sym_abort_statement] = STATE(26), + [sym_requeue_statement] = STATE(26), + [sym_accept_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_block_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_gnatprep_if_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__delay_statement] = STATE(26), + [sym_delay_until_statement] = STATE(26), + [sym_delay_relative_statement] = STATE(26), + [sym_simple_return_statement] = STATE(26), + [sym_extended_return_statement] = STATE(26), + [sym_procedure_call_statement] = STATE(26), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(26), + [aux_sym__sequence_of_statements_repeat1] = STATE(26), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(422), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [94] = { + [sym__defining_identifier_list] = STATE(2048), + [sym__declarative_item] = STATE(512), + [sym__basic_declarative_item] = STATE(512), + [sym__basic_declaration] = STATE(512), + [sym__package_declaration] = STATE(512), + [sym_package_specification] = STATE(2044), + [sym_use_clause] = STATE(512), + [sym__proper_body] = STATE(512), + [sym_subprogram_body] = STATE(512), + [sym_package_body] = STATE(512), + [sym__type_declaration] = STATE(512), + [sym_full_type_declaration] = STATE(512), + [sym_private_type_declaration] = STATE(512), + [sym_private_extension_declaration] = STATE(512), + [sym_incomplete_type_declaration] = STATE(512), + [sym__aspect_clause] = STATE(512), + [sym_at_clause] = STATE(512), + [sym_attribute_definition_clause] = STATE(512), + [sym_body_stub] = STATE(512), + [sym_subprogram_body_stub] = STATE(423), + [sym_package_body_stub] = STATE(423), + [sym_task_body] = STATE(512), + [sym_task_body_stub] = STATE(423), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(432), + [sym_protected_body] = STATE(512), + [sym_protected_body_stub] = STATE(423), + [sym_enumeration_representation_clause] = STATE(512), + [sym_exception_declaration] = STATE(512), + [sym_function_specification] = STATE(1187), + [sym__generic_declaration] = STATE(512), + [sym_generic_formal_part] = STATE(956), + [sym_generic_subprogram_declaration] = STATE(512), + [sym_generic_package_declaration] = STATE(512), + [sym_generic_instantiation] = STATE(512), + [sym_null_procedure_declaration] = STATE(512), + [sym_number_declaration] = STATE(512), + [sym_object_declaration] = STATE(512), + [sym_single_task_declaration] = STATE(432), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(1082), + [sym_procedure_specification] = STATE(1163), + [sym_record_representation_clause] = STATE(512), + [sym__renaming_declaration] = STATE(512), + [sym_object_renaming_declaration] = STATE(512), + [sym_exception_renaming_declaration] = STATE(512), + [sym_package_renaming_declaration] = STATE(512), + [sym_subprogram_renaming_declaration] = STATE(512), + [sym_generic_renaming_declaration] = STATE(512), + [sym_subprogram_declaration] = STATE(512), + [sym_expression_function_declaration] = STATE(512), + [sym__subprogram_specification] = STATE(1075), + [sym_subtype_declaration] = STATE(512), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_with_clause_token2] = ACTIONS(428), + [aux_sym_with_clause_token2] = ACTIONS(480), [aux_sym_use_clause_token2] = ACTIONS(25), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), @@ -15943,122 +17207,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, - [79] = { - [sym_unary_adding_operator] = STATE(508), - [sym__name] = STATE(500), - [sym_selected_component] = STATE(525), - [sym_slice] = STATE(525), - [sym__attribute_reference] = STATE(525), - [sym__reduction_attribute_reference] = STATE(525), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(525), - [sym__subtype_indication] = STATE(1414), - [sym_range_g] = STATE(1382), - [sym_expression] = STATE(1418), - [sym__relation] = STATE(573), - [sym_relation_membership] = STATE(573), - [sym_raise_expression] = STATE(573), - [sym__simple_expression] = STATE(620), - [sym_term] = STATE(528), - [sym__factor] = STATE(504), - [sym_factor_power] = STATE(504), - [sym_factor_abs] = STATE(504), - [sym_factor_not] = STATE(504), - [sym__parenthesized_expression] = STATE(506), - [sym__primary] = STATE(506), - [sym_primary_null] = STATE(506), - [sym_allocator] = STATE(506), - [sym_parameter_association] = STATE(1342), - [sym__conditional_expression] = STATE(1910), - [sym_quantified_expression] = STATE(1910), - [sym_declare_expression] = STATE(1910), - [sym_case_expression] = STATE(1910), - [sym_component_choice_list] = STATE(1909), - [sym__aggregate] = STATE(506), - [sym__delta_aggregate] = STATE(506), - [sym_extension_aggregate] = STATE(506), - [sym_record_delta_aggregate] = STATE(506), - [sym_array_delta_aggregate] = STATE(506), - [sym_record_aggregate] = STATE(506), - [sym_null_exclusion] = STATE(771), - [sym__discrete_range] = STATE(1335), - [sym__array_aggregate] = STATE(506), - [sym_positional_array_aggregate] = STATE(506), - [sym_null_array_aggregate] = STATE(506), - [sym_named_array_aggregate] = STATE(506), - [sym_if_expression] = STATE(1910), - [sym_function_call] = STATE(500), - [sym_identifier] = ACTIONS(430), - [sym_gnatprep_identifier] = ACTIONS(432), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(434), - [sym_character_literal] = ACTIONS(432), - [sym_numeric_literal] = ACTIONS(358), - [anon_sym_PLUS] = ACTIONS(360), - [anon_sym_DASH] = ACTIONS(362), - [sym_target_name] = ACTIONS(432), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_LBRACK] = ACTIONS(366), - [aux_sym_iterated_element_association_token1] = ACTIONS(436), - [aux_sym_relation_membership_token1] = ACTIONS(372), - [aux_sym_raise_expression_token1] = ACTIONS(374), - [aux_sym_factor_abs_token1] = ACTIONS(376), - [aux_sym_primary_null_token1] = ACTIONS(438), - [aux_sym_allocator_token1] = ACTIONS(380), - [anon_sym_LT_GT] = ACTIONS(440), - [aux_sym_declare_expression_token1] = ACTIONS(382), - [aux_sym_case_expression_token1] = ACTIONS(384), - [aux_sym_component_choice_list_token1] = ACTIONS(442), - [aux_sym_if_expression_token1] = ACTIONS(392), - }, - [80] = { - [sym__name] = STATE(973), - [sym_selected_component] = STATE(1030), - [sym_slice] = STATE(1030), - [sym__attribute_reference] = STATE(1030), - [sym__reduction_attribute_reference] = STATE(1030), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(1030), - [sym_loop_label] = STATE(979), - [sym_label] = STATE(523), - [sym_null_statement] = STATE(147), - [sym_pragma_g] = STATE(147), - [sym__simple_statement] = STATE(147), - [sym__compound_statement] = STATE(147), - [sym__select_statement] = STATE(147), - [sym_asynchronous_select] = STATE(147), - [sym_conditional_entry_call] = STATE(147), - [sym_timed_entry_call] = STATE(147), - [sym_selective_accept] = STATE(147), - [sym_abort_statement] = STATE(147), - [sym_requeue_statement] = STATE(147), - [sym_accept_statement] = STATE(147), - [sym_case_statement] = STATE(147), - [sym_block_statement] = STATE(147), - [sym_if_statement] = STATE(147), - [sym_gnatprep_if_statement] = STATE(147), - [sym_exit_statement] = STATE(147), - [sym_goto_statement] = STATE(147), - [sym__delay_statement] = STATE(147), - [sym_delay_until_statement] = STATE(147), - [sym_delay_relative_statement] = STATE(147), - [sym_simple_return_statement] = STATE(147), - [sym_extended_return_statement] = STATE(147), - [sym_procedure_call_statement] = STATE(147), - [sym_function_call] = STATE(973), - [sym_raise_statement] = STATE(147), - [sym_loop_statement] = STATE(147), - [sym_iteration_scheme] = STATE(2002), - [sym_assignment_statement] = STATE(147), - [aux_sym__sequence_of_statements_repeat2] = STATE(523), - [sym_identifier] = ACTIONS(206), + [95] = { + [sym__name] = STATE(985), + [sym_selected_component] = STATE(1088), + [sym_slice] = STATE(1088), + [sym__attribute_reference] = STATE(1088), + [sym__reduction_attribute_reference] = STATE(1088), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(1088), + [sym_loop_label] = STATE(998), + [sym_label] = STATE(554), + [sym_null_statement] = STATE(195), + [sym_pragma_g] = STATE(195), + [sym__simple_statement] = STATE(195), + [sym__compound_statement] = STATE(195), + [sym__select_statement] = STATE(195), + [sym_asynchronous_select] = STATE(195), + [sym_conditional_entry_call] = STATE(195), + [sym_timed_entry_call] = STATE(195), + [sym_selective_accept] = STATE(195), + [sym_abort_statement] = STATE(195), + [sym_requeue_statement] = STATE(195), + [sym_accept_statement] = STATE(195), + [sym_case_statement] = STATE(195), + [sym_block_statement] = STATE(195), + [sym_if_statement] = STATE(195), + [sym_gnatprep_if_statement] = STATE(195), + [sym_exit_statement] = STATE(195), + [sym_goto_statement] = STATE(195), + [sym__delay_statement] = STATE(195), + [sym_delay_until_statement] = STATE(195), + [sym_delay_relative_statement] = STATE(195), + [sym_simple_return_statement] = STATE(195), + [sym_extended_return_statement] = STATE(195), + [sym_procedure_call_statement] = STATE(195), + [sym_function_call] = STATE(985), + [sym_raise_statement] = STATE(195), + [sym_loop_statement] = STATE(195), + [sym_iteration_scheme] = STATE(2043), + [sym_assignment_statement] = STATE(195), + [aux_sym__sequence_of_statements_repeat2] = STATE(554), + [sym_identifier] = ACTIONS(422), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(208), + [aux_sym_iterated_element_association_token1] = ACTIONS(424), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -16079,152 +17275,321 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_loop_statement_token1] = ACTIONS(79), [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, - [81] = { - [sym_unary_adding_operator] = STATE(508), - [sym__name] = STATE(500), - [sym_selected_component] = STATE(500), - [sym__defining_identifier_list] = STATE(1870), - [sym_slice] = STATE(500), - [sym__attribute_reference] = STATE(500), - [sym__reduction_attribute_reference] = STATE(500), - [sym_value_sequence] = STATE(2005), - [sym_qualified_expression] = STATE(500), - [sym_range_g] = STATE(1911), - [sym_expression] = STATE(1418), - [sym__relation] = STATE(573), - [sym_relation_membership] = STATE(573), - [sym_raise_expression] = STATE(573), - [sym__simple_expression] = STATE(620), - [sym_term] = STATE(528), - [sym__factor] = STATE(504), - [sym_factor_power] = STATE(504), - [sym_factor_abs] = STATE(504), - [sym_factor_not] = STATE(504), - [sym__parenthesized_expression] = STATE(506), - [sym__primary] = STATE(506), - [sym_primary_null] = STATE(506), - [sym_allocator] = STATE(506), - [sym_parameter_association] = STATE(1342), - [sym__conditional_expression] = STATE(1910), - [sym_quantified_expression] = STATE(1910), - [sym_declare_expression] = STATE(1910), - [sym_case_expression] = STATE(1910), - [sym_component_choice_list] = STATE(1909), - [sym__aggregate] = STATE(506), - [sym__delta_aggregate] = STATE(506), - [sym_extension_aggregate] = STATE(506), - [sym_record_delta_aggregate] = STATE(506), - [sym_array_delta_aggregate] = STATE(506), - [sym_record_aggregate] = STATE(506), - [sym__array_aggregate] = STATE(506), - [sym_positional_array_aggregate] = STATE(506), - [sym_null_array_aggregate] = STATE(506), - [sym_named_array_aggregate] = STATE(506), - [sym_parameter_specification] = STATE(1256), - [sym__parameter_specification_list] = STATE(1868), - [sym_if_expression] = STATE(1910), - [sym_function_call] = STATE(500), - [sym_identifier] = ACTIONS(444), - [sym_gnatprep_identifier] = ACTIONS(446), + [96] = { + [sym_unary_adding_operator] = STATE(537), + [sym__name] = STATE(522), + [sym_selected_component] = STATE(548), + [sym_slice] = STATE(548), + [sym__attribute_reference] = STATE(548), + [sym__reduction_attribute_reference] = STATE(548), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(548), + [sym__subtype_indication] = STATE(1515), + [sym_range_g] = STATE(1534), + [sym_expression] = STATE(1441), + [sym__relation] = STATE(607), + [sym_relation_membership] = STATE(607), + [sym_raise_expression] = STATE(607), + [sym__simple_expression] = STATE(661), + [sym_term] = STATE(546), + [sym__factor] = STATE(524), + [sym_factor_power] = STATE(524), + [sym_factor_abs] = STATE(524), + [sym_factor_not] = STATE(524), + [sym__parenthesized_expression] = STATE(528), + [sym__primary] = STATE(528), + [sym_primary_null] = STATE(528), + [sym_allocator] = STATE(528), + [sym_parameter_association] = STATE(1292), + [sym__conditional_expression] = STATE(1913), + [sym_quantified_expression] = STATE(1913), + [sym_declare_expression] = STATE(1913), + [sym_case_expression] = STATE(1913), + [sym_component_choice_list] = STATE(1910), + [sym__aggregate] = STATE(528), + [sym__delta_aggregate] = STATE(528), + [sym_extension_aggregate] = STATE(528), + [sym_record_delta_aggregate] = STATE(528), + [sym_array_delta_aggregate] = STATE(528), + [sym_record_aggregate] = STATE(528), + [sym_null_exclusion] = STATE(835), + [sym__discrete_range] = STATE(1233), + [sym__array_aggregate] = STATE(528), + [sym_positional_array_aggregate] = STATE(528), + [sym_null_array_aggregate] = STATE(528), + [sym_named_array_aggregate] = STATE(528), + [sym_if_expression] = STATE(1913), + [sym_function_call] = STATE(522), + [sym_identifier] = ACTIONS(482), + [sym_gnatprep_identifier] = ACTIONS(484), [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(448), - [sym_character_literal] = ACTIONS(446), - [sym_numeric_literal] = ACTIONS(358), - [anon_sym_PLUS] = ACTIONS(360), - [anon_sym_DASH] = ACTIONS(362), - [sym_target_name] = ACTIONS(446), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_LBRACK] = ACTIONS(366), - [aux_sym_iterated_element_association_token1] = ACTIONS(436), - [aux_sym_relation_membership_token1] = ACTIONS(450), - [aux_sym_raise_expression_token1] = ACTIONS(374), - [aux_sym_factor_abs_token1] = ACTIONS(376), - [aux_sym_primary_null_token1] = ACTIONS(438), - [aux_sym_allocator_token1] = ACTIONS(380), - [anon_sym_LT_GT] = ACTIONS(440), - [aux_sym_declare_expression_token1] = ACTIONS(382), - [aux_sym_case_expression_token1] = ACTIONS(384), - [aux_sym_component_choice_list_token1] = ACTIONS(442), - [aux_sym_if_expression_token1] = ACTIONS(392), + [sym_string_literal] = ACTIONS(486), + [sym_character_literal] = ACTIONS(484), + [sym_numeric_literal] = ACTIONS(370), + [anon_sym_PLUS] = ACTIONS(372), + [anon_sym_DASH] = ACTIONS(374), + [sym_target_name] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(376), + [anon_sym_LBRACK] = ACTIONS(378), + [aux_sym_iterated_element_association_token1] = ACTIONS(488), + [aux_sym_relation_membership_token1] = ACTIONS(384), + [aux_sym_raise_expression_token1] = ACTIONS(386), + [aux_sym_factor_abs_token1] = ACTIONS(388), + [aux_sym_primary_null_token1] = ACTIONS(490), + [aux_sym_allocator_token1] = ACTIONS(392), + [anon_sym_LT_GT] = ACTIONS(492), + [aux_sym_declare_expression_token1] = ACTIONS(394), + [aux_sym_case_expression_token1] = ACTIONS(396), + [aux_sym_component_choice_list_token1] = ACTIONS(494), + [aux_sym_if_expression_token1] = ACTIONS(404), + }, + [97] = { + [sym_unary_adding_operator] = STATE(537), + [sym__name] = STATE(522), + [sym_selected_component] = STATE(522), + [sym__defining_identifier_list] = STATE(1844), + [sym_slice] = STATE(522), + [sym__attribute_reference] = STATE(522), + [sym__reduction_attribute_reference] = STATE(522), + [sym_value_sequence] = STATE(2045), + [sym_qualified_expression] = STATE(522), + [sym_range_g] = STATE(1914), + [sym_expression] = STATE(1441), + [sym__relation] = STATE(607), + [sym_relation_membership] = STATE(607), + [sym_raise_expression] = STATE(607), + [sym__simple_expression] = STATE(661), + [sym_term] = STATE(546), + [sym__factor] = STATE(524), + [sym_factor_power] = STATE(524), + [sym_factor_abs] = STATE(524), + [sym_factor_not] = STATE(524), + [sym__parenthesized_expression] = STATE(528), + [sym__primary] = STATE(528), + [sym_primary_null] = STATE(528), + [sym_allocator] = STATE(528), + [sym_parameter_association] = STATE(1292), + [sym__conditional_expression] = STATE(1913), + [sym_quantified_expression] = STATE(1913), + [sym_declare_expression] = STATE(1913), + [sym_case_expression] = STATE(1913), + [sym_component_choice_list] = STATE(1910), + [sym__aggregate] = STATE(528), + [sym__delta_aggregate] = STATE(528), + [sym_extension_aggregate] = STATE(528), + [sym_record_delta_aggregate] = STATE(528), + [sym_array_delta_aggregate] = STATE(528), + [sym_record_aggregate] = STATE(528), + [sym__array_aggregate] = STATE(528), + [sym_positional_array_aggregate] = STATE(528), + [sym_null_array_aggregate] = STATE(528), + [sym_named_array_aggregate] = STATE(528), + [sym_parameter_specification] = STATE(1377), + [sym__parameter_specification_list] = STATE(1843), + [sym_if_expression] = STATE(1913), + [sym_function_call] = STATE(522), + [sym_identifier] = ACTIONS(496), + [sym_gnatprep_identifier] = ACTIONS(498), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(500), + [sym_character_literal] = ACTIONS(498), + [sym_numeric_literal] = ACTIONS(370), + [anon_sym_PLUS] = ACTIONS(372), + [anon_sym_DASH] = ACTIONS(374), + [sym_target_name] = ACTIONS(498), + [anon_sym_LPAREN] = ACTIONS(376), + [anon_sym_LBRACK] = ACTIONS(378), + [aux_sym_iterated_element_association_token1] = ACTIONS(488), + [aux_sym_relation_membership_token1] = ACTIONS(502), + [aux_sym_raise_expression_token1] = ACTIONS(386), + [aux_sym_factor_abs_token1] = ACTIONS(388), + [aux_sym_primary_null_token1] = ACTIONS(490), + [aux_sym_allocator_token1] = ACTIONS(392), + [anon_sym_LT_GT] = ACTIONS(492), + [aux_sym_declare_expression_token1] = ACTIONS(394), + [aux_sym_case_expression_token1] = ACTIONS(396), + [aux_sym_component_choice_list_token1] = ACTIONS(494), + [aux_sym_if_expression_token1] = ACTIONS(404), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 33, + [0] = 37, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(382), 1, - aux_sym_declare_expression_token1, - ACTIONS(384), 1, - aux_sym_case_expression_token1, - ACTIONS(392), 1, - aux_sym_if_expression_token1, - ACTIONS(436), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(440), 1, - anon_sym_LT_GT, - ACTIONS(442), 1, - aux_sym_component_choice_list_token1, - ACTIONS(448), 1, - sym_string_literal, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(452), 1, sym_identifier, - STATE(508), 1, + ACTIONS(368), 1, + sym_string_literal, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(384), 1, + aux_sym_relation_membership_token1, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(390), 1, + aux_sym_primary_null_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(398), 1, + aux_sym_component_choice_list_token1, + ACTIONS(504), 1, + aux_sym_iterated_element_association_token1, + STATE(537), 1, sym_unary_adding_operator, - STATE(528), 1, + STATE(546), 1, sym_term, - STATE(620), 1, + STATE(661), 1, sym__simple_expression, - STATE(1342), 1, - sym_parameter_association, - STATE(1418), 1, + STATE(835), 1, + sym_null_exclusion, + STATE(1103), 1, + sym_array_component_association, + STATE(1160), 1, sym_expression, - STATE(1909), 1, - sym_component_choice_list, - STATE(1911), 1, + STATE(1338), 1, + sym__named_record_component_association, + STATE(1371), 1, + sym_iterated_element_association, + STATE(1393), 1, + sym_discrete_choice, + STATE(1432), 1, + sym__subtype_indication, + STATE(1433), 1, sym_range_g, - STATE(2005), 1, + STATE(1791), 1, + sym__array_component_association_list, + STATE(1939), 1, + sym_discrete_choice_list, + STATE(1942), 1, + sym_component_choice_list, + STATE(2045), 1, sym_value_sequence, - ACTIONS(446), 3, + STATE(522), 2, + sym__name, + sym_function_call, + STATE(1788), 2, + sym_record_component_association_list, + sym__record_component_association_list_or_expression, + ACTIONS(366), 3, sym_gnatprep_identifier, sym_character_literal, sym_target_name, - STATE(573), 3, + STATE(607), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(504), 4, + STATE(524), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(1910), 5, + STATE(478), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [138] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(394), 1, + aux_sym_declare_expression_token1, + ACTIONS(396), 1, + aux_sym_case_expression_token1, + ACTIONS(404), 1, + aux_sym_if_expression_token1, + ACTIONS(488), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(492), 1, + anon_sym_LT_GT, + ACTIONS(494), 1, + aux_sym_component_choice_list_token1, + ACTIONS(500), 1, + sym_string_literal, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(506), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(661), 1, + sym__simple_expression, + STATE(1292), 1, + sym_parameter_association, + STATE(1441), 1, + sym_expression, + STATE(1910), 1, + sym_component_choice_list, + STATE(1914), 1, + sym_range_g, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(498), 3, + sym_gnatprep_identifier, + sym_character_literal, + sym_target_name, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(1913), 5, sym__conditional_expression, sym_quantified_expression, sym_declare_expression, sym_case_expression, sym_if_expression, - STATE(500), 7, + STATE(522), 7, sym__name, sym_selected_component, sym_slice, @@ -16232,7 +17597,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(506), 14, + STATE(528), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16247,93 +17612,89 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [130] = 37, + [268] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(352), 1, - sym_identifier, - ACTIONS(356), 1, - sym_string_literal, - ACTIONS(358), 1, + ACTIONS(370), 1, sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, ACTIONS(372), 1, - aux_sym_relation_membership_token1, + anon_sym_PLUS, ACTIONS(374), 1, - aux_sym_raise_expression_token1, + anon_sym_DASH, ACTIONS(376), 1, - aux_sym_factor_abs_token1, + anon_sym_LPAREN, ACTIONS(378), 1, - aux_sym_primary_null_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, + anon_sym_LBRACK, + ACTIONS(384), 1, + aux_sym_relation_membership_token1, ACTIONS(386), 1, - aux_sym_component_choice_list_token1, - ACTIONS(454), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(394), 1, + aux_sym_declare_expression_token1, + ACTIONS(396), 1, + aux_sym_case_expression_token1, + ACTIONS(404), 1, + aux_sym_if_expression_token1, + ACTIONS(488), 1, aux_sym_iterated_element_association_token1, - STATE(508), 1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(508), 1, + sym_identifier, + ACTIONS(510), 1, + sym_string_literal, + STATE(537), 1, sym_unary_adding_operator, - STATE(528), 1, + STATE(546), 1, sym_term, - STATE(620), 1, + STATE(661), 1, sym__simple_expression, - STATE(771), 1, + STATE(835), 1, sym_null_exclusion, - STATE(1150), 1, - sym_expression, - STATE(1156), 1, - sym_array_component_association, - STATE(1180), 1, - sym__named_record_component_association, - STATE(1197), 1, - sym_iterated_element_association, - STATE(1275), 1, - sym_discrete_choice, - STATE(1518), 1, + STATE(1254), 1, + sym_discriminant_association, + STATE(1515), 1, sym__subtype_indication, - STATE(1522), 1, - sym_range_g, - STATE(1652), 1, - sym__array_component_association_list, - STATE(1930), 1, - sym_discrete_choice_list, - STATE(1934), 1, - sym_component_choice_list, - STATE(2005), 1, + STATE(1517), 1, + sym_expression, + STATE(2045), 1, sym_value_sequence, - STATE(500), 2, + STATE(522), 2, sym__name, sym_function_call, - STATE(1653), 2, - sym_record_component_association_list, - sym__record_component_association_list_or_expression, - ACTIONS(354), 3, + STATE(1233), 2, + sym_range_g, + sym__discrete_range, + ACTIONS(484), 3, sym_gnatprep_identifier, sym_character_literal, sym_target_name, - STATE(573), 3, + STATE(607), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(504), 4, + STATE(524), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(451), 5, + STATE(548), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(506), 14, + STATE(1943), 5, + sym__conditional_expression, + sym_quantified_expression, + sym_declare_expression, + sym_case_expression, + sym_if_expression, + STATE(528), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16348,7 +17709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [268] = 28, + [398] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(15), 1, @@ -16369,43 +17730,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(83), 1, aux_sym_subtype_declaration_token1, - ACTIONS(259), 1, + ACTIONS(324), 1, sym_identifier, - ACTIONS(261), 1, + ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(456), 1, + ACTIONS(512), 1, aux_sym_compilation_unit_token1, - ACTIONS(458), 1, + ACTIONS(514), 1, aux_sym_package_specification_token1, - ACTIONS(460), 1, + ACTIONS(516), 1, aux_sym_package_specification_token3, - ACTIONS(462), 1, + ACTIONS(518), 1, aux_sym_allocator_token1, - ACTIONS(464), 1, + ACTIONS(520), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(466), 1, + ACTIONS(522), 1, aux_sym_interface_type_definition_token1, - STATE(944), 1, + STATE(956), 1, sym_generic_formal_part, - STATE(1058), 1, + STATE(1066), 1, sym_overriding_indicator, - STATE(1072), 1, + STATE(1067), 1, sym__subprogram_specification, - STATE(1097), 1, - sym_function_specification, - STATE(1106), 1, + STATE(1163), 1, sym_procedure_specification, - STATE(2003), 1, + STATE(1187), 1, + sym_function_specification, + STATE(2044), 1, sym_package_specification, - STATE(2006), 1, + STATE(2048), 1, sym__defining_identifier_list, - STATE(262), 2, + STATE(425), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(263), 2, + STATE(432), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(86), 34, + STATE(102), 34, sym__basic_declarative_item, sym__basic_declaration, sym__package_declaration, @@ -16440,103 +17801,6 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym_package_specification_repeat1, - [388] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(372), 1, - aux_sym_relation_membership_token1, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(382), 1, - aux_sym_declare_expression_token1, - ACTIONS(384), 1, - aux_sym_case_expression_token1, - ACTIONS(392), 1, - aux_sym_if_expression_token1, - ACTIONS(436), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(468), 1, - sym_identifier, - ACTIONS(470), 1, - sym_string_literal, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(620), 1, - sym__simple_expression, - STATE(771), 1, - sym_null_exclusion, - STATE(1333), 1, - sym_discriminant_association, - STATE(1410), 1, - sym_expression, - STATE(1414), 1, - sym__subtype_indication, - STATE(2005), 1, - sym_value_sequence, - STATE(500), 2, - sym__name, - sym_function_call, - STATE(1335), 2, - sym_range_g, - sym__discrete_range, - ACTIONS(432), 3, - sym_gnatprep_identifier, - sym_character_literal, - sym_target_name, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(525), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(1906), 5, - sym__conditional_expression, - sym_quantified_expression, - sym_declare_expression, - sym_case_expression, - sym_if_expression, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, [518] = 27, ACTIONS(3), 1, sym_comment, @@ -16558,41 +17822,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(83), 1, aux_sym_subtype_declaration_token1, - ACTIONS(259), 1, + ACTIONS(324), 1, sym_identifier, - ACTIONS(261), 1, + ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(458), 1, + ACTIONS(514), 1, aux_sym_package_specification_token1, - ACTIONS(464), 1, + ACTIONS(520), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(466), 1, + ACTIONS(522), 1, aux_sym_interface_type_definition_token1, - ACTIONS(472), 1, + ACTIONS(524), 1, aux_sym_compilation_unit_token1, - ACTIONS(474), 1, + ACTIONS(526), 1, aux_sym_package_specification_token3, - STATE(944), 1, + STATE(956), 1, sym_generic_formal_part, - STATE(1058), 1, + STATE(1066), 1, sym_overriding_indicator, - STATE(1072), 1, + STATE(1067), 1, sym__subprogram_specification, - STATE(1097), 1, - sym_function_specification, - STATE(1106), 1, + STATE(1163), 1, sym_procedure_specification, - STATE(2003), 1, + STATE(1187), 1, + sym_function_specification, + STATE(2044), 1, sym_package_specification, - STATE(2006), 1, + STATE(2048), 1, sym__defining_identifier_list, - STATE(262), 2, + STATE(425), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(263), 2, + STATE(432), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(88), 34, + STATE(104), 34, sym__basic_declarative_item, sym__basic_declaration, sym__package_declaration, @@ -16648,41 +17912,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(83), 1, aux_sym_subtype_declaration_token1, - ACTIONS(259), 1, + ACTIONS(324), 1, sym_identifier, - ACTIONS(261), 1, + ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(456), 1, - aux_sym_compilation_unit_token1, - ACTIONS(458), 1, + ACTIONS(514), 1, aux_sym_package_specification_token1, - ACTIONS(460), 1, - aux_sym_package_specification_token3, - ACTIONS(464), 1, + ACTIONS(520), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(466), 1, + ACTIONS(522), 1, aux_sym_interface_type_definition_token1, - STATE(944), 1, + ACTIONS(528), 1, + aux_sym_compilation_unit_token1, + ACTIONS(530), 1, + aux_sym_package_specification_token3, + STATE(956), 1, sym_generic_formal_part, - STATE(1058), 1, + STATE(1066), 1, sym_overriding_indicator, - STATE(1072), 1, + STATE(1067), 1, sym__subprogram_specification, - STATE(1097), 1, - sym_function_specification, - STATE(1106), 1, + STATE(1163), 1, sym_procedure_specification, - STATE(2003), 1, + STATE(1187), 1, + sym_function_specification, + STATE(2044), 1, sym_package_specification, - STATE(2006), 1, + STATE(2048), 1, sym__defining_identifier_list, - STATE(262), 2, + STATE(425), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(263), 2, + STATE(432), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(86), 34, + STATE(104), 34, sym__basic_declarative_item, sym__basic_declaration, sym__package_declaration, @@ -16720,58 +17984,58 @@ static const uint16_t ts_small_parse_table[] = { [752] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(476), 1, + ACTIONS(532), 1, sym_identifier, - ACTIONS(479), 1, + ACTIONS(535), 1, aux_sym_iterated_element_association_token1, - ACTIONS(482), 1, + ACTIONS(538), 1, aux_sym_iterated_element_association_token2, - ACTIONS(487), 1, + ACTIONS(543), 1, aux_sym_package_specification_token1, - ACTIONS(490), 1, + ACTIONS(546), 1, aux_sym_use_clause_token2, - ACTIONS(493), 1, + ACTIONS(549), 1, aux_sym_relation_membership_token1, - ACTIONS(496), 1, + ACTIONS(552), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(499), 1, + ACTIONS(555), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(502), 1, + ACTIONS(558), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(505), 1, + ACTIONS(561), 1, aux_sym_interface_type_definition_token1, - ACTIONS(508), 1, + ACTIONS(564), 1, aux_sym_generic_formal_part_token1, - ACTIONS(511), 1, + ACTIONS(567), 1, aux_sym_global_mode_token1, - ACTIONS(514), 1, + ACTIONS(570), 1, aux_sym_pragma_g_token1, - ACTIONS(517), 1, + ACTIONS(573), 1, aux_sym_subtype_declaration_token1, - STATE(944), 1, + STATE(956), 1, sym_generic_formal_part, - STATE(1058), 1, + STATE(1066), 1, sym_overriding_indicator, - STATE(1072), 1, + STATE(1067), 1, sym__subprogram_specification, - STATE(1097), 1, - sym_function_specification, - STATE(1106), 1, + STATE(1163), 1, sym_procedure_specification, - STATE(2003), 1, + STATE(1187), 1, + sym_function_specification, + STATE(2044), 1, sym_package_specification, - STATE(2006), 1, + STATE(2048), 1, sym__defining_identifier_list, - ACTIONS(485), 2, + ACTIONS(541), 2, aux_sym_compilation_unit_token1, aux_sym_package_specification_token3, - STATE(262), 2, + STATE(425), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(263), 2, + STATE(432), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(88), 34, + STATE(104), 34, sym__basic_declarative_item, sym__basic_declaration, sym__package_declaration, @@ -16827,41 +18091,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(83), 1, aux_sym_subtype_declaration_token1, - ACTIONS(259), 1, + ACTIONS(324), 1, sym_identifier, - ACTIONS(261), 1, + ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(458), 1, + ACTIONS(514), 1, aux_sym_package_specification_token1, - ACTIONS(464), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(466), 1, - aux_sym_interface_type_definition_token1, ACTIONS(520), 1, - aux_sym_compilation_unit_token1, + aux_sym_access_to_subprogram_definition_token1, ACTIONS(522), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(524), 1, + aux_sym_compilation_unit_token1, + ACTIONS(526), 1, aux_sym_package_specification_token3, - STATE(944), 1, + STATE(956), 1, sym_generic_formal_part, - STATE(1058), 1, + STATE(1066), 1, sym_overriding_indicator, - STATE(1072), 1, + STATE(1067), 1, sym__subprogram_specification, - STATE(1097), 1, - sym_function_specification, - STATE(1106), 1, + STATE(1163), 1, sym_procedure_specification, - STATE(2003), 1, + STATE(1187), 1, + sym_function_specification, + STATE(2044), 1, sym_package_specification, - STATE(2006), 1, + STATE(2048), 1, sym__defining_identifier_list, - STATE(262), 2, + STATE(425), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(263), 2, + STATE(432), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(88), 34, + STATE(103), 34, sym__basic_declarative_item, sym__basic_declaration, sym__package_declaration, @@ -16917,41 +18181,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(83), 1, aux_sym_subtype_declaration_token1, - ACTIONS(259), 1, + ACTIONS(324), 1, sym_identifier, - ACTIONS(261), 1, + ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(458), 1, - aux_sym_package_specification_token1, - ACTIONS(464), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(466), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(472), 1, + ACTIONS(512), 1, aux_sym_compilation_unit_token1, - ACTIONS(474), 1, + ACTIONS(514), 1, + aux_sym_package_specification_token1, + ACTIONS(516), 1, aux_sym_package_specification_token3, - STATE(944), 1, + ACTIONS(520), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(522), 1, + aux_sym_interface_type_definition_token1, + STATE(956), 1, sym_generic_formal_part, - STATE(1058), 1, + STATE(1066), 1, sym_overriding_indicator, - STATE(1072), 1, + STATE(1067), 1, sym__subprogram_specification, - STATE(1097), 1, - sym_function_specification, - STATE(1106), 1, + STATE(1163), 1, sym_procedure_specification, - STATE(2003), 1, + STATE(1187), 1, + sym_function_specification, + STATE(2044), 1, sym_package_specification, - STATE(2006), 1, + STATE(2048), 1, sym__defining_identifier_list, - STATE(262), 2, + STATE(425), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(263), 2, + STATE(432), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(89), 34, + STATE(102), 34, sym__basic_declarative_item, sym__basic_declaration, sym__package_declaration, @@ -17007,391 +18271,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(83), 1, aux_sym_subtype_declaration_token1, - ACTIONS(259), 1, + ACTIONS(324), 1, sym_identifier, - ACTIONS(261), 1, + ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(458), 1, + ACTIONS(514), 1, aux_sym_package_specification_token1, - ACTIONS(464), 1, + ACTIONS(520), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(466), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(524), 1, - aux_sym_package_specification_token3, - STATE(944), 1, - sym_generic_formal_part, - STATE(1058), 1, - sym_overriding_indicator, - STATE(1072), 1, - sym__subprogram_specification, - STATE(1097), 1, - sym_function_specification, - STATE(1106), 1, - sym_procedure_specification, - STATE(2003), 1, - sym_package_specification, - STATE(2006), 1, - sym__defining_identifier_list, - STATE(262), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(263), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(88), 34, - sym__basic_declarative_item, - sym__basic_declaration, - sym__package_declaration, - sym_use_clause, - sym__basic_declarative_item_pragma, - sym__type_declaration, - sym_full_type_declaration, - sym_private_type_declaration, - sym_private_extension_declaration, - sym_incomplete_type_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_exception_declaration, - sym__generic_declaration, - sym_generic_subprogram_declaration, - sym_generic_package_declaration, - sym_generic_instantiation, - sym_null_procedure_declaration, - sym_number_declaration, - sym_object_declaration, - sym_pragma_g, - sym_record_representation_clause, - sym__renaming_declaration, - sym_object_renaming_declaration, - sym_exception_renaming_declaration, - sym_package_renaming_declaration, - sym_subprogram_renaming_declaration, - sym_generic_renaming_declaration, - sym_subprogram_declaration, - sym_expression_function_declaration, - sym_subtype_declaration, - aux_sym_package_specification_repeat1, - [1215] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(83), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(259), 1, - sym_identifier, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(458), 1, - aux_sym_package_specification_token1, - ACTIONS(464), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(466), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(524), 1, - aux_sym_package_specification_token3, - STATE(944), 1, - sym_generic_formal_part, - STATE(1058), 1, - sym_overriding_indicator, - STATE(1072), 1, - sym__subprogram_specification, - STATE(1097), 1, - sym_function_specification, - STATE(1106), 1, - sym_procedure_specification, - STATE(2003), 1, - sym_package_specification, - STATE(2006), 1, - sym__defining_identifier_list, - STATE(262), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(263), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(93), 34, - sym__basic_declarative_item, - sym__basic_declaration, - sym__package_declaration, - sym_use_clause, - sym__basic_declarative_item_pragma, - sym__type_declaration, - sym_full_type_declaration, - sym_private_type_declaration, - sym_private_extension_declaration, - sym_incomplete_type_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_exception_declaration, - sym__generic_declaration, - sym_generic_subprogram_declaration, - sym_generic_package_declaration, - sym_generic_instantiation, - sym_null_procedure_declaration, - sym_number_declaration, - sym_object_declaration, - sym_pragma_g, - sym_record_representation_clause, - sym__renaming_declaration, - sym_object_renaming_declaration, - sym_exception_renaming_declaration, - sym_package_renaming_declaration, - sym_subprogram_renaming_declaration, - sym_generic_renaming_declaration, - sym_subprogram_declaration, - sym_expression_function_declaration, - sym_subtype_declaration, - aux_sym_package_specification_repeat1, - [1329] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(83), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(259), 1, - sym_identifier, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(458), 1, - aux_sym_package_specification_token1, - ACTIONS(464), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(466), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(526), 1, - aux_sym_package_specification_token3, - STATE(944), 1, - sym_generic_formal_part, - STATE(1058), 1, - sym_overriding_indicator, - STATE(1072), 1, - sym__subprogram_specification, - STATE(1097), 1, - sym_function_specification, - STATE(1106), 1, - sym_procedure_specification, - STATE(2003), 1, - sym_package_specification, - STATE(2006), 1, - sym__defining_identifier_list, - STATE(262), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(263), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(88), 34, - sym__basic_declarative_item, - sym__basic_declaration, - sym__package_declaration, - sym_use_clause, - sym__basic_declarative_item_pragma, - sym__type_declaration, - sym_full_type_declaration, - sym_private_type_declaration, - sym_private_extension_declaration, - sym_incomplete_type_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_exception_declaration, - sym__generic_declaration, - sym_generic_subprogram_declaration, - sym_generic_package_declaration, - sym_generic_instantiation, - sym_null_procedure_declaration, - sym_number_declaration, - sym_object_declaration, - sym_pragma_g, - sym_record_representation_clause, - sym__renaming_declaration, - sym_object_renaming_declaration, - sym_exception_renaming_declaration, - sym_package_renaming_declaration, - sym_subprogram_renaming_declaration, - sym_generic_renaming_declaration, - sym_subprogram_declaration, - sym_expression_function_declaration, - sym_subtype_declaration, - aux_sym_package_specification_repeat1, - [1443] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(83), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(259), 1, - sym_identifier, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(458), 1, - aux_sym_package_specification_token1, - ACTIONS(464), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(466), 1, - aux_sym_interface_type_definition_token1, ACTIONS(522), 1, - aux_sym_package_specification_token3, - STATE(944), 1, - sym_generic_formal_part, - STATE(1058), 1, - sym_overriding_indicator, - STATE(1072), 1, - sym__subprogram_specification, - STATE(1097), 1, - sym_function_specification, - STATE(1106), 1, - sym_procedure_specification, - STATE(2003), 1, - sym_package_specification, - STATE(2006), 1, - sym__defining_identifier_list, - STATE(262), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(263), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(91), 34, - sym__basic_declarative_item, - sym__basic_declaration, - sym__package_declaration, - sym_use_clause, - sym__basic_declarative_item_pragma, - sym__type_declaration, - sym_full_type_declaration, - sym_private_type_declaration, - sym_private_extension_declaration, - sym_incomplete_type_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_exception_declaration, - sym__generic_declaration, - sym_generic_subprogram_declaration, - sym_generic_package_declaration, - sym_generic_instantiation, - sym_null_procedure_declaration, - sym_number_declaration, - sym_object_declaration, - sym_pragma_g, - sym_record_representation_clause, - sym__renaming_declaration, - sym_object_renaming_declaration, - sym_exception_renaming_declaration, - sym_package_renaming_declaration, - sym_subprogram_renaming_declaration, - sym_generic_renaming_declaration, - sym_subprogram_declaration, - sym_expression_function_declaration, - sym_subtype_declaration, - aux_sym_package_specification_repeat1, - [1557] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(83), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(259), 1, - sym_identifier, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(458), 1, - aux_sym_package_specification_token1, - ACTIONS(464), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(466), 1, aux_sym_interface_type_definition_token1, - ACTIONS(522), 1, + ACTIONS(576), 1, aux_sym_package_specification_token3, - STATE(944), 1, + STATE(956), 1, sym_generic_formal_part, - STATE(1058), 1, + STATE(1066), 1, sym_overriding_indicator, - STATE(1072), 1, + STATE(1067), 1, sym__subprogram_specification, - STATE(1097), 1, - sym_function_specification, - STATE(1106), 1, + STATE(1163), 1, sym_procedure_specification, - STATE(2003), 1, + STATE(1187), 1, + sym_function_specification, + STATE(2044), 1, sym_package_specification, - STATE(2006), 1, + STATE(2048), 1, sym__defining_identifier_list, - STATE(262), 2, + STATE(425), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(263), 2, + STATE(432), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(88), 34, + STATE(111), 34, sym__basic_declarative_item, sym__basic_declaration, sym__package_declaration, @@ -17426,177 +18338,89 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym_package_specification_repeat1, - [1671] = 26, + [1215] = 35, ACTIONS(3), 1, sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(83), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(259), 1, - sym_identifier, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(458), 1, - aux_sym_package_specification_token1, - ACTIONS(464), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(466), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(474), 1, - aux_sym_package_specification_token3, - STATE(944), 1, - sym_generic_formal_part, - STATE(1058), 1, - sym_overriding_indicator, - STATE(1072), 1, - sym__subprogram_specification, - STATE(1097), 1, - sym_function_specification, - STATE(1106), 1, - sym_procedure_specification, - STATE(2003), 1, - sym_package_specification, - STATE(2006), 1, - sym__defining_identifier_list, - STATE(262), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(263), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(95), 34, - sym__basic_declarative_item, - sym__basic_declaration, - sym__package_declaration, - sym_use_clause, - sym__basic_declarative_item_pragma, - sym__type_declaration, - sym_full_type_declaration, - sym_private_type_declaration, - sym_private_extension_declaration, - sym_incomplete_type_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_exception_declaration, - sym__generic_declaration, - sym_generic_subprogram_declaration, - sym_generic_package_declaration, - sym_generic_instantiation, - sym_null_procedure_declaration, - sym_number_declaration, - sym_object_declaration, - sym_pragma_g, - sym_record_representation_clause, - sym__renaming_declaration, - sym_object_renaming_declaration, - sym_exception_renaming_declaration, - sym_package_renaming_declaration, - sym_subprogram_renaming_declaration, - sym_generic_renaming_declaration, - sym_subprogram_declaration, - sym_expression_function_declaration, - sym_subtype_declaration, - aux_sym_package_specification_repeat1, - [1785] = 35, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, + ACTIONS(370), 1, sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, ACTIONS(372), 1, - aux_sym_relation_membership_token1, + anon_sym_PLUS, ACTIONS(374), 1, - aux_sym_raise_expression_token1, + anon_sym_DASH, ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(384), 1, + aux_sym_relation_membership_token1, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, aux_sym_factor_abs_token1, - ACTIONS(380), 1, + ACTIONS(392), 1, aux_sym_allocator_token1, - ACTIONS(438), 1, + ACTIONS(490), 1, aux_sym_primary_null_token1, - ACTIONS(454), 1, + ACTIONS(504), 1, aux_sym_iterated_element_association_token1, - ACTIONS(528), 1, + ACTIONS(578), 1, sym_identifier, - ACTIONS(530), 1, + ACTIONS(580), 1, aux_sym_value_sequence_token1, - ACTIONS(532), 1, + ACTIONS(582), 1, anon_sym_RBRACK, - ACTIONS(534), 1, + ACTIONS(584), 1, aux_sym_component_choice_list_token1, - STATE(508), 1, + STATE(537), 1, sym_unary_adding_operator, - STATE(528), 1, + STATE(546), 1, sym_term, - STATE(620), 1, + STATE(661), 1, sym__simple_expression, - STATE(771), 1, + STATE(835), 1, sym_null_exclusion, - STATE(965), 1, + STATE(991), 1, sym_expression, - STATE(1156), 1, + STATE(1103), 1, sym_array_component_association, - STATE(1275), 1, + STATE(1393), 1, sym_discrete_choice, - STATE(1458), 1, - sym_iterated_element_association, - STATE(1518), 1, + STATE(1432), 1, sym__subtype_indication, - STATE(1522), 1, + STATE(1433), 1, sym_range_g, - STATE(1929), 1, + STATE(1434), 1, + sym_iterated_element_association, + STATE(1937), 1, sym__array_component_association_list, - STATE(1930), 1, + STATE(1939), 1, sym_discrete_choice_list, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - STATE(500), 2, + STATE(522), 2, sym__name, sym_function_call, - STATE(573), 3, + STATE(607), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(354), 4, + ACTIONS(366), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, + STATE(524), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(451), 5, + STATE(478), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(506), 14, + STATE(528), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17611,87 +18435,527 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, + [1347] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(83), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(514), 1, + aux_sym_package_specification_token1, + ACTIONS(520), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(522), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(526), 1, + aux_sym_package_specification_token3, + STATE(956), 1, + sym_generic_formal_part, + STATE(1066), 1, + sym_overriding_indicator, + STATE(1067), 1, + sym__subprogram_specification, + STATE(1163), 1, + sym_procedure_specification, + STATE(1187), 1, + sym_function_specification, + STATE(2044), 1, + sym_package_specification, + STATE(2048), 1, + sym__defining_identifier_list, + STATE(425), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(432), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(110), 34, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym__type_declaration, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_exception_declaration, + sym__generic_declaration, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_record_representation_clause, + sym__renaming_declaration, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [1461] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(83), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(514), 1, + aux_sym_package_specification_token1, + ACTIONS(520), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(522), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(530), 1, + aux_sym_package_specification_token3, + STATE(956), 1, + sym_generic_formal_part, + STATE(1066), 1, + sym_overriding_indicator, + STATE(1067), 1, + sym__subprogram_specification, + STATE(1163), 1, + sym_procedure_specification, + STATE(1187), 1, + sym_function_specification, + STATE(2044), 1, + sym_package_specification, + STATE(2048), 1, + sym__defining_identifier_list, + STATE(425), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(432), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(104), 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, + [1575] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(83), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(514), 1, + aux_sym_package_specification_token1, + ACTIONS(520), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(522), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(586), 1, + aux_sym_package_specification_token3, + STATE(956), 1, + sym_generic_formal_part, + STATE(1066), 1, + sym_overriding_indicator, + STATE(1067), 1, + sym__subprogram_specification, + STATE(1163), 1, + sym_procedure_specification, + STATE(1187), 1, + sym_function_specification, + STATE(2044), 1, + sym_package_specification, + STATE(2048), 1, + sym__defining_identifier_list, + STATE(425), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(432), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(104), 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, + [1689] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(83), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(514), 1, + aux_sym_package_specification_token1, + ACTIONS(520), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(522), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(530), 1, + aux_sym_package_specification_token3, + STATE(956), 1, + sym_generic_formal_part, + STATE(1066), 1, + sym_overriding_indicator, + STATE(1067), 1, + sym__subprogram_specification, + STATE(1163), 1, + sym_procedure_specification, + STATE(1187), 1, + sym_function_specification, + STATE(2044), 1, + sym_package_specification, + STATE(2048), 1, + sym__defining_identifier_list, + STATE(425), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(432), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(113), 34, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym__type_declaration, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_exception_declaration, + sym__generic_declaration, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_record_representation_clause, + sym__renaming_declaration, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [1803] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(83), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(514), 1, + aux_sym_package_specification_token1, + ACTIONS(520), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(522), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(576), 1, + aux_sym_package_specification_token3, + STATE(956), 1, + sym_generic_formal_part, + STATE(1066), 1, + sym_overriding_indicator, + STATE(1067), 1, + sym__subprogram_specification, + STATE(1163), 1, + sym_procedure_specification, + STATE(1187), 1, + sym_function_specification, + STATE(2044), 1, + sym_package_specification, + STATE(2048), 1, + sym__defining_identifier_list, + STATE(425), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(432), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(104), 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, [1917] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, + ACTIONS(370), 1, sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, ACTIONS(372), 1, - aux_sym_relation_membership_token1, + anon_sym_PLUS, ACTIONS(374), 1, - aux_sym_raise_expression_token1, + anon_sym_DASH, ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(384), 1, + aux_sym_relation_membership_token1, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, aux_sym_factor_abs_token1, - ACTIONS(380), 1, + ACTIONS(392), 1, aux_sym_allocator_token1, - ACTIONS(438), 1, + ACTIONS(490), 1, aux_sym_primary_null_token1, - ACTIONS(454), 1, + ACTIONS(504), 1, aux_sym_iterated_element_association_token1, - ACTIONS(528), 1, + ACTIONS(578), 1, sym_identifier, - ACTIONS(532), 1, + ACTIONS(582), 1, anon_sym_RBRACK, - ACTIONS(534), 1, + ACTIONS(584), 1, aux_sym_component_choice_list_token1, - STATE(508), 1, + STATE(537), 1, sym_unary_adding_operator, - STATE(528), 1, + STATE(546), 1, sym_term, - STATE(620), 1, + STATE(661), 1, sym__simple_expression, - STATE(771), 1, + STATE(835), 1, sym_null_exclusion, - STATE(1043), 1, + STATE(991), 1, sym_expression, - STATE(1156), 1, + STATE(1103), 1, sym_array_component_association, - STATE(1197), 1, + STATE(1371), 1, sym_iterated_element_association, - STATE(1275), 1, + STATE(1393), 1, sym_discrete_choice, - STATE(1518), 1, + STATE(1432), 1, sym__subtype_indication, - STATE(1522), 1, + STATE(1433), 1, sym_range_g, - STATE(1929), 1, + STATE(1937), 1, sym__array_component_association_list, - STATE(1930), 1, + STATE(1939), 1, sym_discrete_choice_list, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - STATE(500), 2, + STATE(522), 2, sym__name, sym_function_call, - STATE(573), 3, + STATE(607), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(354), 4, + ACTIONS(366), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, + STATE(524), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(451), 5, + STATE(478), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(506), 14, + STATE(528), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17709,84 +18973,84 @@ static const uint16_t ts_small_parse_table[] = { [2046] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, + ACTIONS(370), 1, sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, ACTIONS(372), 1, - aux_sym_relation_membership_token1, + anon_sym_PLUS, ACTIONS(374), 1, - aux_sym_raise_expression_token1, + anon_sym_DASH, ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(384), 1, + aux_sym_relation_membership_token1, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, aux_sym_factor_abs_token1, - ACTIONS(380), 1, + ACTIONS(392), 1, aux_sym_allocator_token1, - ACTIONS(438), 1, + ACTIONS(490), 1, aux_sym_primary_null_token1, - ACTIONS(454), 1, + ACTIONS(504), 1, aux_sym_iterated_element_association_token1, - ACTIONS(528), 1, + ACTIONS(578), 1, sym_identifier, - ACTIONS(532), 1, + ACTIONS(582), 1, anon_sym_RBRACK, - ACTIONS(534), 1, + ACTIONS(584), 1, aux_sym_component_choice_list_token1, - STATE(508), 1, + STATE(537), 1, sym_unary_adding_operator, - STATE(528), 1, + STATE(546), 1, sym_term, - STATE(620), 1, + STATE(661), 1, sym__simple_expression, - STATE(771), 1, + STATE(835), 1, sym_null_exclusion, - STATE(965), 1, + STATE(1027), 1, sym_expression, - STATE(1156), 1, + STATE(1103), 1, sym_array_component_association, - STATE(1197), 1, + STATE(1371), 1, sym_iterated_element_association, - STATE(1275), 1, + STATE(1393), 1, sym_discrete_choice, - STATE(1518), 1, + STATE(1432), 1, sym__subtype_indication, - STATE(1522), 1, + STATE(1433), 1, sym_range_g, - STATE(1929), 1, + STATE(1937), 1, sym__array_component_association_list, - STATE(1930), 1, + STATE(1939), 1, sym_discrete_choice_list, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - STATE(500), 2, + STATE(522), 2, sym__name, sym_function_call, - STATE(573), 3, + STATE(607), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(354), 4, + ACTIONS(366), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, + STATE(524), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(451), 5, + STATE(478), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(506), 14, + STATE(528), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17804,81 +19068,81 @@ static const uint16_t ts_small_parse_table[] = { [2175] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, + ACTIONS(370), 1, sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, ACTIONS(372), 1, - aux_sym_relation_membership_token1, + anon_sym_PLUS, ACTIONS(374), 1, - aux_sym_raise_expression_token1, + anon_sym_DASH, ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(384), 1, + aux_sym_relation_membership_token1, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, aux_sym_factor_abs_token1, - ACTIONS(380), 1, + ACTIONS(392), 1, aux_sym_allocator_token1, - ACTIONS(438), 1, + ACTIONS(490), 1, aux_sym_primary_null_token1, - ACTIONS(454), 1, + ACTIONS(504), 1, aux_sym_iterated_element_association_token1, - ACTIONS(528), 1, + ACTIONS(578), 1, sym_identifier, - ACTIONS(534), 1, + ACTIONS(584), 1, aux_sym_component_choice_list_token1, - STATE(508), 1, + STATE(537), 1, sym_unary_adding_operator, - STATE(528), 1, + STATE(546), 1, sym_term, - STATE(620), 1, + STATE(661), 1, sym__simple_expression, - STATE(771), 1, + STATE(835), 1, sym_null_exclusion, - STATE(1156), 1, + STATE(1103), 1, sym_array_component_association, - STATE(1197), 1, + STATE(1371), 1, sym_iterated_element_association, - STATE(1275), 1, + STATE(1393), 1, sym_discrete_choice, - STATE(1518), 1, + STATE(1432), 1, sym__subtype_indication, - STATE(1650), 1, + STATE(1818), 1, sym__array_component_association_list, - STATE(1930), 1, + STATE(1939), 1, sym_discrete_choice_list, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - STATE(500), 2, + STATE(522), 2, sym__name, sym_function_call, - STATE(1522), 2, + STATE(1433), 2, sym_range_g, sym_expression, - STATE(573), 3, + STATE(607), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(354), 4, + ACTIONS(366), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, + STATE(524), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(451), 5, + STATE(478), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(506), 14, + STATE(528), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17896,82 +19160,82 @@ static const uint16_t ts_small_parse_table[] = { [2299] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, + ACTIONS(370), 1, sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, ACTIONS(372), 1, - aux_sym_relation_membership_token1, + anon_sym_PLUS, ACTIONS(374), 1, - aux_sym_raise_expression_token1, + anon_sym_DASH, ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(384), 1, + aux_sym_relation_membership_token1, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, aux_sym_factor_abs_token1, - ACTIONS(380), 1, + ACTIONS(392), 1, aux_sym_allocator_token1, - ACTIONS(438), 1, + ACTIONS(490), 1, aux_sym_primary_null_token1, - ACTIONS(454), 1, + ACTIONS(504), 1, aux_sym_iterated_element_association_token1, - ACTIONS(528), 1, + ACTIONS(578), 1, sym_identifier, - ACTIONS(534), 1, + ACTIONS(584), 1, aux_sym_component_choice_list_token1, - STATE(508), 1, + STATE(537), 1, sym_unary_adding_operator, - STATE(528), 1, + STATE(546), 1, sym_term, - STATE(620), 1, + STATE(661), 1, sym__simple_expression, - STATE(771), 1, + STATE(835), 1, sym_null_exclusion, - STATE(1138), 1, - sym_expression, - STATE(1156), 1, + STATE(1103), 1, sym_array_component_association, - STATE(1197), 1, + STATE(1145), 1, + sym_expression, + STATE(1371), 1, sym_iterated_element_association, - STATE(1275), 1, + STATE(1393), 1, sym_discrete_choice, - STATE(1518), 1, + STATE(1432), 1, sym__subtype_indication, - STATE(1522), 1, + STATE(1433), 1, sym_range_g, - STATE(1930), 1, + STATE(1939), 1, sym_discrete_choice_list, - STATE(1931), 1, + STATE(1940), 1, sym__array_component_association_list, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - STATE(500), 2, + STATE(522), 2, sym__name, sym_function_call, - STATE(573), 3, + STATE(607), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(354), 4, + ACTIONS(366), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, + STATE(524), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(451), 5, + STATE(478), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(506), 14, + STATE(528), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17989,68 +19253,68 @@ static const uint16_t ts_small_parse_table[] = { [2425] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, + ACTIONS(370), 1, sym_numeric_literal, - ACTIONS(360), 1, + ACTIONS(372), 1, anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, ACTIONS(374), 1, - aux_sym_raise_expression_token1, + anon_sym_DASH, ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(384), 1, - aux_sym_case_expression_token1, ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(396), 1, + aux_sym_case_expression_token1, + ACTIONS(404), 1, aux_sym_if_expression_token1, - ACTIONS(436), 1, + ACTIONS(488), 1, aux_sym_iterated_element_association_token1, - ACTIONS(438), 1, + ACTIONS(490), 1, aux_sym_primary_null_token1, - ACTIONS(450), 1, + ACTIONS(502), 1, aux_sym_relation_membership_token1, - ACTIONS(536), 1, + ACTIONS(588), 1, sym_identifier, - STATE(508), 1, + STATE(537), 1, sym_unary_adding_operator, - STATE(528), 1, + STATE(546), 1, sym_term, - STATE(544), 1, + STATE(565), 1, sym__simple_expression, - STATE(1179), 1, + STATE(1386), 1, sym_pragma_argument_association, - STATE(1490), 1, + STATE(1477), 1, sym_expression, - STATE(1841), 1, + STATE(1806), 1, sym__aspect_mark, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - STATE(573), 3, + STATE(607), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(538), 4, + ACTIONS(590), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, + STATE(524), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(1842), 4, + STATE(1807), 4, sym__conditional_quantified_expression, sym_quantified_expression, sym_case_expression, sym_if_expression, - STATE(489), 7, + STATE(514), 7, sym__name, sym_selected_component, sym_slice, @@ -18058,7 +19322,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(506), 14, + STATE(528), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18076,79 +19340,79 @@ static const uint16_t ts_small_parse_table[] = { [2540] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, + ACTIONS(370), 1, sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, ACTIONS(372), 1, - aux_sym_relation_membership_token1, + anon_sym_PLUS, ACTIONS(374), 1, - aux_sym_raise_expression_token1, + anon_sym_DASH, ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(384), 1, + aux_sym_relation_membership_token1, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, aux_sym_factor_abs_token1, - ACTIONS(380), 1, + ACTIONS(392), 1, aux_sym_allocator_token1, - ACTIONS(438), 1, + ACTIONS(490), 1, aux_sym_primary_null_token1, - ACTIONS(454), 1, + ACTIONS(504), 1, aux_sym_iterated_element_association_token1, - ACTIONS(528), 1, + ACTIONS(578), 1, sym_identifier, - ACTIONS(534), 1, + ACTIONS(584), 1, aux_sym_component_choice_list_token1, - STATE(508), 1, + STATE(537), 1, sym_unary_adding_operator, - STATE(528), 1, + STATE(546), 1, sym_term, - STATE(620), 1, + STATE(661), 1, sym__simple_expression, - STATE(771), 1, + STATE(835), 1, sym_null_exclusion, - STATE(1197), 1, - sym_iterated_element_association, - STATE(1275), 1, - sym_discrete_choice, - STATE(1372), 1, + STATE(1218), 1, sym_array_component_association, - STATE(1518), 1, + STATE(1371), 1, + sym_iterated_element_association, + STATE(1393), 1, + sym_discrete_choice, + STATE(1432), 1, sym__subtype_indication, - STATE(1930), 1, + STATE(1939), 1, sym_discrete_choice_list, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - STATE(500), 2, + STATE(522), 2, sym__name, sym_function_call, - STATE(1522), 2, + STATE(1433), 2, sym_range_g, sym_expression, - STATE(573), 3, + STATE(607), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(354), 4, + ACTIONS(366), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, + STATE(524), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(451), 5, + STATE(478), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(506), 14, + STATE(528), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18166,65 +19430,65 @@ static const uint16_t ts_small_parse_table[] = { [2661] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, + ACTIONS(370), 1, sym_numeric_literal, - ACTIONS(360), 1, + ACTIONS(372), 1, anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(368), 1, - aux_sym_chunk_specification_token1, ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, + anon_sym_DASH, + ACTIONS(378), 1, + anon_sym_LBRACK, ACTIONS(380), 1, - aux_sym_allocator_token1, + aux_sym_chunk_specification_token1, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(400), 1, aux_sym_global_mode_token1, - ACTIONS(390), 1, + ACTIONS(402), 1, aux_sym_non_empty_mode_token1, - ACTIONS(438), 1, + ACTIONS(490), 1, aux_sym_primary_null_token1, - ACTIONS(450), 1, + ACTIONS(502), 1, aux_sym_relation_membership_token1, - ACTIONS(540), 1, + ACTIONS(592), 1, sym_identifier, - ACTIONS(542), 1, + ACTIONS(594), 1, anon_sym_LPAREN, - STATE(508), 1, + STATE(537), 1, sym_unary_adding_operator, - STATE(528), 1, + STATE(546), 1, sym_term, - STATE(544), 1, + STATE(565), 1, sym__simple_expression, - STATE(840), 1, + STATE(872), 1, sym_non_empty_mode, - STATE(1063), 1, + STATE(1100), 1, sym_global_mode, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - STATE(573), 3, + STATE(607), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(1062), 3, + STATE(1099), 3, sym_expression, sym__aspect_definition, sym_global_aspect_definition, - ACTIONS(538), 4, + ACTIONS(590), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, + STATE(524), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(489), 7, + STATE(514), 7, sym__name, sym_selected_component, sym_slice, @@ -18232,7 +19496,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(506), 14, + STATE(528), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18250,73 +19514,73 @@ static const uint16_t ts_small_parse_table[] = { [2772] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, + ACTIONS(370), 1, sym_numeric_literal, - ACTIONS(360), 1, + ACTIONS(372), 1, anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, ACTIONS(374), 1, - aux_sym_raise_expression_token1, + anon_sym_DASH, ACTIONS(376), 1, - aux_sym_factor_abs_token1, + anon_sym_LPAREN, ACTIONS(378), 1, - aux_sym_primary_null_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(442), 1, - aux_sym_component_choice_list_token1, - ACTIONS(448), 1, - sym_string_literal, - ACTIONS(450), 1, + anon_sym_LBRACK, + ACTIONS(384), 1, aux_sym_relation_membership_token1, - ACTIONS(452), 1, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(578), 1, sym_identifier, - ACTIONS(544), 1, - aux_sym_attribute_designator_token2, - STATE(508), 1, + ACTIONS(584), 1, + aux_sym_component_choice_list_token1, + STATE(537), 1, sym_unary_adding_operator, - STATE(528), 1, + STATE(546), 1, sym_term, - STATE(544), 1, + STATE(661), 1, sym__simple_expression, - STATE(1180), 1, - sym__named_record_component_association, - STATE(1396), 1, - sym_expression, - STATE(1934), 1, - sym_component_choice_list, - STATE(2005), 1, + STATE(835), 1, + sym_null_exclusion, + STATE(1393), 1, + sym_discrete_choice, + STATE(1432), 1, + sym__subtype_indication, + STATE(1563), 1, + sym_discrete_choice_list, + STATE(2045), 1, sym_value_sequence, - STATE(1763), 2, - sym_record_component_association_list, - sym__record_component_association_list_or_expression, - ACTIONS(538), 3, - sym_gnatprep_identifier, - sym_character_literal, - sym_target_name, - STATE(573), 3, + STATE(522), 2, + sym__name, + sym_function_call, + STATE(1433), 2, + sym_range_g, + sym_expression, + STATE(607), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(504), 4, + ACTIONS(366), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(489), 7, - sym__name, + STATE(478), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - sym_function_call, - STATE(506), 14, + STATE(528), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18334,73 +19598,73 @@ static const uint16_t ts_small_parse_table[] = { [2884] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, + ACTIONS(370), 1, sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, ACTIONS(372), 1, - aux_sym_relation_membership_token1, + anon_sym_PLUS, ACTIONS(374), 1, - aux_sym_raise_expression_token1, + anon_sym_DASH, ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(384), 1, + aux_sym_relation_membership_token1, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, aux_sym_factor_abs_token1, - ACTIONS(380), 1, + ACTIONS(392), 1, aux_sym_allocator_token1, - ACTIONS(438), 1, + ACTIONS(490), 1, aux_sym_primary_null_token1, - ACTIONS(528), 1, + ACTIONS(578), 1, sym_identifier, - ACTIONS(534), 1, + ACTIONS(584), 1, aux_sym_component_choice_list_token1, - STATE(508), 1, + STATE(537), 1, sym_unary_adding_operator, - STATE(528), 1, + STATE(546), 1, sym_term, - STATE(620), 1, + STATE(661), 1, sym__simple_expression, - STATE(771), 1, + STATE(835), 1, sym_null_exclusion, - STATE(1275), 1, + STATE(1393), 1, sym_discrete_choice, - STATE(1518), 1, + STATE(1432), 1, sym__subtype_indication, - STATE(1822), 1, + STATE(1661), 1, sym_discrete_choice_list, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - STATE(500), 2, + STATE(522), 2, sym__name, sym_function_call, - STATE(1522), 2, + STATE(1433), 2, sym_range_g, sym_expression, - STATE(573), 3, + STATE(607), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(354), 4, + ACTIONS(366), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, + STATE(524), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(451), 5, + STATE(478), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(506), 14, + STATE(528), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18418,73 +19682,73 @@ static const uint16_t ts_small_parse_table[] = { [2996] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, + ACTIONS(370), 1, sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, ACTIONS(372), 1, - aux_sym_relation_membership_token1, + anon_sym_PLUS, ACTIONS(374), 1, - aux_sym_raise_expression_token1, + anon_sym_DASH, ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, + ACTIONS(390), 1, aux_sym_primary_null_token1, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(534), 1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(494), 1, aux_sym_component_choice_list_token1, - STATE(508), 1, + ACTIONS(500), 1, + sym_string_literal, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(506), 1, + sym_identifier, + ACTIONS(596), 1, + aux_sym_attribute_designator_token2, + STATE(537), 1, sym_unary_adding_operator, - STATE(528), 1, + STATE(546), 1, sym_term, - STATE(620), 1, + STATE(565), 1, sym__simple_expression, - STATE(771), 1, - sym_null_exclusion, - STATE(1275), 1, - sym_discrete_choice, - STATE(1518), 1, - sym__subtype_indication, - STATE(1536), 1, - sym_discrete_choice_list, - STATE(2005), 1, - sym_value_sequence, - STATE(500), 2, - sym__name, - sym_function_call, - STATE(1522), 2, - sym_range_g, + STATE(1338), 1, + sym__named_record_component_association, + STATE(1525), 1, sym_expression, - STATE(573), 3, + STATE(1942), 1, + sym_component_choice_list, + STATE(2045), 1, + sym_value_sequence, + STATE(1673), 2, + sym_record_component_association_list, + sym__record_component_association_list_or_expression, + ACTIONS(590), 3, + sym_gnatprep_identifier, + sym_character_literal, + sym_target_name, + STATE(607), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(354), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, + STATE(524), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(451), 5, + STATE(514), 7, + sym__name, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(506), 14, + sym_function_call, + STATE(528), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18502,73 +19766,73 @@ static const uint16_t ts_small_parse_table[] = { [3108] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, + ACTIONS(370), 1, sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, ACTIONS(372), 1, - aux_sym_relation_membership_token1, + anon_sym_PLUS, ACTIONS(374), 1, - aux_sym_raise_expression_token1, + anon_sym_DASH, ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(384), 1, + aux_sym_relation_membership_token1, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, aux_sym_factor_abs_token1, - ACTIONS(380), 1, + ACTIONS(392), 1, aux_sym_allocator_token1, - ACTIONS(438), 1, + ACTIONS(490), 1, aux_sym_primary_null_token1, - ACTIONS(528), 1, + ACTIONS(578), 1, sym_identifier, - ACTIONS(534), 1, + ACTIONS(584), 1, aux_sym_component_choice_list_token1, - STATE(508), 1, + STATE(537), 1, sym_unary_adding_operator, - STATE(528), 1, + STATE(546), 1, sym_term, - STATE(620), 1, + STATE(661), 1, sym__simple_expression, - STATE(771), 1, + STATE(835), 1, sym_null_exclusion, - STATE(1275), 1, + STATE(1393), 1, sym_discrete_choice, - STATE(1518), 1, + STATE(1432), 1, sym__subtype_indication, - STATE(1761), 1, + STATE(1861), 1, sym_discrete_choice_list, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - STATE(500), 2, + STATE(522), 2, sym__name, sym_function_call, - STATE(1522), 2, + STATE(1433), 2, sym_range_g, sym_expression, - STATE(573), 3, + STATE(607), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(354), 4, + ACTIONS(366), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, + STATE(524), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(451), 5, + STATE(478), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(506), 14, + STATE(528), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18584,760 +19848,6 @@ static const uint16_t ts_small_parse_table[] = { sym_null_array_aggregate, sym_named_array_aggregate, [3220] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(548), 1, - sym_identifier, - ACTIONS(546), 52, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [3281] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(552), 1, - sym_identifier, - ACTIONS(550), 52, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [3342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(556), 1, - sym_identifier, - ACTIONS(554), 52, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [3403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(560), 1, - sym_identifier, - ACTIONS(558), 52, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [3464] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(564), 1, - sym_identifier, - ACTIONS(562), 52, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [3525] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(568), 1, - sym_identifier, - ACTIONS(566), 52, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [3586] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(572), 1, - sym_identifier, - ACTIONS(570), 52, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [3647] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(576), 1, - sym_identifier, - ACTIONS(574), 52, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [3708] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(580), 1, - sym_identifier, - ACTIONS(578), 52, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [3769] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(584), 1, - sym_identifier, - ACTIONS(582), 52, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [3830] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(588), 1, - sym_identifier, - ACTIONS(586), 52, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [3891] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(592), 1, - sym_identifier, - ACTIONS(590), 52, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [3952] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(596), 1, - sym_identifier, - ACTIONS(594), 52, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [4013] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(600), 1, @@ -19395,7 +19905,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4074] = 3, + [3281] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(604), 1, @@ -19453,7 +19963,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4135] = 3, + [3342] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(608), 1, @@ -19511,7 +20021,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4196] = 3, + [3403] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(612), 1, @@ -19569,7 +20079,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4257] = 3, + [3464] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, @@ -19627,7 +20137,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4318] = 3, + [3525] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, @@ -19685,7 +20195,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4379] = 3, + [3586] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(624), 1, @@ -19743,7 +20253,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4440] = 3, + [3647] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(628), 1, @@ -19801,7 +20311,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4501] = 3, + [3708] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(632), 1, @@ -19859,7 +20369,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4562] = 3, + [3769] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(636), 1, @@ -19917,7 +20427,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4623] = 3, + [3830] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(640), 1, @@ -19975,7 +20485,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4684] = 3, + [3891] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(644), 1, @@ -20033,7 +20543,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4745] = 3, + [3952] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(648), 1, @@ -20091,7 +20601,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4806] = 3, + [4013] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(652), 1, @@ -20149,7 +20659,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4867] = 3, + [4074] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(656), 1, @@ -20207,7 +20717,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4928] = 3, + [4135] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(660), 1, @@ -20265,7 +20775,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4989] = 3, + [4196] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(664), 1, @@ -20323,7 +20833,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5050] = 3, + [4257] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(668), 1, @@ -20381,7 +20891,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5111] = 3, + [4318] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(672), 1, @@ -20439,7 +20949,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5172] = 3, + [4379] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(676), 1, @@ -20497,7 +21007,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5233] = 3, + [4440] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(680), 1, @@ -20555,89 +21065,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5294] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(372), 1, - aux_sym_relation_membership_token1, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(534), 1, - aux_sym_component_choice_list_token1, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(620), 1, - sym__simple_expression, - STATE(771), 1, - sym_null_exclusion, - STATE(1375), 1, - sym_discrete_choice, - STATE(1518), 1, - sym__subtype_indication, - STATE(2005), 1, - sym_value_sequence, - STATE(500), 2, - sym__name, - sym_function_call, - STATE(1522), 2, - sym_range_g, - sym_expression, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(354), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(451), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [5403] = 3, + [4501] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(684), 1, @@ -20695,7 +21123,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5464] = 3, + [4562] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(688), 1, @@ -20753,7 +21181,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5525] = 3, + [4623] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(692), 1, @@ -20811,7 +21239,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5586] = 3, + [4684] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(696), 1, @@ -20869,7 +21297,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5647] = 3, + [4745] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(700), 1, @@ -20927,7 +21355,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5708] = 3, + [4806] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(704), 1, @@ -20985,7 +21413,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5769] = 3, + [4867] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(708), 1, @@ -21043,7 +21471,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5830] = 3, + [4928] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(712), 1, @@ -21101,7 +21529,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5891] = 3, + [4989] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(716), 1, @@ -21159,7 +21587,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5952] = 3, + [5050] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(720), 1, @@ -21217,7 +21645,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6013] = 3, + [5111] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(724), 1, @@ -21275,7 +21703,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6074] = 3, + [5172] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(728), 1, @@ -21333,7 +21761,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6135] = 3, + [5233] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(732), 1, @@ -21391,7 +21819,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6196] = 3, + [5294] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(736), 1, @@ -21449,7 +21877,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6257] = 3, + [5355] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(740), 1, @@ -21507,7 +21935,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6318] = 3, + [5416] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(744), 1, @@ -21565,7 +21993,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6379] = 3, + [5477] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(748), 1, @@ -21623,7 +22051,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6440] = 3, + [5538] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(752), 1, @@ -21681,7 +22109,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6501] = 3, + [5599] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(756), 1, @@ -21739,7 +22167,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6562] = 3, + [5660] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(760), 1, @@ -21797,7 +22225,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6623] = 3, + [5721] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(764), 1, @@ -21855,7 +22283,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6684] = 3, + [5782] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(768), 1, @@ -21913,7 +22341,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6745] = 3, + [5843] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(772), 1, @@ -21971,7 +22399,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6806] = 3, + [5904] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(776), 1, @@ -22029,7 +22457,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6867] = 3, + [5965] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(780), 1, @@ -22087,7 +22515,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6928] = 3, + [6026] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(784), 1, @@ -22145,7 +22573,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6989] = 3, + [6087] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(788), 1, @@ -22203,7 +22631,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7050] = 3, + [6148] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(792), 1, @@ -22261,7 +22689,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7111] = 3, + [6209] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(796), 1, @@ -22319,7 +22747,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7172] = 3, + [6270] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(800), 1, @@ -22377,7 +22805,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7233] = 3, + [6331] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(804), 1, @@ -22435,7 +22863,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7294] = 3, + [6392] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(808), 1, @@ -22493,1978 +22921,650 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7355] = 27, + [6453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(440), 1, - anon_sym_LT_GT, - ACTIONS(442), 1, - aux_sym_component_choice_list_token1, - ACTIONS(448), 1, - sym_string_literal, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(452), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1418), 1, - sym_expression, - STATE(1524), 1, - sym_parameter_association, - STATE(1909), 1, - sym_component_choice_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(538), 3, - sym_gnatprep_identifier, - sym_character_literal, - sym_target_name, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [7463] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(442), 1, - aux_sym_component_choice_list_token1, - ACTIONS(448), 1, - sym_string_literal, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(452), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1934), 1, - sym_component_choice_list, - STATE(2005), 1, - sym_value_sequence, - STATE(1343), 2, - sym_expression, - sym__named_record_component_association, - ACTIONS(538), 3, - sym_gnatprep_identifier, - sym_character_literal, - sym_target_name, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [7566] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(442), 1, - aux_sym_component_choice_list_token1, - ACTIONS(448), 1, - sym_string_literal, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(452), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1934), 1, - sym_component_choice_list, - STATE(2005), 1, - sym_value_sequence, - STATE(1529), 2, - sym_expression, - sym__named_record_component_association, - ACTIONS(538), 3, - sym_gnatprep_identifier, - sym_character_literal, - sym_target_name, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [7669] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(448), 1, - sym_string_literal, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(452), 1, - sym_identifier, - ACTIONS(810), 1, - aux_sym_component_choice_list_token1, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1114), 1, - sym_expression, - STATE(1343), 1, - sym__named_record_component_association, - STATE(1934), 1, - sym_component_choice_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(538), 3, - sym_gnatprep_identifier, - sym_character_literal, - sym_target_name, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [7774] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, ACTIONS(812), 1, sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1256), 1, - sym_parameter_specification, - STATE(1828), 1, - sym_expression, - STATE(1868), 1, - sym__parameter_specification_list, - STATE(1870), 1, - sym__defining_identifier_list, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, + ACTIONS(810), 52, + ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [7877] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, anon_sym_LBRACK, - ACTIONS(374), 1, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, aux_sym_primary_null_token1, - ACTIONS(442), 1, - aux_sym_component_choice_list_token1, - ACTIONS(448), 1, - sym_string_literal, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(452), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1528), 1, - sym_expression, - STATE(1529), 1, - sym__named_record_component_association, - STATE(1934), 1, - sym_component_choice_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(538), 3, - sym_gnatprep_identifier, - sym_character_literal, - sym_target_name, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [7982] = 26, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(372), 1, - aux_sym_relation_membership_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(814), 1, + ACTIONS(816), 1, sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(771), 1, - sym_null_exclusion, - STATE(980), 1, - sym__subtype_indication, - STATE(1339), 1, - sym_index_subtype_definition, - STATE(1709), 1, - sym__index_subtype_definition_list, - STATE(1711), 1, - sym__discrete_subtype_definition_list, - STATE(1894), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(791), 2, - sym__name, - sym_function_call, - STATE(1317), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(816), 4, + ACTIONS(814), 52, + ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(560), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [8086] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, anon_sym_LBRACK, - ACTIONS(372), 1, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, aux_sym_relation_membership_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(818), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(771), 1, - sym_null_exclusion, - STATE(980), 1, - sym__subtype_indication, - STATE(1256), 1, - sym_parameter_specification, - STATE(1868), 1, - sym__parameter_specification_list, - STATE(1870), 1, - sym__defining_identifier_list, - STATE(1894), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(500), 2, - sym__name, - sym_function_call, - STATE(1851), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(820), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(536), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [8190] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(822), 1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6575] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(820), 1, sym_identifier, + ACTIONS(818), 52, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6636] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(824), 1, - anon_sym_SEMI, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1407), 1, - sym_extended_return_object_declaration, - STATE(1976), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [8290] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(372), 1, - aux_sym_relation_membership_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(818), 1, sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(771), 1, - sym_null_exclusion, - STATE(980), 1, - sym__subtype_indication, - STATE(1256), 1, - sym_parameter_specification, - STATE(1868), 1, - sym__parameter_specification_list, - STATE(1870), 1, - sym__defining_identifier_list, - STATE(1894), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(500), 2, - sym__name, - sym_function_call, - STATE(1700), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(820), 4, + ACTIONS(822), 52, + ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(536), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [8394] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, anon_sym_LBRACK, - ACTIONS(374), 1, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(536), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1415), 1, - sym_pragma_argument_association, - STATE(1490), 1, - sym_expression, - STATE(1841), 1, - sym__aspect_mark, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [8494] = 24, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(826), 1, - sym_identifier, ACTIONS(828), 1, - sym_string_literal, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1516), 1, - sym_discriminant_association, - STATE(1517), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(538), 3, - sym_gnatprep_identifier, - sym_character_literal, - sym_target_name, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [8593] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, sym_identifier, - ACTIONS(830), 1, - aux_sym_component_choice_list_token1, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1173), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, + ACTIONS(826), 52, + ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [8690] = 23, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, ACTIONS(832), 1, - anon_sym_LT_GT, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1544), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, + sym_identifier, + ACTIONS(830), 52, + ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [8787] = 23, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - ACTIONS(834), 1, - aux_sym_component_choice_list_token1, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1364), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [8884] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, ACTIONS(836), 1, - aux_sym_delay_until_statement_token2, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1971), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, + sym_identifier, + ACTIONS(834), 52, + ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [8981] = 23, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - ACTIONS(838), 1, - anon_sym_LT_GT, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1742), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9078] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, ACTIONS(840), 1, - anon_sym_LT_GT, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1741), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, + sym_identifier, + ACTIONS(838), 52, + ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9175] = 23, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [6941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - ACTIONS(842), 1, - anon_sym_LT_GT, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1533), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9272] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, ACTIONS(844), 1, - aux_sym_component_choice_list_token1, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1364), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, + sym_identifier, + ACTIONS(842), 52, + ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9369] = 23, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - ACTIONS(846), 1, - anon_sym_LT_GT, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1393), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9466] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, ACTIONS(848), 1, - aux_sym_component_choice_list_token1, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1364), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, + sym_identifier, + ACTIONS(846), 52, + ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9563] = 23, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - ACTIONS(850), 1, - anon_sym_LT_GT, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1369), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9660] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, ACTIONS(852), 1, - anon_sym_LT_GT, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1543), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9757] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1334), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, + ACTIONS(850), 52, + ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9851] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1545), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9945] = 3, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7124] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(856), 1, sym_identifier, - ACTIONS(854), 47, + ACTIONS(854), 52, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -24482,6 +23582,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -24492,11 +23595,13 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -24512,64 +23617,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [10001] = 22, + [7185] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, + ACTIONS(370), 1, sym_numeric_literal, - ACTIONS(360), 1, + ACTIONS(372), 1, anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, ACTIONS(374), 1, - aux_sym_raise_expression_token1, + anon_sym_DASH, ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(384), 1, aux_sym_relation_membership_token1, - ACTIONS(540), 1, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(578), 1, sym_identifier, - STATE(508), 1, + ACTIONS(584), 1, + aux_sym_component_choice_list_token1, + STATE(537), 1, sym_unary_adding_operator, - STATE(528), 1, + STATE(546), 1, sym_term, - STATE(544), 1, + STATE(661), 1, sym__simple_expression, - STATE(1258), 1, - sym_expression, - STATE(2005), 1, + STATE(835), 1, + sym_null_exclusion, + STATE(1432), 1, + sym__subtype_indication, + STATE(1533), 1, + sym_discrete_choice, + STATE(2045), 1, sym_value_sequence, - STATE(573), 3, + STATE(522), 2, + sym__name, + sym_function_call, + STATE(1433), 2, + sym_range_g, + sym_expression, + STATE(607), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(538), 4, + ACTIONS(366), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, + STATE(524), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(489), 7, - sym__name, + STATE(478), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - sym_function_call, - STATE(506), 14, + STATE(528), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24584,12 +23699,12 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [10095] = 3, + [7294] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(860), 1, sym_identifier, - ACTIONS(858), 47, + ACTIONS(858), 52, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -24607,2153 +23722,448 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_use_clause_token2, aux_sym_subunit_token1, aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [10151] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1923), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10245] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1364), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10339] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1416), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10433] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1965), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10527] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1499), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10621] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1862), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10715] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(372), 1, - aux_sym_relation_membership_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(862), 1, - aux_sym_loop_parameter_specification_token1, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(771), 1, - sym_null_exclusion, - STATE(980), 1, - sym__subtype_indication, - STATE(1894), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(655), 2, - sym__name, - sym_function_call, - STATE(1071), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(354), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(451), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10813] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(866), 1, - sym_identifier, - ACTIONS(864), 47, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [10869] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1432), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10963] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1972), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(870), 1, - sym_identifier, - ACTIONS(868), 47, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [11113] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1282), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11207] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, - sym_identifier, - ACTIONS(872), 47, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [11263] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1635), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11357] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(878), 1, - sym_identifier, - ACTIONS(876), 47, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [11413] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1542), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11507] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1185), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11601] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1766), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11695] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1682), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11789] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1825), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11883] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(882), 1, - sym_identifier, - ACTIONS(880), 47, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [11939] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1541), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12033] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1142), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12127] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1977), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12221] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1567), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12315] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1918), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12409] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1513), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12503] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1610), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12597] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1714), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12691] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1804), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12785] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - ACTIONS(884), 1, + aux_sym_expression_token2, + aux_sym_expression_token3, aux_sym_expression_token4, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(638), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7355] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(864), 1, + sym_identifier, + ACTIONS(862), 52, + ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 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_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7416] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(868), 1, + sym_identifier, + ACTIONS(866), 52, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(872), 1, + sym_identifier, + ACTIONS(870), 52, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7538] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(876), 1, + sym_identifier, + ACTIONS(874), 52, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7599] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(880), 1, + sym_identifier, + ACTIONS(878), 52, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(884), 1, + sym_identifier, + ACTIONS(882), 52, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7721] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(492), 1, + anon_sym_LT_GT, + ACTIONS(494), 1, + aux_sym_component_choice_list_token1, + ACTIONS(500), 1, + sym_string_literal, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(506), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1441), 1, + sym_expression, + STATE(1558), 1, + sym_parameter_association, + STATE(1910), 1, + sym_component_choice_list, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(590), 3, + sym_gnatprep_identifier, + sym_character_literal, + sym_target_name, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(524), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(489), 7, + STATE(514), 7, sym__name, sym_selected_component, sym_slice, @@ -26761,7 +24171,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(506), 14, + STATE(528), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26776,128 +24186,298 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12879] = 22, + [7829] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, + ACTIONS(370), 1, sym_numeric_literal, - ACTIONS(360), 1, + ACTIONS(372), 1, anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, ACTIONS(374), 1, - aux_sym_raise_expression_token1, + anon_sym_DASH, ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, aux_sym_factor_abs_token1, - ACTIONS(380), 1, + ACTIONS(392), 1, aux_sym_allocator_token1, - ACTIONS(438), 1, + ACTIONS(490), 1, aux_sym_primary_null_token1, - ACTIONS(450), 1, + ACTIONS(494), 1, + aux_sym_component_choice_list_token1, + ACTIONS(500), 1, + sym_string_literal, + ACTIONS(502), 1, aux_sym_relation_membership_token1, - ACTIONS(540), 1, + ACTIONS(506), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1553), 1, + sym_expression, + STATE(1554), 1, + sym__named_record_component_association, + STATE(1942), 1, + sym_component_choice_list, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(590), 3, + sym_gnatprep_identifier, + sym_character_literal, + sym_target_name, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [7934] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(494), 1, + aux_sym_component_choice_list_token1, + ACTIONS(500), 1, + sym_string_literal, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(506), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1942), 1, + sym_component_choice_list, + STATE(2045), 1, + sym_value_sequence, + STATE(1554), 2, + sym_expression, + sym__named_record_component_association, + ACTIONS(590), 3, + sym_gnatprep_identifier, + sym_character_literal, + sym_target_name, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [8037] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(494), 1, + aux_sym_component_choice_list_token1, + ACTIONS(500), 1, + sym_string_literal, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(506), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1942), 1, + sym_component_choice_list, + STATE(2045), 1, + sym_value_sequence, + STATE(1391), 2, + sym_expression, + sym__named_record_component_association, + ACTIONS(590), 3, + sym_gnatprep_identifier, + sym_character_literal, + sym_target_name, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [8140] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(500), 1, + sym_string_literal, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(506), 1, sym_identifier, ACTIONS(886), 1, - aux_sym_expression_token2, - STATE(508), 1, + aux_sym_component_choice_list_token1, + STATE(537), 1, sym_unary_adding_operator, - STATE(528), 1, + STATE(546), 1, sym_term, - STATE(544), 1, + STATE(565), 1, sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(640), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12973] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1539), 1, + STATE(1107), 1, sym_expression, - STATE(2005), 1, + STATE(1391), 1, + sym__named_record_component_association, + STATE(1942), 1, + sym_component_choice_list, + STATE(2045), 1, sym_value_sequence, - STATE(573), 3, + ACTIONS(590), 3, + sym_gnatprep_identifier, + sym_character_literal, + sym_target_name, + STATE(607), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, + STATE(524), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(489), 7, + STATE(514), 7, sym__name, sym_selected_component, sym_slice, @@ -26905,7 +24485,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(506), 14, + STATE(528), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26920,56 +24500,62 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [13067] = 22, + [8245] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, + ACTIONS(370), 1, sym_numeric_literal, - ACTIONS(360), 1, + ACTIONS(372), 1, anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, ACTIONS(374), 1, - aux_sym_raise_expression_token1, + anon_sym_DASH, ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, aux_sym_factor_abs_token1, - ACTIONS(380), 1, + ACTIONS(392), 1, aux_sym_allocator_token1, - ACTIONS(438), 1, + ACTIONS(490), 1, aux_sym_primary_null_token1, - ACTIONS(450), 1, + ACTIONS(502), 1, aux_sym_relation_membership_token1, - ACTIONS(540), 1, + ACTIONS(888), 1, sym_identifier, - STATE(508), 1, + STATE(537), 1, sym_unary_adding_operator, - STATE(528), 1, + STATE(546), 1, sym_term, - STATE(544), 1, + STATE(565), 1, sym__simple_expression, - STATE(1182), 1, + STATE(1377), 1, + sym_parameter_specification, + STATE(1797), 1, sym_expression, - STATE(2005), 1, + STATE(1843), 1, + sym__parameter_specification_list, + STATE(1844), 1, + sym__defining_identifier_list, + STATE(2045), 1, sym_value_sequence, - STATE(573), 3, + STATE(607), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(538), 4, + ACTIONS(590), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, + STATE(524), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(489), 7, + STATE(514), 7, sym__name, sym_selected_component, sym_slice, @@ -26977,7 +24563,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(506), 14, + STATE(528), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26992,1874 +24578,70 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [13161] = 22, + [8348] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, + ACTIONS(370), 1, sym_numeric_literal, - ACTIONS(360), 1, + ACTIONS(372), 1, anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1984), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13255] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1803), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13349] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(378), 1, anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, + ACTIONS(384), 1, aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1916), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13443] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, + ACTIONS(388), 1, aux_sym_factor_abs_token1, - ACTIONS(380), 1, + ACTIONS(392), 1, aux_sym_allocator_token1, - ACTIONS(438), 1, + ACTIONS(490), 1, aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1474), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13537] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1134), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13631] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(890), 1, sym_identifier, - ACTIONS(888), 47, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [13687] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, + STATE(537), 1, sym_unary_adding_operator, - STATE(528), 1, + STATE(546), 1, sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1592), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13781] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1877), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13875] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1104), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13969] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1939), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14063] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1735), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14157] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(892), 47, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [14213] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1736), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14307] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1856), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14401] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1859), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14495] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(995), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14589] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(1654), 1, - sym_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(573), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(898), 1, - sym_identifier, - ACTIONS(896), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [14738] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(902), 1, - sym_identifier, - ACTIONS(900), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [14793] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(906), 1, - sym_identifier, - ACTIONS(904), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [14848] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(910), 1, - sym_identifier, - ACTIONS(908), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [14903] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(914), 1, - sym_identifier, - ACTIONS(912), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [14958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(918), 1, - sym_identifier, - ACTIONS(916), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [15013] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(922), 1, - sym_identifier, - ACTIONS(920), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [15068] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(926), 1, - sym_identifier, - ACTIONS(924), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [15123] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(930), 1, - sym_identifier, - ACTIONS(928), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [15178] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(934), 1, - sym_identifier, - ACTIONS(932), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [15233] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(938), 1, - sym_identifier, - ACTIONS(936), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [15288] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(942), 1, - sym_identifier, - ACTIONS(940), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [15343] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(372), 1, - aux_sym_relation_membership_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(944), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(771), 1, + STATE(835), 1, sym_null_exclusion, - STATE(980), 1, + STATE(1004), 1, sym__subtype_indication, - STATE(1894), 1, + STATE(1377), 1, + sym_parameter_specification, + STATE(1843), 1, + sym__parameter_specification_list, + STATE(1844), 1, + sym__defining_identifier_list, + STATE(1883), 1, sym__simple_expression, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - STATE(500), 2, + STATE(522), 2, sym__name, sym_function_call, - STATE(1684), 2, + STATE(1583), 2, sym__discrete_subtype_definition, sym_range_g, - ACTIONS(820), 4, + ACTIONS(892), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, + STATE(524), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(536), 5, + STATE(557), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(506), 14, + STATE(528), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -28874,12 +24656,3295 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [15438] = 3, + [8452] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(384), 1, + aux_sym_relation_membership_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(890), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(835), 1, + sym_null_exclusion, + STATE(1004), 1, + sym__subtype_indication, + STATE(1377), 1, + sym_parameter_specification, + STATE(1843), 1, + sym__parameter_specification_list, + STATE(1844), 1, + sym__defining_identifier_list, + STATE(1883), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(522), 2, + sym__name, + sym_function_call, + STATE(1816), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(892), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(557), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [8556] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(588), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1436), 1, + sym_pragma_argument_association, + STATE(1477), 1, + sym_expression, + STATE(1806), 1, + sym__aspect_mark, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [8656] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(384), 1, + aux_sym_relation_membership_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(894), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(835), 1, + sym_null_exclusion, + STATE(1004), 1, + sym__subtype_indication, + STATE(1208), 1, + sym_index_subtype_definition, + STATE(1592), 1, + sym__index_subtype_definition_list, + STATE(1593), 1, + sym__discrete_subtype_definition_list, + STATE(1883), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(833), 2, + sym__name, + sym_function_call, + STATE(1217), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(896), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(577), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [8760] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(898), 1, + sym_identifier, + ACTIONS(900), 1, + anon_sym_SEMI, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1410), 1, + sym_extended_return_object_declaration, + STATE(1946), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [8860] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(902), 1, + aux_sym_component_choice_list_token1, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1337), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [8957] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(904), 1, + anon_sym_LT_GT, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1526), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9054] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(906), 1, + aux_sym_component_choice_list_token1, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1234), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9151] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(908), 1, + aux_sym_component_choice_list_token1, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1234), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9248] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(910), 1, + anon_sym_LT_GT, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1556), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9345] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(912), 1, + anon_sym_LT_GT, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1575), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9442] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(914), 1, + anon_sym_LT_GT, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1778), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9539] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(916), 1, + sym_identifier, + ACTIONS(918), 1, + sym_string_literal, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1546), 1, + sym_discriminant_association, + STATE(1547), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(590), 3, + sym_gnatprep_identifier, + sym_character_literal, + sym_target_name, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9638] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(920), 1, + anon_sym_LT_GT, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1228), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9735] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(922), 1, + anon_sym_LT_GT, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1569), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9832] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(924), 1, + anon_sym_LT_GT, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1777), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9929] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(926), 1, + aux_sym_delay_until_statement_token2, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1999), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10026] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(928), 1, + aux_sym_component_choice_list_token1, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1234), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10123] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1543), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10217] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(932), 1, + sym_identifier, + ACTIONS(930), 47, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [10273] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1494), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10367] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1118), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10461] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1352), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10555] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1812), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10649] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1996), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10743] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1747), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10837] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1568), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10931] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1244), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11025] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1749), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11119] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(2000), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(936), 1, + sym_identifier, + ACTIONS(934), 47, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [11269] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1350), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11363] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1771), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11457] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1234), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11551] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1243), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11645] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1772), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11739] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1902), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(940), 1, + sym_identifier, + ACTIONS(938), 47, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [11889] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1605), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11983] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(2009), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12077] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(944), 1, + sym_identifier, + ACTIONS(942), 47, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [12133] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1958), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12227] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1849), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12321] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1146), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12415] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1793), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12509] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1745), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12603] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(2024), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12697] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(948), 1, sym_identifier, - ACTIONS(946), 46, + ACTIONS(946), 47, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -28888,6 +27953,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, @@ -28926,12 +27992,734 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15493] = 3, + [12753] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(952), 1, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, sym_identifier, - ACTIONS(950), 46, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1035), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12847] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1149), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12941] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(384), 1, + aux_sym_relation_membership_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(578), 1, + sym_identifier, + ACTIONS(950), 1, + aux_sym_loop_parameter_specification_token1, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(835), 1, + sym_null_exclusion, + STATE(1004), 1, + sym__subtype_indication, + STATE(1883), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(679), 2, + sym__name, + sym_function_call, + STATE(1050), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(366), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(478), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13039] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1904), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13133] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1912), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13227] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1922), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13321] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1443), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13415] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1437), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13509] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1832), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13603] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1831), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + sym_identifier, + ACTIONS(952), 47, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -28940,6 +28728,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, @@ -28978,12 +28767,1035 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15548] = 3, + [13753] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, ACTIONS(956), 1, + aux_sym_expression_token2, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(677), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13847] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, sym_identifier, - ACTIONS(954), 46, + ACTIONS(958), 1, + aux_sym_expression_token4, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(683), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13941] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1923), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14035] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1481), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14129] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1948), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14223] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1351), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14317] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1662), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(962), 1, + sym_identifier, + ACTIONS(960), 47, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14467] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1931), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14561] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1678), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14655] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(966), 1, + sym_identifier, + ACTIONS(964), 47, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14711] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1666), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 1, + sym_identifier, + ACTIONS(968), 47, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14861] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1731), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14955] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(1769), 1, + sym_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(607), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [15049] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 1, + sym_identifier, + ACTIONS(972), 46, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -29030,12 +29842,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15603] = 3, + [15104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, + ACTIONS(978), 1, sym_identifier, - ACTIONS(958), 46, + ACTIONS(976), 46, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -29082,12 +29894,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15658] = 3, + [15159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(964), 1, + ACTIONS(982), 1, sym_identifier, - ACTIONS(962), 46, + ACTIONS(980), 46, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -29134,12 +29946,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15713] = 3, + [15214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(968), 1, + ACTIONS(986), 1, sym_identifier, - ACTIONS(966), 46, + ACTIONS(984), 46, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -29186,12 +29998,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15768] = 3, + [15269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(990), 1, sym_identifier, - ACTIONS(970), 46, + ACTIONS(988), 46, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -29238,12 +30050,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15823] = 3, + [15324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(976), 1, + ACTIONS(994), 1, sym_identifier, - ACTIONS(974), 46, + ACTIONS(992), 46, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -29290,220 +30102,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15878] = 3, + [15379] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(980), 1, - sym_identifier, - ACTIONS(978), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - 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(384), 1, aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 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_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [15933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(984), 1, - sym_identifier, - ACTIONS(982), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [15988] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(988), 1, - sym_identifier, - ACTIONS(986), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [16043] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(992), 1, - sym_identifier, - ACTIONS(990), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [16098] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(996), 1, sym_identifier, - ACTIONS(994), 46, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(835), 1, + sym_null_exclusion, + STATE(1004), 1, + sym__subtype_indication, + STATE(1883), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(522), 2, + sym__name, + sym_function_call, + STATE(1539), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(892), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(557), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [15474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 1, + sym_identifier, + ACTIONS(988), 46, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -29550,7 +30226,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16153] = 3, + [15529] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1000), 1, @@ -29602,7 +30278,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16208] = 3, + [15584] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1004), 1, @@ -29654,7 +30330,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16263] = 3, + [15639] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1008), 1, @@ -29706,7 +30382,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16318] = 3, + [15694] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1012), 1, @@ -29758,7 +30434,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16373] = 3, + [15749] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1016), 1, @@ -29810,59 +30486,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16428] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(970), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [16483] = 3, + [15804] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1020), 1, @@ -29914,7 +30538,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16538] = 3, + [15859] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1024), 1, @@ -29966,7 +30590,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16593] = 3, + [15914] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1028), 1, @@ -30018,7 +30642,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16648] = 3, + [15969] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1032), 1, @@ -30070,7 +30694,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16703] = 3, + [16024] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1036), 1, @@ -30122,7 +30746,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, + [16079] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1040), 1, @@ -30174,7 +30798,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16813] = 3, + [16134] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1044), 1, @@ -30226,7 +30850,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16868] = 3, + [16189] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1048), 1, @@ -30278,7 +30902,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16923] = 3, + [16244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1048), 1, + sym_identifier, + ACTIONS(1046), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16299] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1052), 1, @@ -30330,7 +31006,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16978] = 3, + [16354] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(684), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [16445] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1056), 1, @@ -30382,7 +31128,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17033] = 3, + [16500] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1060), 1, @@ -30434,7 +31180,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17088] = 3, + [16555] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1020), 1, + sym_identifier, + ACTIONS(1018), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16610] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1064), 1, @@ -30486,7 +31284,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17143] = 3, + [16665] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1068), 1, @@ -30538,77 +31336,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17198] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(637), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [17289] = 3, + [16720] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1072), 1, @@ -30660,7 +31388,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17344] = 3, + [16775] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(384), 1, + aux_sym_relation_membership_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(996), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(835), 1, + sym_null_exclusion, + STATE(1004), 1, + sym__subtype_indication, + STATE(1883), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(522), 2, + sym__name, + sym_function_call, + STATE(1565), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(892), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(557), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [16870] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1076), 1, @@ -30712,7 +31512,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17399] = 3, + [16925] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1080), 1, @@ -30764,7 +31564,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17454] = 3, + [16980] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1084), 1, @@ -30816,7 +31616,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17509] = 3, + [17035] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1088), 1, @@ -30868,7 +31668,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17564] = 3, + [17090] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1092), 1, @@ -30920,7 +31720,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17619] = 3, + [17145] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1096), 1, @@ -30972,7 +31772,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17674] = 3, + [17200] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1100), 1, @@ -31024,7 +31824,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17729] = 3, + [17255] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, @@ -31076,7 +31876,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17784] = 3, + [17310] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1108), 1, @@ -31128,7 +31928,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17839] = 3, + [17365] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1112), 1, @@ -31180,7 +31980,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17894] = 3, + [17420] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1116), 1, @@ -31232,7 +32032,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17949] = 3, + [17475] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1120), 1, @@ -31284,7 +32084,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18004] = 3, + [17530] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1124), 1, @@ -31336,7 +32136,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18059] = 3, + [17585] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1128), 1, @@ -31388,7 +32188,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18114] = 3, + [17640] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1132), 1, @@ -31440,7 +32240,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18169] = 3, + [17695] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1136), 1, @@ -31492,79 +32292,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18224] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(372), 1, - aux_sym_relation_membership_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(944), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(771), 1, - sym_null_exclusion, - STATE(1414), 1, - sym__subtype_indication, - STATE(1894), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(500), 2, - sym__name, - sym_function_call, - STATE(1520), 2, - sym_range_g, - sym__discrete_range, - ACTIONS(820), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(536), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [18319] = 3, + [17750] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1140), 1, @@ -31616,7 +32344,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18374] = 3, + [17805] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1144), 1, @@ -31668,7 +32396,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18429] = 3, + [17860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1048), 1, + sym_identifier, + ACTIONS(1046), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17915] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1148), 1, @@ -31720,7 +32500,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18484] = 3, + [17970] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1048), 1, + sym_identifier, + ACTIONS(1046), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18025] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1152), 1, @@ -31772,7 +32604,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18539] = 3, + [18080] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1156), 1, @@ -31824,7 +32656,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18594] = 3, + [18135] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1160), 1, @@ -31876,7 +32708,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18649] = 3, + [18190] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1164), 1, @@ -31928,7 +32760,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18704] = 3, + [18245] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1168), 1, @@ -31980,59 +32812,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18759] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1160), 1, - sym_identifier, - ACTIONS(1158), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [18814] = 3, + [18300] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1172), 1, @@ -32084,7 +32864,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18869] = 3, + [18355] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1176), 1, @@ -32136,7 +32916,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18924] = 3, + [18410] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1180), 1, @@ -32188,7 +32968,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18979] = 3, + [18465] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1184), 1, @@ -32240,7 +33020,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19034] = 3, + [18520] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1188), 1, @@ -32292,7 +33072,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19089] = 3, + [18575] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(978), 1, + sym_identifier, + ACTIONS(976), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18630] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1192), 1, @@ -32344,7 +33176,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19144] = 3, + [18685] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1196), 1, @@ -32396,7 +33228,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19199] = 3, + [18740] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1200), 1, @@ -32448,7 +33280,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19254] = 3, + [18795] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1204), 1, @@ -32500,79 +33332,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19309] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(372), 1, - aux_sym_relation_membership_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(944), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(771), 1, - sym_null_exclusion, - STATE(980), 1, - sym__subtype_indication, - STATE(1894), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(500), 2, - sym__name, - sym_function_call, - STATE(1428), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(820), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(536), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [19404] = 3, + [18850] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1208), 1, @@ -32624,7 +33384,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19459] = 3, + [18905] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1212), 1, @@ -32676,79 +33436,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19514] = 23, + [18960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(372), 1, - aux_sym_relation_membership_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(944), 1, + ACTIONS(1192), 1, sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(771), 1, - sym_null_exclusion, - STATE(980), 1, - sym__subtype_indication, - STATE(1894), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(500), 2, - sym__name, - sym_function_call, - STATE(1969), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(820), 4, + ACTIONS(1190), 46, + ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(536), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [19609] = 3, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19015] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1216), 1, @@ -32800,7 +33540,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19664] = 3, + [19070] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1220), 1, @@ -32852,7 +33592,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19719] = 3, + [19125] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1224), 1, @@ -32904,7 +33644,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19774] = 3, + [19180] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1228), 1, @@ -32956,7 +33696,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19829] = 3, + [19235] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1232), 1, @@ -33008,7 +33748,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19884] = 3, + [19290] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1236), 1, @@ -33060,7 +33800,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19939] = 3, + [19345] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1240), 1, @@ -33112,7 +33852,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19994] = 3, + [19400] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1244), 1, @@ -33164,7 +33904,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20049] = 3, + [19455] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1248), 1, @@ -33216,7 +33956,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20104] = 3, + [19510] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1252), 1, @@ -33268,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, - [20159] = 3, + [19565] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1256), 1, @@ -33320,7 +34060,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20214] = 3, + [19620] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1260), 1, @@ -33372,7 +34112,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20269] = 3, + [19675] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1264), 1, @@ -33424,7 +34164,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20324] = 3, + [19730] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -33476,7 +34216,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20379] = 3, + [19785] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1272), 1, @@ -33528,7 +34268,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20434] = 3, + [19840] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1276), 1, @@ -33580,7 +34320,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20489] = 3, + [19895] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1280), 1, @@ -33632,7 +34372,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20544] = 3, + [19950] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1284), 1, @@ -33684,7 +34424,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20599] = 3, + [20005] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1288), 1, @@ -33736,7 +34476,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20654] = 3, + [20060] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1288), 1, + sym_identifier, + ACTIONS(1286), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20115] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1292), 1, @@ -33788,7 +34580,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20709] = 3, + [20170] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1296), 1, @@ -33840,7 +34632,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20764] = 3, + [20225] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1300), 1, @@ -33892,7 +34684,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20819] = 3, + [20280] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1304), 1, @@ -33944,59 +34736,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20874] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1160), 1, - sym_identifier, - ACTIONS(1158), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [20929] = 3, + [20335] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1308), 1, @@ -34048,1447 +34788,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20984] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 1, - sym_identifier, - ACTIONS(1310), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21039] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 1, - sym_identifier, - ACTIONS(1314), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21094] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 1, - sym_identifier, - ACTIONS(1318), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21149] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 1, - sym_identifier, - ACTIONS(1322), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21204] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 1, - sym_identifier, - ACTIONS(1314), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21259] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1160), 1, - sym_identifier, - ACTIONS(1158), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21314] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 1, - sym_identifier, - ACTIONS(1326), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21369] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 1, - sym_identifier, - ACTIONS(1330), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21424] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 1, - sym_identifier, - ACTIONS(1274), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21479] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 1, - sym_identifier, - ACTIONS(1334), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21534] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 1, - sym_identifier, - ACTIONS(1338), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21589] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 1, - sym_identifier, - ACTIONS(1342), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21644] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1016), 1, - sym_identifier, - ACTIONS(1014), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21699] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 1, - sym_identifier, - ACTIONS(1346), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21754] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1352), 1, - sym_identifier, - ACTIONS(1350), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21809] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1356), 1, - sym_identifier, - ACTIONS(1354), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21864] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(643), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [21955] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 1, - sym_identifier, - ACTIONS(1346), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22010] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1360), 1, - sym_identifier, - ACTIONS(1358), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22065] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1364), 1, - sym_identifier, - ACTIONS(1362), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22120] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1368), 1, - sym_identifier, - ACTIONS(1366), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22175] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1372), 1, - sym_identifier, - ACTIONS(1370), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22230] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1376), 1, - sym_identifier, - ACTIONS(1374), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22285] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(544), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(641), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [22376] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1380), 1, - sym_identifier, - ACTIONS(1378), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22431] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1384), 1, - sym_identifier, - ACTIONS(1382), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22486] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1352), 1, - sym_identifier, - ACTIONS(1350), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22541] = 3, + [20390] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -35540,12 +34840,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22596] = 3, + [20445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1388), 1, + ACTIONS(1312), 1, sym_identifier, - ACTIONS(1386), 46, + ACTIONS(1310), 46, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -35592,12 +34892,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22651] = 3, + [20500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1392), 1, + ACTIONS(1316), 1, sym_identifier, - ACTIONS(1390), 46, + ACTIONS(1314), 46, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -35644,12 +34944,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22706] = 3, + [20555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1396), 1, + ACTIONS(1320), 1, sym_identifier, - ACTIONS(1394), 46, + ACTIONS(1318), 46, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -35696,12 +34996,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22761] = 3, + [20610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 1, + ACTIONS(1304), 1, sym_identifier, - ACTIONS(1398), 46, + ACTIONS(1302), 46, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -35748,371 +35048,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22816] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1404), 1, - sym_identifier, - ACTIONS(1402), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22871] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1408), 1, - sym_identifier, - ACTIONS(1406), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22926] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - sym_identifier, - ACTIONS(1410), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22981] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1416), 1, - sym_identifier, - ACTIONS(1414), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23036] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1420), 1, - sym_identifier, - ACTIONS(1418), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23091] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1424), 1, - sym_identifier, - ACTIONS(1422), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23146] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1384), 1, - sym_identifier, - ACTIONS(1382), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23201] = 3, + [20665] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1324), 1, @@ -36164,64 +35100,478 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23256] = 23, + [20720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(372), 1, - aux_sym_relation_membership_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(528), 1, + ACTIONS(1328), 1, sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(771), 1, - sym_null_exclusion, - STATE(980), 1, - sym__subtype_indication, - STATE(1894), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(648), 2, - sym__name, - sym_function_call, - STATE(1033), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(354), 4, + ACTIONS(1326), 46, + ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20775] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1332), 1, + sym_identifier, + ACTIONS(1330), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20830] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1336), 1, + sym_identifier, + ACTIONS(1334), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20885] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1340), 1, + sym_identifier, + ACTIONS(1338), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20940] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1344), 1, + sym_identifier, + ACTIONS(1342), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20995] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 1, + sym_identifier, + ACTIONS(1346), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21050] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 1, + sym_identifier, + ACTIONS(1350), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21105] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1356), 1, + sym_identifier, + ACTIONS(1354), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21160] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(681), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(451), 5, + STATE(514), 7, + sym__name, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(506), 14, + sym_function_call, + STATE(528), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -36236,12 +35586,82 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [23351] = 3, + [21251] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(386), 1, + aux_sym_raise_expression_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, sym_identifier, - ACTIONS(1426), 46, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(565), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(682), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [21342] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 1, + sym_identifier, + ACTIONS(1358), 46, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -36288,527 +35708,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23406] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 1, - sym_identifier, - ACTIONS(1430), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23461] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - sym_identifier, - ACTIONS(1230), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23516] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1076), 1, - sym_identifier, - ACTIONS(1074), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23571] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1436), 1, - sym_identifier, - ACTIONS(1434), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23626] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1440), 1, - sym_identifier, - ACTIONS(1438), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23681] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - sym_identifier, - ACTIONS(1442), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23736] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1448), 1, - sym_identifier, - ACTIONS(1446), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23791] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - sym_identifier, - ACTIONS(1450), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23846] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1456), 1, - sym_identifier, - ACTIONS(1454), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23901] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1460), 1, - sym_identifier, - ACTIONS(1458), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23956] = 3, + [21397] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1364), 1, @@ -36860,7 +35760,1483 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24011] = 3, + [21452] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1364), 1, + sym_identifier, + ACTIONS(1362), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1368), 1, + sym_identifier, + ACTIONS(1366), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1372), 1, + sym_identifier, + ACTIONS(1370), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1376), 1, + sym_identifier, + ACTIONS(1374), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21672] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1380), 1, + sym_identifier, + ACTIONS(1378), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21727] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1384), 1, + sym_identifier, + ACTIONS(1382), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21782] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1388), 1, + sym_identifier, + ACTIONS(1386), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21837] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1392), 1, + sym_identifier, + ACTIONS(1390), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1396), 1, + sym_identifier, + ACTIONS(1394), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21947] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1400), 1, + sym_identifier, + ACTIONS(1398), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1404), 1, + sym_identifier, + ACTIONS(1402), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22057] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1408), 1, + sym_identifier, + ACTIONS(1406), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22112] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1412), 1, + sym_identifier, + ACTIONS(1410), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22167] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1416), 1, + sym_identifier, + ACTIONS(1414), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22222] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1184), 1, + sym_identifier, + ACTIONS(1182), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22277] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + sym_identifier, + ACTIONS(1418), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22332] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1422), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22387] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + sym_identifier, + ACTIONS(1426), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22442] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1432), 1, + sym_identifier, + ACTIONS(1430), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1436), 1, + sym_identifier, + ACTIONS(1434), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22552] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(384), 1, + aux_sym_relation_membership_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(996), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(835), 1, + sym_null_exclusion, + STATE(1515), 1, + sym__subtype_indication, + STATE(1883), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(522), 2, + sym__name, + sym_function_call, + STATE(1550), 2, + sym_range_g, + sym__discrete_range, + ACTIONS(892), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(557), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [22647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1440), 1, + sym_identifier, + ACTIONS(1438), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22702] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1444), 1, + sym_identifier, + ACTIONS(1442), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1448), 1, + sym_identifier, + ACTIONS(1446), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1280), 1, + sym_identifier, + ACTIONS(1278), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22867] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1452), 1, + sym_identifier, + ACTIONS(1450), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1456), 1, + sym_identifier, + ACTIONS(1454), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1460), 1, + sym_identifier, + ACTIONS(1458), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [23032] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1464), 1, @@ -36912,7 +37288,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24066] = 3, + [23087] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1468), 1, @@ -36964,7 +37340,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24121] = 3, + [23142] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1460), 1, + sym_identifier, + ACTIONS(1458), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [23197] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1472), 1, @@ -37016,7 +37444,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24176] = 3, + [23252] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1476), 1, @@ -37068,7 +37496,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24231] = 3, + [23307] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1480), 1, @@ -37120,7 +37548,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24286] = 3, + [23362] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1484), 1, @@ -37172,7 +37600,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24341] = 3, + [23417] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1488), 1, @@ -37224,7 +37652,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24396] = 3, + [23472] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1492), 1, @@ -37276,7 +37704,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24451] = 3, + [23527] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1496), 1, @@ -37328,7 +37756,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24506] = 3, + [23582] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1500), 1, @@ -37380,7 +37808,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24561] = 3, + [23637] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1504), 1, @@ -37432,7 +37860,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24616] = 3, + [23692] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(384), 1, + aux_sym_relation_membership_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(996), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(835), 1, + sym_null_exclusion, + STATE(1004), 1, + sym__subtype_indication, + STATE(1883), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(522), 2, + sym__name, + sym_function_call, + STATE(2015), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(892), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(557), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [23787] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1508), 1, @@ -37484,7 +37984,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24671] = 3, + [23842] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1512), 1, @@ -37536,7 +38036,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24726] = 3, + [23897] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1516), 1, @@ -37588,7 +38088,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24781] = 3, + [23952] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1520), 1, @@ -37640,316 +38140,636 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24836] = 3, + [24007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1522), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1524), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [24890] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1526), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1528), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [24944] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1530), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1532), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [24998] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1534), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1536), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [25052] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1540), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [25106] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(1542), 1, + ACTIONS(1524), 1, sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(601), 1, - sym__simple_expression, - STATE(606), 1, - sym_membership_choice_list, - STATE(2005), 1, - sym_value_sequence, - STATE(600), 2, - sym_range_g, - sym__membership_choice, - ACTIONS(446), 4, + ACTIONS(1522), 46, + ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [24062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1528), 1, + sym_identifier, + ACTIONS(1526), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [24117] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1532), 1, + sym_identifier, + ACTIONS(1530), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [24172] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1534), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [24227] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1540), 1, + sym_identifier, + ACTIONS(1538), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [24282] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1544), 1, + sym_identifier, + ACTIONS(1542), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [24337] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1548), 1, + sym_identifier, + ACTIONS(1546), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [24392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1552), 1, + sym_identifier, + ACTIONS(1550), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [24447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1556), 1, + sym_identifier, + ACTIONS(1554), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [24502] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1560), 1, + sym_identifier, + ACTIONS(1558), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [24557] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 1, + sym_identifier, + ACTIONS(1562), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [24612] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(384), 1, + aux_sym_relation_membership_token1, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(578), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(835), 1, + sym_null_exclusion, + STATE(1004), 1, + sym__subtype_indication, + STATE(1883), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(680), 2, + sym__name, + sym_function_call, + STATE(1040), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(366), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(500), 7, - sym__name, + STATE(478), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - sym_function_call, - STATE(506), 14, + STATE(528), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -37964,540 +38784,478 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [25196] = 3, + [24707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1544), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1546), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, + ACTIONS(1568), 1, + sym_identifier, + ACTIONS(1566), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, aux_sym_iterated_element_association_token2, - 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_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, aux_sym_loop_statement_token1, - [25250] = 3, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [24762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1548), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1550), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, + ACTIONS(1572), 1, + sym_identifier, + ACTIONS(1570), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, aux_sym_iterated_element_association_token2, - 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_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, aux_sym_loop_statement_token1, - [25304] = 3, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [24817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1552), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1554), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, + ACTIONS(1576), 1, + sym_identifier, + ACTIONS(1574), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, aux_sym_iterated_element_association_token2, - 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_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, aux_sym_loop_statement_token1, - [25358] = 3, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [24872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1556), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1558), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, + ACTIONS(1580), 1, + sym_identifier, + ACTIONS(1578), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, aux_sym_iterated_element_association_token2, - 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_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, aux_sym_loop_statement_token1, - [25412] = 3, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [24927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1560), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1562), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, + ACTIONS(1584), 1, + sym_identifier, + ACTIONS(1582), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, aux_sym_iterated_element_association_token2, - 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_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, aux_sym_loop_statement_token1, - [25466] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1564), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1566), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [25520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1568), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1570), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [25574] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1572), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1574), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [25628] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1576), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1578), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [25682] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1580), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1582), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [25736] = 11, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [24982] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1588), 1, - anon_sym_LPAREN, - ACTIONS(1594), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1596), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1600), 1, - aux_sym_range_attribute_designator_token1, - STATE(751), 1, - sym__parenthesized_expression, - ACTIONS(1598), 3, - anon_sym_SEMI, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - ACTIONS(1591), 5, + sym_identifier, + ACTIONS(1586), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - anon_sym_PIPE, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, aux_sym_loop_statement_token1, - ACTIONS(1584), 7, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [25037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1592), 1, + sym_identifier, + ACTIONS(1590), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [25092] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1596), 1, + sym_identifier, + ACTIONS(1594), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [25147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1524), 1, + sym_identifier, + ACTIONS(1522), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [25202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1598), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -38505,15 +39263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - STATE(745), 7, - sym_discriminant_constraint, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(1586), 19, + ACTIONS(1600), 39, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38523,17 +39273,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rem, sym_tick, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, aux_sym_with_clause_token2, + anon_sym_PIPE, anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, aux_sym_expression_token1, + aux_sym_expression_token2, aux_sym_expression_token3, + aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [25806] = 3, + 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, + [25256] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1602), 7, @@ -38584,7 +39354,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [25860] = 3, + [25310] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1606), 7, @@ -38635,7 +39405,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [25914] = 3, + [25364] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1610), 7, @@ -38686,7 +39456,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [25968] = 3, + [25418] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1614), 7, @@ -38737,7 +39507,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [26022] = 3, + [25472] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1618), 7, @@ -38788,143 +39558,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [26076] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(1542), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(601), 1, - sym__simple_expression, - STATE(608), 1, - sym_membership_choice_list, - STATE(2005), 1, - sym_value_sequence, - STATE(600), 2, - sym_range_g, - sym__membership_choice, - ACTIONS(446), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(500), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [26166] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(1542), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(601), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - STATE(605), 2, - sym_range_g, - sym__membership_choice, - ACTIONS(446), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(500), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [26253] = 3, + [25526] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1622), 7, @@ -38935,7 +39569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1624), 38, + ACTIONS(1624), 39, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38953,6 +39587,7 @@ 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_token2, aux_sym_attribute_designator_token3, anon_sym_SEMI, aux_sym_package_specification_token2, @@ -38974,7 +39609,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [26306] = 3, + [25580] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1626), 7, @@ -38985,7 +39620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1628), 38, + ACTIONS(1628), 39, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -39003,6 +39638,7 @@ 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_token2, aux_sym_attribute_designator_token3, anon_sym_SEMI, aux_sym_package_specification_token2, @@ -39024,318 +39660,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [26359] = 3, + [25634] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1630), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1632), 38, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [26412] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(1642), 1, - anon_sym_LPAREN, - STATE(460), 1, - sym_actual_parameter_part, - STATE(505), 1, - sym_index_constraint, - ACTIONS(1634), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1636), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [26474] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, + ACTIONS(370), 1, sym_numeric_literal, - ACTIONS(360), 1, + ACTIONS(372), 1, anon_sym_PLUS, - ACTIONS(362), 1, + ACTIONS(374), 1, anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, aux_sym_factor_abs_token1, - ACTIONS(380), 1, + ACTIONS(392), 1, aux_sym_allocator_token1, - ACTIONS(438), 1, + ACTIONS(490), 1, aux_sym_primary_null_token1, - ACTIONS(450), 1, + ACTIONS(502), 1, aux_sym_relation_membership_token1, - ACTIONS(1644), 1, + ACTIONS(1630), 1, sym_identifier, - STATE(508), 1, + STATE(537), 1, sym_unary_adding_operator, - STATE(528), 1, + STATE(546), 1, sym_term, - STATE(1896), 1, + STATE(618), 1, sym__simple_expression, - STATE(1897), 1, - sym_chunk_specification, - STATE(2005), 1, + STATE(627), 1, + sym_membership_choice_list, + STATE(2045), 1, sym_value_sequence, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [26560] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1648), 1, - sym_identifier, - ACTIONS(1646), 43, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26612] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1652), 1, - sym_identifier, - ACTIONS(1650), 43, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26664] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(1542), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(697), 1, + STATE(617), 2, sym_range_g, - STATE(1894), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(446), 4, + sym__membership_choice, + ACTIONS(498), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, + STATE(524), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(500), 7, + STATE(522), 7, sym__name, sym_selected_component, sym_slice, @@ -39343,7 +39714,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(506), 14, + STATE(528), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -39358,664 +39729,676 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [26750] = 3, + [25724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1656), 1, + ACTIONS(1632), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1634), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [25778] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1636), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1638), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [25832] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(1630), 1, sym_identifier, - ACTIONS(1654), 43, - ts_builtin_sym_end, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(618), 1, + sym__simple_expression, + STATE(632), 1, + sym_membership_choice_list, + STATE(2045), 1, + sym_value_sequence, + STATE(617), 2, + sym_range_g, + sym__membership_choice, + ACTIONS(498), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26802] = 3, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(522), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [25922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1660), 1, - sym_identifier, - ACTIONS(1658), 43, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, + ACTIONS(1640), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1642), 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, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, + 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, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, + 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_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, + aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26854] = 3, + [25976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1664), 1, - sym_identifier, - ACTIONS(1662), 43, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, + ACTIONS(1644), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1646), 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, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, + 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, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, + 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_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, + aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26906] = 3, + [26030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1668), 1, - sym_identifier, - ACTIONS(1666), 43, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, + ACTIONS(1648), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1650), 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, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, + 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, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, + 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_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, + aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26958] = 3, + [26084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1672), 1, - sym_identifier, - ACTIONS(1670), 43, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, + ACTIONS(1652), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1654), 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, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, + 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, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, + 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_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, + aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [27010] = 3, + [26138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1676), 1, - sym_identifier, - ACTIONS(1674), 43, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, + ACTIONS(1656), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1658), 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, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, + 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, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, + 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_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, + aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [27062] = 3, + [26192] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1660), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1662), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [26246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1664), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1666), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [26300] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1670), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [26354] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1672), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1674), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [26408] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1680), 1, - sym_identifier, - ACTIONS(1678), 43, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [27114] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1684), 1, - sym_identifier, - ACTIONS(1682), 43, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [27166] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1688), 1, - sym_identifier, - ACTIONS(1686), 43, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [27218] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1692), 1, - sym_identifier, - ACTIONS(1690), 43, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [27270] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1696), 1, - sym_identifier, - ACTIONS(1694), 43, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [27322] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1700), 1, - sym_identifier, - ACTIONS(1698), 43, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [27374] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1704), 1, - sym_identifier, - ACTIONS(1702), 43, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [27426] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(1642), 1, anon_sym_LPAREN, - STATE(460), 1, - sym_actual_parameter_part, - STATE(516), 1, - sym_index_constraint, - ACTIONS(1706), 6, + ACTIONS(1686), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1688), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1692), 1, + aux_sym_range_attribute_designator_token1, + STATE(722), 1, + sym__parenthesized_expression, + ACTIONS(1690), 3, + anon_sym_SEMI, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + ACTIONS(1683), 5, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_PIPE, + aux_sym_loop_statement_token1, + ACTIONS(1676), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1708), 33, + anon_sym_DOT, + STATE(764), 7, + sym_discriminant_constraint, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(1678), 19, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -40023,10 +40406,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_mod, anon_sym_rem, + sym_tick, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, aux_sym_chunk_specification_token1, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + [26478] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1694), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1696), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [26532] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(1630), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(618), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + STATE(644), 2, + sym_range_g, + sym__membership_choice, + ACTIONS(498), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(522), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [26619] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1698), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1700), 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, @@ -40046,79 +40580,118 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, anon_sym_STAR_STAR, anon_sym_COLON_EQ, + aux_sym_at_clause_token1, aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27488] = 19, + [26672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, + ACTIONS(1702), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, - ACTIONS(364), 1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1704), 38, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(668), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [27571] = 3, + 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, + [26725] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1706), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1708), 38, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [26778] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1712), 1, sym_identifier, - ACTIONS(1710), 42, + ACTIONS(1710), 43, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -40129,6 +40702,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iterated_element_association_token2, aux_sym_compilation_unit_token1, aux_sym_package_specification_token1, + aux_sym_package_specification_token3, aux_sym_with_clause_token1, aux_sym_with_clause_token2, aux_sym_use_clause_token2, @@ -40161,204 +40735,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27622] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(666), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [27705] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(1449), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [27788] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(585), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [27871] = 3, + [26830] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1716), 1, sym_identifier, - ACTIONS(1714), 42, + ACTIONS(1714), 43, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -40369,6 +40751,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iterated_element_association_token2, aux_sym_compilation_unit_token1, aux_sym_package_specification_token1, + aux_sym_package_specification_token3, aux_sym_with_clause_token1, aux_sym_with_clause_token2, aux_sym_use_clause_token2, @@ -40401,12 +40784,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27922] = 3, + [26882] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1720), 1, sym_identifier, - ACTIONS(1718), 42, + ACTIONS(1718), 43, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -40417,6 +40800,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iterated_element_association_token2, aux_sym_compilation_unit_token1, aux_sym_package_specification_token1, + aux_sym_package_specification_token3, aux_sym_with_clause_token1, aux_sym_with_clause_token2, aux_sym_use_clause_token2, @@ -40449,73 +40833,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27973] = 3, + [26934] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1724), 1, - sym_identifier, - ACTIONS(1722), 42, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [28024] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, + ACTIONS(1726), 1, sym_tick, - ACTIONS(1640), 1, + ACTIONS(1728), 1, anon_sym_DOT, ACTIONS(1730), 1, anon_sym_LPAREN, - STATE(460), 1, + STATE(483), 1, sym_actual_parameter_part, - ACTIONS(1726), 6, + STATE(533), 1, + sym_index_constraint, + ACTIONS(1722), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1728), 33, + ACTIONS(1724), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -40549,204 +40887,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, - [28083] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(1806), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28166] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(1563), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28249] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(612), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28332] = 3, + [26996] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1734), 1, sym_identifier, - ACTIONS(1732), 42, + ACTIONS(1732), 43, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -40757,6 +40903,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iterated_element_association_token2, aux_sym_compilation_unit_token1, aux_sym_package_specification_token1, + aux_sym_package_specification_token3, aux_sym_with_clause_token1, aux_sym_with_clause_token2, aux_sym_use_clause_token2, @@ -40789,140 +40936,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [28383] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(1794), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28466] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(616), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28549] = 3, + [27048] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1738), 1, sym_identifier, - ACTIONS(1736), 42, + ACTIONS(1736), 43, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -40933,6 +40952,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iterated_element_association_token2, aux_sym_compilation_unit_token1, aux_sym_package_specification_token1, + aux_sym_package_specification_token3, aux_sym_with_clause_token1, aux_sym_with_clause_token2, aux_sym_use_clause_token2, @@ -40965,444 +40985,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [28600] = 19, + [27100] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(1377), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28683] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(528), 1, - sym_term, - STATE(1952), 1, - sym__simple_expression, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28766] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1742), 1, - sym_identifier, - ACTIONS(1740), 42, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [28817] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1640), 1, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1728), 1, anon_sym_DOT, ACTIONS(1730), 1, anon_sym_LPAREN, - ACTIONS(1744), 1, - sym_tick, - STATE(460), 1, + STATE(483), 1, sym_actual_parameter_part, - ACTIONS(1726), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1728), 31, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [28874] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1588), 1, - anon_sym_LPAREN, - ACTIONS(1594), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1596), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1600), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1746), 1, - anon_sym_EQ_GT, - ACTIONS(1750), 1, - anon_sym_PIPE, - STATE(751), 1, - sym__parenthesized_expression, - STATE(1357), 1, - aux_sym_discriminant_association_repeat1, - ACTIONS(1584), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - STATE(745), 7, - sym_discriminant_constraint, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, + STATE(538), 1, sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(1586), 18, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [28940] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1761), 1, - anon_sym_SLASH, - STATE(502), 1, - aux_sym_term_repeat1, - STATE(517), 1, - sym_multiplying_operator, - ACTIONS(1758), 3, - anon_sym_STAR, - anon_sym_mod, - anon_sym_rem, - ACTIONS(1754), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - ACTIONS(1756), 30, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [28996] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1770), 1, - anon_sym_SLASH, - STATE(502), 1, - aux_sym_term_repeat1, - STATE(517), 1, - sym_multiplying_operator, - ACTIONS(1768), 3, - anon_sym_STAR, - anon_sym_mod, - anon_sym_rem, - ACTIONS(1764), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - ACTIONS(1766), 30, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29052] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1770), 1, - anon_sym_SLASH, - STATE(503), 1, - aux_sym_term_repeat1, - STATE(517), 1, - sym_multiplying_operator, - ACTIONS(1768), 3, - anon_sym_STAR, - anon_sym_mod, - anon_sym_rem, - ACTIONS(1772), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - ACTIONS(1774), 30, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29108] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1776), 6, + ACTIONS(1740), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1778), 33, + ACTIONS(1742), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -41436,669 +41039,1794 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [29155] = 4, + [27162] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1746), 1, + sym_identifier, + ACTIONS(1744), 43, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [27214] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(1630), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(756), 1, + sym_range_g, + STATE(1883), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(498), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(522), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [27300] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1750), 1, + sym_identifier, + ACTIONS(1748), 43, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [27352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1754), 1, + sym_identifier, + ACTIONS(1752), 43, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [27404] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(1756), 43, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [27456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1762), 1, + sym_identifier, + ACTIONS(1760), 43, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [27508] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1766), 1, + sym_identifier, + ACTIONS(1764), 43, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [27560] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1770), 1, + sym_identifier, + ACTIONS(1768), 43, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [27612] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1774), 1, + sym_identifier, + ACTIONS(1772), 43, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [27664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1778), 1, + sym_identifier, + ACTIONS(1776), 43, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [27716] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(1780), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(1887), 1, + sym__simple_expression, + STATE(1890), 1, + sym_chunk_specification, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [27802] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1784), 1, - anon_sym_STAR_STAR, - ACTIONS(1780), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1782), 32, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29204] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1786), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1788), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29251] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, sym_identifier, - STATE(526), 1, - sym_term, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(538), 4, + ACTIONS(1782), 43, + ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [29322] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1790), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1792), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29369] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1794), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1796), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29416] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1588), 1, - anon_sym_LPAREN, - ACTIONS(1594), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1596), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1600), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1798), 1, - anon_sym_EQ_GT, - ACTIONS(1800), 1, - anon_sym_PIPE, - STATE(751), 1, - sym__parenthesized_expression, - STATE(1357), 1, - aux_sym_discriminant_association_repeat1, - ACTIONS(1591), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1584), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - STATE(745), 7, - sym_discriminant_constraint, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(1586), 15, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - aux_sym_chunk_specification_token1, - anon_sym_DOT_DOT, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [29483] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1588), 1, - anon_sym_LPAREN, - ACTIONS(1594), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1596), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1600), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1800), 1, - anon_sym_PIPE, - ACTIONS(1802), 1, - anon_sym_EQ_GT, - STATE(751), 1, - sym__parenthesized_expression, - STATE(1231), 1, - aux_sym_discriminant_association_repeat1, - ACTIONS(1591), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1584), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - STATE(745), 7, - sym_discriminant_constraint, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(1586), 15, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - aux_sym_chunk_specification_token1, - anon_sym_DOT_DOT, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [29550] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, anon_sym_LBRACK, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(534), 1, - sym_term, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [29621] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1804), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1806), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token1, aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1808), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1810), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29715] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1634), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1636), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29762] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(450), 1, - aux_sym_relation_membership_token1, - ACTIONS(540), 1, - sym_identifier, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(519), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [29830] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1812), 1, - anon_sym_LPAREN, - ACTIONS(1814), 1, - aux_sym_attribute_designator_token1, - ACTIONS(1816), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1818), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1820), 1, - aux_sym_attribute_designator_token4, - ACTIONS(1822), 1, aux_sym_compilation_unit_token1, - ACTIONS(1824), 1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, aux_sym_with_clause_token1, - ACTIONS(1826), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1828), 1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, aux_sym_relation_membership_token1, - ACTIONS(1830), 1, + aux_sym_raise_expression_token1, aux_sym_primary_null_token1, - ACTIONS(1832), 1, - aux_sym_allocator_token1, - ACTIONS(1836), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(1838), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(1840), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(1842), 1, - aux_sym_private_extension_declaration_token1, - ACTIONS(1844), 1, - aux_sym_array_type_definition_token1, - ACTIONS(1846), 1, - aux_sym_interface_type_definition_token2, - STATE(1224), 1, - sym_null_exclusion, - STATE(1488), 1, - sym_record_definition, - ACTIONS(1834), 2, aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, aux_sym_interface_type_definition_token1, - STATE(1221), 17, - sym__access_type_definition, - sym_access_to_subprogram_definition, - sym_access_to_object_definition, - sym__type_definition, - sym_array_type_definition, - sym_enumeration_type_definition, - sym__integer_type_definition, - sym_modular_type_definition, - sym__real_type_definition, - sym_floating_point_definition, - sym__fixed_point_definition, - sym_decimal_fixed_point_definition, - sym_ordinary_fixed_point_definition, - sym_signed_integer_type_definition, - sym_derived_type_definition, - sym_interface_type_definition, - sym_record_type_definition, - [29914] = 3, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [27854] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1848), 5, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(697), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [27937] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(629), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28020] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1788), 1, + sym_identifier, + ACTIONS(1786), 42, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [28071] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(1845), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28154] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(1460), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28237] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(1471), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28320] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1792), 1, + sym_identifier, + ACTIONS(1790), 42, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [28371] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1796), 1, + sym_identifier, + ACTIONS(1794), 42, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [28422] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(688), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28505] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1800), 1, + sym_identifier, + ACTIONS(1798), 42, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [28556] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1804), 1, + sym_identifier, + ACTIONS(1802), 42, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [28607] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1728), 1, + anon_sym_DOT, + ACTIONS(1810), 1, + anon_sym_LPAREN, + STATE(483), 1, + sym_actual_parameter_part, + ACTIONS(1806), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1850), 33, + ACTIONS(1808), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [28666] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(634), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28749] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(1722), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28832] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1814), 1, + sym_identifier, + ACTIONS(1812), 42, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [28883] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(1998), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28966] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(601), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [29049] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1818), 1, + sym_identifier, + ACTIONS(1816), 42, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [29100] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(372), 1, + anon_sym_PLUS, + ACTIONS(374), 1, + anon_sym_DASH, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(537), 1, + sym_unary_adding_operator, + STATE(546), 1, + sym_term, + STATE(1842), 1, + sym__simple_expression, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [29183] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1728), 1, + anon_sym_DOT, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, + sym_tick, + STATE(483), 1, + sym_actual_parameter_part, + ACTIONS(1806), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1808), 31, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [29240] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1829), 1, + anon_sym_SLASH, + STATE(523), 1, + aux_sym_term_repeat1, + STATE(543), 1, + sym_multiplying_operator, + ACTIONS(1826), 3, anon_sym_STAR, anon_sym_mod, anon_sym_rem, + ACTIONS(1822), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + ACTIONS(1824), 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, @@ -42124,14 +42852,167 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [29960] = 3, + [29296] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1852), 5, + ACTIONS(1838), 1, + anon_sym_SLASH, + STATE(525), 1, + aux_sym_term_repeat1, + STATE(543), 1, + sym_multiplying_operator, + ACTIONS(1836), 3, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + ACTIONS(1832), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, + ACTIONS(1834), 30, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [29352] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1838), 1, + anon_sym_SLASH, + STATE(523), 1, + aux_sym_term_repeat1, + STATE(543), 1, + sym_multiplying_operator, + ACTIONS(1836), 3, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + ACTIONS(1840), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + ACTIONS(1842), 30, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [29408] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1680), 1, + anon_sym_LPAREN, + ACTIONS(1686), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1688), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1692), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1844), 1, + anon_sym_EQ_GT, + ACTIONS(1848), 1, + anon_sym_PIPE, + STATE(722), 1, + sym__parenthesized_expression, + STATE(1332), 1, + aux_sym_discriminant_association_repeat1, + ACTIONS(1676), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + STATE(764), 7, + sym_discriminant_constraint, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(1678), 18, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + [29474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1852), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, ACTIONS(1854), 33, anon_sym_SLASH_EQ, @@ -42139,7 +43020,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, @@ -42163,26 +43043,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [30006] = 3, + [29521] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1856), 5, + ACTIONS(1860), 1, + anon_sym_STAR_STAR, + ACTIONS(1856), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1858), 33, + ACTIONS(1858), 32, 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, @@ -42210,22 +43093,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, - [30052] = 3, + [29570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1860), 5, + ACTIONS(1862), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1862), 33, + ACTIONS(1864), 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, @@ -42249,97 +43132,496 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [30098] = 5, + [29617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1864), 1, + ACTIONS(1866), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1868), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [29664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1870), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1872), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [29711] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, sym_identifier, - ACTIONS(1868), 1, - anon_sym_LT_LT, - STATE(523), 2, - sym_label, - aux_sym__sequence_of_statements_repeat2, - ACTIONS(1866), 34, + STATE(555), 1, + sym_term, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(590), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [29782] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1740), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1742), 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_package_specification_token3, - aux_sym_subprogram_body_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, aux_sym_expression_token2, aux_sym_expression_token3, aux_sym_expression_token4, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_exception_declaration_token1, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, + aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - [30148] = 20, + [29829] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1812), 1, + ACTIONS(1680), 1, anon_sym_LPAREN, - ACTIONS(1814), 1, - aux_sym_attribute_designator_token1, - ACTIONS(1816), 1, + ACTIONS(1686), 1, aux_sym_attribute_designator_token2, - ACTIONS(1818), 1, + ACTIONS(1688), 1, aux_sym_attribute_designator_token3, - ACTIONS(1820), 1, - aux_sym_attribute_designator_token4, - ACTIONS(1826), 1, + ACTIONS(1692), 1, aux_sym_range_attribute_designator_token1, - ACTIONS(1828), 1, + ACTIONS(1874), 1, + anon_sym_EQ_GT, + ACTIONS(1876), 1, + anon_sym_PIPE, + STATE(722), 1, + sym__parenthesized_expression, + STATE(1249), 1, + aux_sym_discriminant_association_repeat1, + ACTIONS(1683), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1676), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + STATE(764), 7, + sym_discriminant_constraint, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(1678), 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, - ACTIONS(1830), 1, - aux_sym_primary_null_token1, - ACTIONS(1836), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(1844), 1, - aux_sym_array_type_definition_token1, - ACTIONS(1846), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(1871), 1, - aux_sym_with_clause_token1, - ACTIONS(1873), 1, + anon_sym_STAR_STAR, + [29896] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1680), 1, + anon_sym_LPAREN, + ACTIONS(1686), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1688), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1692), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_EQ_GT, + STATE(722), 1, + sym__parenthesized_expression, + STATE(1332), 1, + aux_sym_discriminant_association_repeat1, + ACTIONS(1683), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1676), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + STATE(764), 7, + sym_discriminant_constraint, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(1678), 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, + [29963] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1880), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1882), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [30010] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, aux_sym_allocator_token1, - ACTIONS(1875), 1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(551), 1, + sym_term, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [30081] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1884), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1886), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [30128] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1888), 1, + anon_sym_LPAREN, + ACTIONS(1890), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1892), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1894), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1896), 1, + aux_sym_attribute_designator_token4, + ACTIONS(1898), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1900), 1, + aux_sym_with_clause_token1, + ACTIONS(1902), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + ACTIONS(1906), 1, + aux_sym_primary_null_token1, + ACTIONS(1908), 1, + aux_sym_allocator_token1, + ACTIONS(1912), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(1914), 1, aux_sym_private_type_declaration_token1, - ACTIONS(1877), 1, + ACTIONS(1916), 1, aux_sym_private_type_declaration_token2, - STATE(1224), 1, - sym_null_exclusion, - STATE(1488), 1, - sym_record_definition, - ACTIONS(1834), 3, - aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1918), 1, aux_sym_private_extension_declaration_token1, + ACTIONS(1920), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1922), 1, + aux_sym_interface_type_definition_token2, + STATE(1313), 1, + sym_null_exclusion, + STATE(1463), 1, + sym_record_definition, + ACTIONS(1910), 2, + aux_sym_access_to_subprogram_definition_token1, aux_sym_interface_type_definition_token1, - STATE(1218), 17, + STATE(1321), 17, sym__access_type_definition, sym_access_to_subprogram_definition, sym_access_to_object_definition, @@ -42357,71 +43639,308 @@ static const uint16_t ts_small_parse_table[] = { sym_derived_type_definition, sym_interface_type_definition, sym_record_type_definition, - [30227] = 10, + [30212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1588), 1, - anon_sym_LPAREN, - ACTIONS(1594), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1596), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1600), 1, - aux_sym_range_attribute_designator_token1, - STATE(751), 1, - sym__parenthesized_expression, - ACTIONS(1591), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1584), 6, + ACTIONS(1924), 5, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_DOT, - STATE(745), 7, - sym_discriminant_constraint, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(1586), 16, - anon_sym_EQ, + ACTIONS(1926), 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, - sym_tick, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, aux_sym_expression_token1, + aux_sym_expression_token2, aux_sym_expression_token3, + aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [30285] = 7, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [30258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1885), 1, - anon_sym_DASH, - STATE(513), 1, - sym_binary_adding_operator, - STATE(529), 1, - aux_sym__simple_expression_repeat1, - ACTIONS(1883), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1879), 3, + ACTIONS(1928), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1881), 28, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1930), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [30304] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1932), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1934), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [30350] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_numeric_literal, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + aux_sym_factor_abs_token1, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(502), 1, + aux_sym_relation_membership_token1, + ACTIONS(592), 1, + sym_identifier, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(542), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(528), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [30418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1938), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [30464] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1888), 1, + anon_sym_LPAREN, + ACTIONS(1890), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1892), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1894), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1896), 1, + aux_sym_attribute_designator_token4, + ACTIONS(1902), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + ACTIONS(1906), 1, + aux_sym_primary_null_token1, + ACTIONS(1912), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(1920), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1922), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(1940), 1, + aux_sym_with_clause_token1, + ACTIONS(1942), 1, + aux_sym_allocator_token1, + ACTIONS(1944), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(1946), 1, + aux_sym_private_type_declaration_token2, + STATE(1313), 1, + sym_null_exclusion, + STATE(1463), 1, + sym_record_definition, + ACTIONS(1910), 3, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_private_extension_declaration_token1, + aux_sym_interface_type_definition_token1, + STATE(1311), 17, + sym__access_type_definition, + sym_access_to_subprogram_definition, + sym_access_to_object_definition, + sym__type_definition, + sym_array_type_definition, + sym_enumeration_type_definition, + sym__integer_type_definition, + sym_modular_type_definition, + sym__real_type_definition, + sym_floating_point_definition, + sym__fixed_point_definition, + sym_decimal_fixed_point_definition, + sym_ordinary_fixed_point_definition, + sym_signed_integer_type_definition, + sym_derived_type_definition, + sym_interface_type_definition, + sym_record_type_definition, + [30543] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1954), 1, + anon_sym_DASH, + STATE(532), 1, + sym_binary_adding_operator, + STATE(549), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(1952), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1948), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1950), 28, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -42450,12 +43969,439 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [30337] = 3, + [30595] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, + ACTIONS(1954), 1, + anon_sym_DASH, + STATE(532), 1, + sym_binary_adding_operator, + STATE(550), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(1952), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1956), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1958), 28, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [30647] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1680), 1, + anon_sym_LPAREN, + ACTIONS(1686), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1688), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1692), 1, + aux_sym_range_attribute_designator_token1, + STATE(722), 1, + sym__parenthesized_expression, + ACTIONS(1683), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1676), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + STATE(764), 7, + sym_discriminant_constraint, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(1678), 16, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + aux_sym_chunk_specification_token1, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + [30705] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1954), 1, + anon_sym_DASH, + STATE(532), 1, + sym_binary_adding_operator, + STATE(550), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(1952), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1960), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1962), 28, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [30757] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1971), 1, + anon_sym_DASH, + STATE(532), 1, + sym_binary_adding_operator, + STATE(550), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(1968), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1964), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1966), 28, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [30809] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1954), 1, + anon_sym_DASH, + STATE(532), 1, + sym_binary_adding_operator, + STATE(547), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(1952), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1960), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1962), 28, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [30861] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1890), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + ACTIONS(1920), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1922), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(1974), 1, + anon_sym_LPAREN, + ACTIONS(1976), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1978), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1980), 1, + aux_sym_attribute_designator_token4, + ACTIONS(1982), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1984), 1, + aux_sym_with_clause_token1, + ACTIONS(1986), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1988), 1, + aux_sym_allocator_token1, + ACTIONS(1990), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(1992), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(1994), 1, + aux_sym_private_extension_declaration_token1, + STATE(1313), 1, + sym_null_exclusion, + STATE(1369), 1, + sym_interface_type_definition, + STATE(1372), 1, + sym_array_type_definition, + ACTIONS(1910), 2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_interface_type_definition_token1, + STATE(1373), 3, + sym__access_type_definition, + sym_access_to_subprogram_definition, + sym_access_to_object_definition, + STATE(1123), 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, + [30942] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1890), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + ACTIONS(1920), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1922), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(1974), 1, + anon_sym_LPAREN, + ACTIONS(1976), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1978), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1980), 1, + aux_sym_attribute_designator_token4, + ACTIONS(1982), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1984), 1, + aux_sym_with_clause_token1, + ACTIONS(1986), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1988), 1, + aux_sym_allocator_token1, + ACTIONS(1990), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(1994), 1, + aux_sym_private_extension_declaration_token1, + ACTIONS(1996), 1, + aux_sym_private_type_declaration_token2, + STATE(1313), 1, + sym_null_exclusion, + STATE(1369), 1, + sym_interface_type_definition, + STATE(1372), 1, + sym_array_type_definition, + ACTIONS(1910), 2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_interface_type_definition_token1, + STATE(1373), 3, + sym__access_type_definition, + sym_access_to_subprogram_definition, + sym_access_to_object_definition, + STATE(1112), 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, + [31023] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1998), 1, sym_identifier, - ACTIONS(1889), 35, + ACTIONS(2002), 1, + anon_sym_LT_LT, + STATE(554), 2, + sym_label, + aux_sym__sequence_of_statements_repeat2, + ACTIONS(2000), 31, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_exception_declaration_token1, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + [31070] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1964), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + ACTIONS(1966), 30, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [31112] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2005), 1, + sym_identifier, + ACTIONS(2007), 32, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, @@ -42483,414 +44429,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_requeue_statement_token1, aux_sym_accept_statement_token1, aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, aux_sym_exit_statement_token1, aux_sym_goto_statement_token1, aux_sym_delay_until_statement_token1, aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, - [30381] = 7, + [31153] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1885), 1, - anon_sym_DASH, - STATE(513), 1, - sym_binary_adding_operator, - STATE(530), 1, - aux_sym__simple_expression_repeat1, - ACTIONS(1883), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1891), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1893), 28, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [30433] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1885), 1, - anon_sym_DASH, - STATE(513), 1, - sym_binary_adding_operator, - STATE(531), 1, - aux_sym__simple_expression_repeat1, - ACTIONS(1883), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1895), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1897), 28, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [30485] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1885), 1, - anon_sym_DASH, - STATE(513), 1, - sym_binary_adding_operator, - STATE(531), 1, - aux_sym__simple_expression_repeat1, - ACTIONS(1883), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1879), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1881), 28, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [30537] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1906), 1, - anon_sym_DASH, - STATE(513), 1, - sym_binary_adding_operator, - STATE(531), 1, - aux_sym__simple_expression_repeat1, - ACTIONS(1903), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1899), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1901), 28, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [30589] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1814), 1, - aux_sym_attribute_designator_token1, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - ACTIONS(1844), 1, - aux_sym_array_type_definition_token1, - ACTIONS(1846), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(1909), 1, + ACTIONS(1680), 1, anon_sym_LPAREN, - ACTIONS(1911), 1, + ACTIONS(1686), 1, aux_sym_attribute_designator_token2, - ACTIONS(1913), 1, + ACTIONS(1688), 1, aux_sym_attribute_designator_token3, - ACTIONS(1915), 1, - aux_sym_attribute_designator_token4, - ACTIONS(1917), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1919), 1, - aux_sym_with_clause_token1, - ACTIONS(1921), 1, + ACTIONS(1692), 1, aux_sym_range_attribute_designator_token1, - ACTIONS(1923), 1, - aux_sym_allocator_token1, - ACTIONS(1925), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(1927), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(1929), 1, - aux_sym_private_extension_declaration_token1, - STATE(1224), 1, - sym_null_exclusion, - STATE(1263), 1, - sym_interface_type_definition, - STATE(1264), 1, - sym_array_type_definition, - ACTIONS(1834), 2, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_interface_type_definition_token1, - STATE(1267), 3, - sym__access_type_definition, - sym_access_to_subprogram_definition, - sym_access_to_object_definition, - STATE(1148), 12, - sym__formal_type_definition, - sym_formal_private_type_definition, - sym_formal_derived_type_definition, - sym_formal_discrete_type_definition, - sym_formal_signed_integer_type_definition, - sym_formal_modular_type_definition, - sym_formal_floating_point_definition, - sym_formal_ordinary_fixed_point_definition, - sym_formal_decimal_fixed_point_definition, - sym_formal_array_type_definition, - sym_formal_access_type_definition, - sym_formal_interface_type_definition, - [30670] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1814), 1, - aux_sym_attribute_designator_token1, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - ACTIONS(1844), 1, - aux_sym_array_type_definition_token1, - ACTIONS(1846), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(1909), 1, - anon_sym_LPAREN, - ACTIONS(1911), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1913), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1915), 1, - aux_sym_attribute_designator_token4, - ACTIONS(1917), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1919), 1, - aux_sym_with_clause_token1, - ACTIONS(1921), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1923), 1, - aux_sym_allocator_token1, - ACTIONS(1925), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(1929), 1, - aux_sym_private_extension_declaration_token1, - ACTIONS(1931), 1, - aux_sym_private_type_declaration_token2, - STATE(1224), 1, - sym_null_exclusion, - STATE(1263), 1, - sym_interface_type_definition, - STATE(1264), 1, - sym_array_type_definition, - ACTIONS(1834), 2, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_interface_type_definition_token1, - STATE(1267), 3, - sym__access_type_definition, - sym_access_to_subprogram_definition, - sym_access_to_object_definition, - STATE(1139), 12, - sym__formal_type_definition, - sym_formal_private_type_definition, - sym_formal_derived_type_definition, - sym_formal_discrete_type_definition, - sym_formal_signed_integer_type_definition, - sym_formal_modular_type_definition, - sym_formal_floating_point_definition, - sym_formal_ordinary_fixed_point_definition, - sym_formal_decimal_fixed_point_definition, - sym_formal_array_type_definition, - sym_formal_access_type_definition, - sym_formal_interface_type_definition, - [30751] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1899), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - ACTIONS(1901), 30, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [30793] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(540), 1, - sym_identifier, - ACTIONS(1933), 1, - sym_numeric_literal, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(538), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(489), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(521), 14, + STATE(722), 1, sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [30849] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1588), 1, - anon_sym_LPAREN, - ACTIONS(1594), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1596), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1600), 1, - aux_sym_range_attribute_designator_token1, - STATE(751), 1, - sym__parenthesized_expression, - ACTIONS(1584), 3, + ACTIONS(1676), 3, anon_sym_DASH, anon_sym_STAR, anon_sym_DOT, - STATE(745), 7, + STATE(764), 7, sym_discriminant_constraint, sym__constraint, sym__scalar_constraint, @@ -42898,7 +44459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index_constraint, sym_digits_constraint, sym_delta_constraint, - ACTIONS(1586), 8, + ACTIONS(1678), 8, anon_sym_PLUS, anon_sym_AMP, anon_sym_SLASH, @@ -42907,7 +44468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_tick, anon_sym_DOT_DOT, anon_sym_STAR_STAR, - ACTIONS(1598), 9, + ACTIONS(1690), 9, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_chunk_specification_token1, @@ -42917,29 +44478,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token1, aux_sym_expression_token3, anon_sym_COLON_EQ, - [30903] = 11, + [31207] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(364), 1, + ACTIONS(376), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(378), 1, anon_sym_LBRACK, - ACTIONS(380), 1, + ACTIONS(392), 1, aux_sym_allocator_token1, - ACTIONS(438), 1, + ACTIONS(490), 1, aux_sym_primary_null_token1, - ACTIONS(540), 1, + ACTIONS(592), 1, sym_identifier, - ACTIONS(1935), 1, + ACTIONS(2009), 1, sym_numeric_literal, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - ACTIONS(538), 4, + ACTIONS(590), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 7, + STATE(514), 7, sym__name, sym_selected_component, sym_slice, @@ -42947,7 +44508,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(520), 14, + STATE(541), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -42962,29 +44523,29 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [30959] = 11, + [31263] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(364), 1, + ACTIONS(376), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(378), 1, anon_sym_LBRACK, - ACTIONS(380), 1, + ACTIONS(392), 1, aux_sym_allocator_token1, - ACTIONS(540), 1, - sym_identifier, - ACTIONS(1937), 1, - sym_numeric_literal, - ACTIONS(1939), 1, + ACTIONS(490), 1, aux_sym_primary_null_token1, - STATE(2005), 1, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(2011), 1, + sym_numeric_literal, + STATE(2045), 1, sym_value_sequence, - ACTIONS(538), 4, + ACTIONS(590), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 7, + STATE(514), 7, sym__name, sym_selected_component, sym_slice, @@ -42992,7 +44553,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(522), 14, + STATE(540), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -43007,29 +44568,29 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [31015] = 11, + [31319] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(364), 1, + ACTIONS(376), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(378), 1, anon_sym_LBRACK, - ACTIONS(380), 1, + ACTIONS(392), 1, aux_sym_allocator_token1, - ACTIONS(438), 1, - aux_sym_primary_null_token1, - ACTIONS(540), 1, + ACTIONS(592), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(2013), 1, sym_numeric_literal, - STATE(2005), 1, + ACTIONS(2015), 1, + aux_sym_primary_null_token1, + STATE(2045), 1, sym_value_sequence, - ACTIONS(538), 4, + ACTIONS(590), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 7, + STATE(514), 7, sym__name, sym_selected_component, sym_slice, @@ -43037,7 +44598,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(522), 14, + STATE(544), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -43052,18 +44613,63 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [31071] = 5, + [31375] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(392), 1, + aux_sym_allocator_token1, + ACTIONS(490), 1, + aux_sym_primary_null_token1, + ACTIONS(592), 1, sym_identifier, - ACTIONS(1943), 5, + ACTIONS(2013), 1, + sym_numeric_literal, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(590), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(514), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(544), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [31431] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2017), 1, + sym_identifier, + ACTIONS(2019), 5, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, anon_sym_LBRACK, - ACTIONS(1794), 7, + ACTIONS(1880), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -43071,7 +44677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_rem, - ACTIONS(1796), 18, + ACTIONS(1882), 18, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -43090,7 +44696,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token3, aux_sym_expression_token5, aux_sym_relation_membership_token1, - [31114] = 19, + [31474] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_EQ_GT, + ACTIONS(2021), 1, + anon_sym_COMMA, + ACTIONS(2024), 1, + anon_sym_COLON, + STATE(1301), 1, + aux_sym__defining_identifier_list_repeat1, + STATE(1332), 1, + aux_sym_discriminant_association_repeat1, + ACTIONS(1676), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1678), 17, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + [31524] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -43099,34 +44746,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accept_statement_token1, ACTIONS(77), 1, aux_sym_delay_until_statement_token1, - ACTIONS(1945), 1, + ACTIONS(2026), 1, sym_identifier, - ACTIONS(1947), 1, + ACTIONS(2028), 1, aux_sym_iterator_filter_token1, - ACTIONS(1949), 1, + ACTIONS(2030), 1, aux_sym_terminate_alternative_token1, - STATE(32), 1, + STATE(40), 1, sym_accept_statement, - STATE(33), 1, + STATE(42), 1, sym_procedure_call_statement, - STATE(841), 1, + STATE(869), 1, sym_guard, - STATE(1132), 1, + STATE(1148), 1, sym_select_alternative, - STATE(1412), 1, + STATE(1411), 1, sym_entry_call_alternative, - STATE(1974), 1, + STATE(2002), 1, sym_triggering_alternative, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - STATE(1129), 2, + STATE(1120), 2, sym__name, sym_function_call, - STATE(31), 3, + STATE(39), 3, sym__delay_statement, sym_delay_until_statement, sym_delay_relative_statement, - STATE(1330), 3, + STATE(1335), 3, sym_delay_alternative, sym_accept_alternative, sym_terminate_alternative, @@ -43135,922 +44782,30 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(1030), 5, + STATE(1088), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [31184] = 9, + [31594] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, - anon_sym_EQ_GT, - ACTIONS(1800), 1, - anon_sym_PIPE, - ACTIONS(1951), 1, - anon_sym_COMMA, - ACTIONS(1954), 1, - anon_sym_COLON, - STATE(1308), 1, - aux_sym__defining_identifier_list_repeat1, - STATE(1357), 1, - aux_sym_discriminant_association_repeat1, - ACTIONS(1584), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1586), 17, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2038), 1, aux_sym_chunk_specification_token1, - anon_sym_DOT_DOT, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [31234] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1588), 1, - anon_sym_LPAREN, - ACTIONS(1594), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1596), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1600), 1, - aux_sym_range_attribute_designator_token1, - STATE(751), 1, - sym__parenthesized_expression, - ACTIONS(1586), 2, - sym_tick, - anon_sym_DOT, - STATE(708), 7, - sym_discriminant_constraint, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(1956), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [31283] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1964), 1, - aux_sym_chunk_specification_token1, - ACTIONS(1966), 1, - aux_sym_relation_membership_token1, - STATE(492), 1, - sym_relational_operator, - ACTIONS(1958), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1960), 3, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1962), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [31328] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1798), 1, - anon_sym_EQ_GT, - ACTIONS(1800), 1, - anon_sym_PIPE, - STATE(1357), 1, - aux_sym_discriminant_association_repeat1, - ACTIONS(1584), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1586), 18, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - anon_sym_DOT_DOT, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [31370] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1588), 1, - anon_sym_LPAREN, - ACTIONS(1594), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1596), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1598), 1, - anon_sym_RPAREN, - ACTIONS(1600), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1954), 1, - anon_sym_COLON, - ACTIONS(1968), 1, - anon_sym_COMMA, - STATE(751), 1, - sym__parenthesized_expression, - STATE(1308), 1, - aux_sym__defining_identifier_list_repeat1, - ACTIONS(1584), 3, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_DOT, - STATE(745), 7, - sym_discriminant_constraint, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(1586), 8, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - [31425] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1800), 1, - anon_sym_PIPE, - ACTIONS(1802), 1, - anon_sym_EQ_GT, - STATE(1231), 1, - aux_sym_discriminant_association_repeat1, - ACTIONS(1584), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1586), 18, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [31466] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1970), 1, - sym_identifier, - ACTIONS(1972), 1, - aux_sym_package_specification_token3, - ACTIONS(1974), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(970), 1, - sym_overriding_indicator, - STATE(1791), 1, - sym__defining_identifier_list, - STATE(1171), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(554), 12, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym__protected_element_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat2, - [31522] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1954), 1, - anon_sym_COLON, - ACTIONS(1968), 1, - anon_sym_COMMA, - STATE(1308), 1, - aux_sym__defining_identifier_list_repeat1, - ACTIONS(1584), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1586), 18, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [31562] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1970), 1, - sym_identifier, - ACTIONS(1974), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1978), 1, - aux_sym_package_specification_token3, - STATE(970), 1, - sym_overriding_indicator, - STATE(1791), 1, - sym__defining_identifier_list, - STATE(1171), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(551), 12, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym__protected_element_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat2, - [31618] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1970), 1, - sym_identifier, - ACTIONS(1974), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1980), 1, - aux_sym_package_specification_token3, - STATE(970), 1, - sym_overriding_indicator, - STATE(1791), 1, - sym__defining_identifier_list, - STATE(1171), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(554), 12, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym__protected_element_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat2, - [31674] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1982), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(1794), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1796), 19, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - anon_sym_EQ_GT, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [31710] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1970), 1, - sym_identifier, - ACTIONS(1974), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1980), 1, - aux_sym_package_specification_token3, - STATE(970), 1, - sym_overriding_indicator, - STATE(1791), 1, - sym__defining_identifier_list, - STATE(1171), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(548), 12, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym__protected_element_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat2, - [31766] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1984), 1, - sym_identifier, - ACTIONS(1987), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1990), 1, - aux_sym_package_specification_token3, - ACTIONS(1992), 1, - aux_sym_relation_membership_token1, - ACTIONS(1995), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1998), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2001), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2004), 1, - aux_sym_global_mode_token1, - ACTIONS(2007), 1, - aux_sym_pragma_g_token1, - STATE(970), 1, - sym_overriding_indicator, - STATE(1791), 1, - sym__defining_identifier_list, - STATE(1171), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(554), 12, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym__protected_element_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat2, - [31822] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2010), 1, - sym_tick, - ACTIONS(2013), 1, - anon_sym_EQ_GT, - ACTIONS(1584), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1586), 17, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [31859] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1974), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2015), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2017), 1, - aux_sym_package_specification_token3, - ACTIONS(2019), 1, - aux_sym_allocator_token1, - STATE(970), 1, - sym_overriding_indicator, - STATE(1550), 1, - sym_protected_definition, - STATE(1171), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(579), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [31916] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1974), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2015), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2017), 1, - aux_sym_package_specification_token3, - ACTIONS(2021), 1, - aux_sym_allocator_token1, - STATE(970), 1, - sym_overriding_indicator, - STATE(1659), 1, - sym_protected_definition, - STATE(1171), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(579), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [31973] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1974), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2015), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2017), 1, - aux_sym_package_specification_token3, - ACTIONS(2023), 1, - aux_sym_allocator_token1, - STATE(970), 1, - sym_overriding_indicator, - STATE(1771), 1, - sym_protected_definition, - STATE(1171), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(579), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [32030] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1974), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2015), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2017), 1, - aux_sym_package_specification_token3, - ACTIONS(2025), 1, - aux_sym_allocator_token1, - STATE(970), 1, - sym_overriding_indicator, - STATE(1772), 1, - sym_protected_definition, - STATE(1171), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(579), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [32087] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1588), 1, - anon_sym_LPAREN, - ACTIONS(1594), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1596), 1, - aux_sym_attribute_designator_token3, - ACTIONS(2027), 1, - aux_sym_range_attribute_designator_token1, - STATE(751), 1, - sym__parenthesized_expression, - ACTIONS(1598), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1584), 3, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_DOT, - STATE(745), 7, - sym_discriminant_constraint, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(1586), 8, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - [32134] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1974), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2015), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2017), 1, - aux_sym_package_specification_token3, - ACTIONS(2030), 1, - aux_sym_allocator_token1, - STATE(970), 1, - sym_overriding_indicator, - STATE(1876), 1, - sym_protected_definition, - STATE(1171), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(579), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [32191] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1974), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2015), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2017), 1, - aux_sym_package_specification_token3, - STATE(970), 1, - sym_overriding_indicator, - STATE(1921), 1, - sym_protected_definition, - STATE(1171), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(579), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [32245] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1974), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2015), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2017), 1, - aux_sym_package_specification_token3, - STATE(970), 1, - sym_overriding_indicator, - STATE(1553), 1, - sym_protected_definition, - STATE(1171), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(579), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [32299] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2034), 1, - anon_sym_LPAREN, - ACTIONS(2032), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32331] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, ACTIONS(2040), 1, - aux_sym_with_clause_token2, - STATE(460), 1, - sym_actual_parameter_part, - ACTIONS(2038), 19, + aux_sym_relation_membership_token1, + STATE(515), 1, + sym_relational_operator, + ACTIONS(2032), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2034), 3, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2036), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -44060,6 +44815,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_designator_token3, anon_sym_SEMI, aux_sym_package_specification_token2, + aux_sym_with_clause_token2, anon_sym_PIPE, aux_sym_range_attribute_designator_token1, aux_sym_expression_token1, @@ -44070,37 +44826,1079 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32371] = 12, + [31639] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1680), 1, + anon_sym_LPAREN, + ACTIONS(1686), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1688), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1692), 1, + aux_sym_range_attribute_designator_token1, + STATE(722), 1, + sym__parenthesized_expression, + ACTIONS(1678), 2, + sym_tick, + anon_sym_DOT, + STATE(721), 7, + sym_discriminant_constraint, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(2042), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [31688] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_EQ_GT, + STATE(1332), 1, + aux_sym_discriminant_association_repeat1, + ACTIONS(1676), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1678), 18, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + [31730] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1680), 1, + anon_sym_LPAREN, + ACTIONS(1686), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1688), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1690), 1, + anon_sym_RPAREN, + ACTIONS(1692), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(2024), 1, + anon_sym_COLON, + ACTIONS(2044), 1, + anon_sym_COMMA, + STATE(722), 1, + sym__parenthesized_expression, + STATE(1301), 1, + aux_sym__defining_identifier_list_repeat1, + ACTIONS(1676), 3, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_DOT, + STATE(764), 7, + sym_discriminant_constraint, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(1678), 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, + [31785] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1874), 1, + anon_sym_EQ_GT, + ACTIONS(1876), 1, + anon_sym_PIPE, + STATE(1249), 1, + aux_sym_discriminant_association_repeat1, + ACTIONS(1676), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1678), 18, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + [31826] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2024), 1, + anon_sym_COLON, + ACTIONS(2044), 1, + anon_sym_COMMA, + STATE(1301), 1, + aux_sym__defining_identifier_list_repeat1, + ACTIONS(1676), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1678), 18, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + [31866] = 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(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2046), 1, + sym_identifier, + ACTIONS(2048), 1, + aux_sym_package_specification_token3, + ACTIONS(2050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2052), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(989), 1, + sym_overriding_indicator, + STATE(1715), 1, + sym__defining_identifier_list, + STATE(1125), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(572), 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, + [31922] = 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(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2046), 1, + sym_identifier, + ACTIONS(2050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2052), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2054), 1, + aux_sym_package_specification_token3, + STATE(989), 1, + sym_overriding_indicator, + STATE(1715), 1, + sym__defining_identifier_list, + STATE(1125), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(574), 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, + [31978] = 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(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2046), 1, + sym_identifier, + ACTIONS(2050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2052), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2054), 1, + aux_sym_package_specification_token3, + STATE(989), 1, + sym_overriding_indicator, + STATE(1715), 1, + sym__defining_identifier_list, + STATE(1125), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(576), 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, + [32034] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2056), 1, + sym_identifier, + ACTIONS(2059), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2062), 1, + aux_sym_package_specification_token3, + ACTIONS(2064), 1, + aux_sym_relation_membership_token1, + ACTIONS(2067), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2070), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2073), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2076), 1, + aux_sym_global_mode_token1, + ACTIONS(2079), 1, + aux_sym_pragma_g_token1, + STATE(989), 1, + sym_overriding_indicator, + STATE(1715), 1, + sym__defining_identifier_list, + STATE(1125), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(574), 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, + [32090] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2082), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(1880), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1882), 19, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + anon_sym_EQ_GT, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + [32126] = 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(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2046), 1, + sym_identifier, + ACTIONS(2050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2052), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2084), 1, + aux_sym_package_specification_token3, + STATE(989), 1, + sym_overriding_indicator, + STATE(1715), 1, + sym__defining_identifier_list, + STATE(1125), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(574), 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, + [32182] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1680), 1, + anon_sym_LPAREN, + ACTIONS(1686), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1688), 1, + aux_sym_attribute_designator_token3, + ACTIONS(2086), 1, + aux_sym_range_attribute_designator_token1, + STATE(722), 1, + sym__parenthesized_expression, + ACTIONS(1690), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1676), 3, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_DOT, + STATE(764), 7, + sym_discriminant_constraint, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(1678), 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, + [32229] = 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(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2052), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2089), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2091), 1, + aux_sym_package_specification_token3, + ACTIONS(2093), 1, + aux_sym_allocator_token1, + STATE(989), 1, + sym_overriding_indicator, + STATE(1692), 1, + sym_protected_definition, + STATE(1125), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(603), 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, + [32286] = 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(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2052), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2089), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2091), 1, + aux_sym_package_specification_token3, + ACTIONS(2095), 1, + aux_sym_allocator_token1, + STATE(989), 1, + sym_overriding_indicator, + STATE(1728), 1, + sym_protected_definition, + STATE(1125), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(603), 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, + [32343] = 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(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2052), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2089), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2091), 1, + aux_sym_package_specification_token3, + ACTIONS(2097), 1, + aux_sym_allocator_token1, + STATE(989), 1, + sym_overriding_indicator, + STATE(1689), 1, + sym_protected_definition, + STATE(1125), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(603), 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, + [32400] = 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(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2052), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2089), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2091), 1, + aux_sym_package_specification_token3, + ACTIONS(2099), 1, + aux_sym_allocator_token1, + STATE(989), 1, + sym_overriding_indicator, + STATE(1691), 1, + sym_protected_definition, + STATE(1125), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(603), 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, + [32457] = 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(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2052), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2089), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2091), 1, + aux_sym_package_specification_token3, + ACTIONS(2101), 1, + aux_sym_allocator_token1, + STATE(989), 1, + sym_overriding_indicator, + STATE(1848), 1, + sym_protected_definition, + STATE(1125), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(603), 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, + [32514] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2103), 1, + sym_tick, + ACTIONS(2106), 1, + anon_sym_EQ_GT, + ACTIONS(1676), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1678), 17, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + [32551] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2052), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2108), 1, + aux_sym_package_specification_token3, + ACTIONS(2110), 1, + aux_sym_subunit_token1, + ACTIONS(2112), 1, + aux_sym_entry_declaration_token1, + STATE(1052), 1, + sym_overriding_indicator, + STATE(1102), 1, + sym__subprogram_specification, + STATE(1163), 1, + sym_procedure_specification, + STATE(1187), 1, + sym_function_specification, + STATE(608), 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, + [32605] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - ACTIONS(2042), 1, + ACTIONS(996), 1, sym_identifier, - ACTIONS(2048), 1, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + ACTIONS(1920), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2114), 1, aux_sym_attribute_designator_token1, - ACTIONS(2050), 1, + ACTIONS(2116), 1, + aux_sym_general_access_modifier_token1, + ACTIONS(2118), 1, + aux_sym_component_definition_token1, + ACTIONS(2120), 1, aux_sym_exception_declaration_token1, - STATE(729), 1, + STATE(741), 1, sym_null_exclusion, - STATE(1954), 1, - sym_access_definition, - STATE(2005), 1, + STATE(1031), 1, + sym__subtype_indication, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2044), 4, + STATE(1032), 2, + sym_access_definition, + sym_array_type_definition, + STATE(1153), 2, + sym__name, + sym_function_call, + ACTIONS(892), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - ACTIONS(2046), 5, + STATE(557), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [32663] = 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(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2052), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2089), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2091), 1, + aux_sym_package_specification_token3, + STATE(989), 1, + sym_overriding_indicator, + STATE(1965), 1, + sym_protected_definition, + STATE(1125), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(603), 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, + [32717] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2124), 1, + anon_sym_LPAREN, + ACTIONS(2122), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [32749] = 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(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2052), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2089), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2091), 1, + aux_sym_package_specification_token3, + STATE(989), 1, + sym_overriding_indicator, + STATE(1882), 1, + sym_protected_definition, + STATE(1125), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(603), 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, + [32803] = 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(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2052), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2089), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2091), 1, + aux_sym_package_specification_token3, + STATE(989), 1, + sym_overriding_indicator, + STATE(1738), 1, + sym_protected_definition, + STATE(1125), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(603), 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, + [32857] = 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(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2052), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2089), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2091), 1, + aux_sym_package_specification_token3, + STATE(989), 1, + sym_overriding_indicator, + STATE(1706), 1, + sym_protected_definition, + STATE(1125), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(603), 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, + [32911] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2126), 1, + anon_sym_COLON, + ACTIONS(1676), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1678), 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, + [32945] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2132), 1, + aux_sym_with_clause_token2, + STATE(483), 1, + sym_actual_parameter_part, + ACTIONS(2130), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [32985] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + ACTIONS(2114), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2134), 1, + sym_identifier, + ACTIONS(2140), 1, + aux_sym_exception_declaration_token1, + STATE(734), 1, + sym_null_exclusion, + STATE(1978), 1, + sym_access_definition, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2136), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + ACTIONS(2138), 5, aux_sym_iterated_element_association_token1, aux_sym_subprogram_body_token1, aux_sym_declare_expression_token1, aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, - STATE(993), 7, + STATE(1076), 7, sym__name, sym_selected_component, sym_slice, @@ -44108,7 +45906,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [32421] = 14, + [33035] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -44119,494 +45917,101 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(57), 1, aux_sym_pragma_g_token1, - ACTIONS(261), 1, + ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1974), 1, + ACTIONS(2050), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2015), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2017), 1, - aux_sym_package_specification_token3, - STATE(970), 1, - sym_overriding_indicator, - STATE(1707), 1, - sym_protected_definition, - STATE(1171), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(579), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [32475] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1974), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2015), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2017), 1, - aux_sym_package_specification_token3, - STATE(970), 1, - sym_overriding_indicator, - STATE(1843), 1, - sym_protected_definition, - STATE(1171), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(579), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [32529] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - ACTIONS(1844), 1, - aux_sym_array_type_definition_token1, - ACTIONS(2048), 1, - aux_sym_attribute_designator_token1, ACTIONS(2052), 1, - aux_sym_general_access_modifier_token1, - ACTIONS(2054), 1, - aux_sym_component_definition_token1, - ACTIONS(2056), 1, - aux_sym_exception_declaration_token1, - STATE(693), 1, - sym_null_exclusion, - STATE(1036), 1, - sym__subtype_indication, - STATE(2005), 1, - sym_value_sequence, - STATE(1035), 2, - sym_access_definition, - sym_array_type_definition, - STATE(1158), 2, - sym__name, - sym_function_call, - ACTIONS(820), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(536), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [32587] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1974), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2058), 1, - aux_sym_package_specification_token3, - ACTIONS(2060), 1, - aux_sym_subunit_token1, - ACTIONS(2062), 1, - aux_sym_entry_declaration_token1, - STATE(996), 1, - sym_overriding_indicator, - STATE(1097), 1, - sym_function_specification, - STATE(1106), 1, - sym_procedure_specification, - STATE(1108), 1, - sym__subprogram_specification, - STATE(582), 12, - sym_subprogram_body, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_item, - sym_entry_body, - sym_enumeration_representation_clause, - sym_null_procedure_declaration, - sym_record_representation_clause, - sym_subprogram_declaration, - sym_expression_function_declaration, - aux_sym_protected_body_repeat1, - [32641] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_COLON, - ACTIONS(1584), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1586), 18, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - aux_sym_chunk_specification_token1, - anon_sym_SEMI, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [32675] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1974), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2015), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2017), 1, - aux_sym_package_specification_token3, - STATE(970), 1, - sym_overriding_indicator, - STATE(1708), 1, - sym_protected_definition, - STATE(1171), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(579), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [32729] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2068), 1, - aux_sym_expression_token1, - ACTIONS(2070), 1, - aux_sym_expression_token3, - ACTIONS(2072), 1, - aux_sym_expression_token5, - STATE(626), 1, - aux_sym_expression_repeat1, - STATE(629), 1, - aux_sym_expression_repeat2, - STATE(631), 1, - aux_sym_expression_repeat3, - ACTIONS(2066), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32770] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2074), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32799] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2076), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32828] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2078), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2081), 1, - aux_sym_package_specification_token3, - ACTIONS(2083), 1, - aux_sym_relation_membership_token1, - ACTIONS(2086), 1, - aux_sym_access_to_subprogram_definition_token2, ACTIONS(2089), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2092), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2095), 1, - aux_sym_global_mode_token1, - STATE(996), 1, - sym_overriding_indicator, - STATE(1097), 1, - sym_function_specification, - STATE(1106), 1, - sym_procedure_specification, - STATE(1108), 1, - sym__subprogram_specification, - STATE(576), 12, - sym_subprogram_body, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_item, - sym_entry_body, - sym_enumeration_representation_clause, - sym_null_procedure_declaration, - sym_record_representation_clause, - sym_subprogram_declaration, - sym_expression_function_declaration, - aux_sym_protected_body_repeat1, - [32879] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1974), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2062), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2098), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2091), 1, aux_sym_package_specification_token3, - STATE(996), 1, + STATE(989), 1, sym_overriding_indicator, - STATE(1097), 1, + STATE(1739), 1, + sym_protected_definition, + STATE(1125), 3, sym_function_specification, - STATE(1106), 1, sym_procedure_specification, - STATE(1108), 1, sym__subprogram_specification, - STATE(576), 12, - sym_subprogram_body, + STATE(603), 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, - [32930] = 15, + aux_sym_protected_definition_repeat1, + [33089] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(944), 1, + ACTIONS(996), 1, sym_identifier, - ACTIONS(1828), 1, + ACTIONS(1904), 1, aux_sym_relation_membership_token1, - ACTIONS(1844), 1, + ACTIONS(1920), 1, aux_sym_array_type_definition_token1, - ACTIONS(2048), 1, + ACTIONS(2114), 1, aux_sym_attribute_designator_token1, - ACTIONS(2100), 1, - anon_sym_COLON_EQ, - STATE(693), 1, + ACTIONS(2118), 1, + aux_sym_component_definition_token1, + ACTIONS(2142), 1, + aux_sym_general_access_modifier_token1, + STATE(741), 1, sym_null_exclusion, - STATE(987), 1, + STATE(1031), 1, sym__subtype_indication, - STATE(1824), 1, - sym__assign_value, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - STATE(1027), 2, + STATE(1032), 2, sym_access_definition, sym_array_type_definition, - STATE(1158), 2, + STATE(1153), 2, sym__name, sym_function_call, - ACTIONS(820), 4, + ACTIONS(892), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(536), 5, + STATE(557), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [32985] = 13, + [33144] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, + ACTIONS(2144), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1974), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1978), 1, + ACTIONS(2147), 1, aux_sym_package_specification_token3, - ACTIONS(2102), 1, - aux_sym_compilation_unit_token1, - STATE(970), 1, - sym_overriding_indicator, - STATE(1171), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(581), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [33036] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, + ACTIONS(2149), 1, aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1974), 1, + ACTIONS(2152), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, + ACTIONS(2155), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2058), 1, - aux_sym_package_specification_token3, - ACTIONS(2062), 1, + ACTIONS(2158), 1, aux_sym_entry_declaration_token1, - STATE(996), 1, + ACTIONS(2161), 1, + aux_sym_global_mode_token1, + STATE(1052), 1, sym_overriding_indicator, - STATE(1097), 1, - sym_function_specification, - STATE(1106), 1, - sym_procedure_specification, - STATE(1108), 1, + STATE(1102), 1, sym__subprogram_specification, - STATE(582), 12, + STATE(1163), 1, + sym_procedure_specification, + STATE(1187), 1, + sym_function_specification, + STATE(596), 12, sym_subprogram_body, sym__aspect_clause, sym_at_clause, @@ -44619,69 +46024,32 @@ static const uint16_t ts_small_parse_table[] = { sym_subprogram_declaration, sym_expression_function_declaration, aux_sym_protected_body_repeat1, - [33087] = 12, + [33195] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2109), 1, + ACTIONS(31), 1, aux_sym_relation_membership_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2052), 1, + aux_sym_access_to_subprogram_definition_token3, ACTIONS(2112), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2115), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2118), 1, aux_sym_entry_declaration_token1, - ACTIONS(2121), 1, - aux_sym_global_mode_token1, - ACTIONS(2124), 1, - aux_sym_pragma_g_token1, - STATE(970), 1, - sym_overriding_indicator, - ACTIONS(2107), 2, - aux_sym_compilation_unit_token1, + ACTIONS(2164), 1, aux_sym_package_specification_token3, - STATE(1171), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(581), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [33136] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1974), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2062), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2127), 1, - aux_sym_package_specification_token3, - STATE(996), 1, + STATE(1052), 1, sym_overriding_indicator, - STATE(1097), 1, - sym_function_specification, - STATE(1106), 1, - sym_procedure_specification, - STATE(1108), 1, + STATE(1102), 1, sym__subprogram_specification, - STATE(576), 12, + STATE(1163), 1, + sym_procedure_specification, + STATE(1187), 1, + sym_function_specification, + STATE(596), 12, sym_subprogram_body, sym__aspect_clause, sym_at_clause, @@ -44694,88 +46062,127 @@ static const uint16_t ts_small_parse_table[] = { sym_subprogram_declaration, sym_expression_function_declaration, aux_sym_protected_body_repeat1, - [33187] = 15, + [33246] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2166), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2171), 1, + aux_sym_relation_membership_token1, + ACTIONS(2174), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2177), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2180), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2183), 1, + aux_sym_global_mode_token1, + ACTIONS(2186), 1, + aux_sym_pragma_g_token1, + STATE(989), 1, + sym_overriding_indicator, + ACTIONS(2169), 2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token3, + STATE(1125), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(598), 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, + [33295] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(944), 1, + ACTIONS(996), 1, sym_identifier, - ACTIONS(1828), 1, + ACTIONS(1904), 1, aux_sym_relation_membership_token1, - ACTIONS(2131), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2133), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2135), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(675), 1, - sym_general_access_modifier, - STATE(771), 1, + ACTIONS(1920), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2114), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2189), 1, + anon_sym_COLON_EQ, + STATE(741), 1, sym_null_exclusion, - STATE(1249), 1, + STATE(1048), 1, sym__subtype_indication, - STATE(2005), 1, + STATE(1790), 1, + sym__assign_value, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2129), 2, + STATE(1055), 2, + sym_access_definition, + sym_array_type_definition, + STATE(1153), 2, + sym__name, + sym_function_call, + ACTIONS(892), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [33350] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(996), 1, + sym_identifier, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + ACTIONS(2193), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2195), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2197), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(695), 1, + sym_general_access_modifier, + STATE(835), 1, + sym_null_exclusion, + STATE(1362), 1, + sym__subtype_indication, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2191), 2, aux_sym_use_clause_token1, aux_sym_general_access_modifier_token1, - STATE(1158), 2, + STATE(1153), 2, sym__name, sym_function_call, - ACTIONS(820), 4, + ACTIONS(892), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(536), 5, + STATE(557), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [33242] = 13, + [33405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1974), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2062), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2127), 1, - aux_sym_package_specification_token3, - STATE(996), 1, - sym_overriding_indicator, - STATE(1097), 1, - sym_function_specification, - STATE(1106), 1, - sym_procedure_specification, - STATE(1108), 1, - sym__subprogram_specification, - STATE(577), 12, - sym_subprogram_body, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_item, - sym_entry_body, - sym_enumeration_representation_clause, - sym_null_procedure_declaration, - sym_record_representation_clause, - sym_subprogram_declaration, - sym_expression_function_declaration, - aux_sym_protected_body_repeat1, - [33293] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2137), 23, + ACTIONS(2199), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -44799,381 +46206,190 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [33322] = 15, + [33434] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - ACTIONS(1844), 1, - aux_sym_array_type_definition_token1, - ACTIONS(2048), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2054), 1, - aux_sym_component_definition_token1, - ACTIONS(2139), 1, - aux_sym_general_access_modifier_token1, - STATE(693), 1, - sym_null_exclusion, - STATE(1036), 1, - sym__subtype_indication, - STATE(2005), 1, - sym_value_sequence, - STATE(1035), 2, - sym_access_definition, - sym_array_type_definition, - STATE(1158), 2, - sym__name, - sym_function_call, - ACTIONS(820), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(536), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33377] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - ACTIONS(1844), 1, - aux_sym_array_type_definition_token1, - ACTIONS(2048), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2141), 1, - aux_sym_general_access_modifier_token1, - STATE(693), 1, - sym_null_exclusion, - STATE(1053), 1, - sym__subtype_indication, - STATE(2005), 1, - sym_value_sequence, - STATE(1027), 2, - sym_access_definition, - sym_array_type_definition, - STATE(1158), 2, - sym__name, - sym_function_call, - ACTIONS(820), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(536), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33429] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - ACTIONS(2048), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2143), 1, - aux_sym_general_access_modifier_token1, - ACTIONS(2145), 1, - aux_sym_component_definition_token1, - STATE(693), 1, - sym_null_exclusion, - STATE(1222), 1, - sym__subtype_indication, - STATE(2005), 1, - sym_value_sequence, - STATE(1086), 2, - sym_access_definition, - sym__return_subtype_indication, - STATE(1158), 2, - sym__name, - sym_function_call, - ACTIONS(354), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(451), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33481] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(368), 1, + ACTIONS(2201), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, aux_sym_chunk_specification_token1, - ACTIONS(390), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - ACTIONS(2048), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2147), 1, - sym_identifier, - ACTIONS(2151), 1, - aux_sym_component_definition_token1, - STATE(691), 1, - sym_non_empty_mode, - STATE(739), 1, - sym_null_exclusion, - STATE(957), 1, - sym_access_definition, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2149), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(851), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33533] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - ACTIONS(2048), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2153), 1, - aux_sym_general_access_modifier_token1, - STATE(693), 1, - sym_null_exclusion, - STATE(1222), 1, - sym__subtype_indication, - STATE(2005), 1, - sym_value_sequence, - STATE(1158), 2, - sym__name, - sym_function_call, - STATE(1163), 2, - sym_access_definition, - sym__return_subtype_indication, - ACTIONS(354), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(451), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33582] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - ACTIONS(2048), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2155), 1, - aux_sym_component_definition_token1, - STATE(693), 1, - sym_null_exclusion, - STATE(985), 1, - sym_component_definition, - STATE(1095), 1, - sym_access_definition, - STATE(1096), 1, - sym__subtype_indication, - STATE(2005), 1, - sym_value_sequence, - STATE(1158), 2, - sym__name, - sym_function_call, - ACTIONS(820), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(536), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33633] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [33463] = 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(1970), 1, - sym_identifier, - ACTIONS(2157), 1, - aux_sym_package_specification_token1, - ACTIONS(2160), 1, - aux_sym_with_clause_token2, - ACTIONS(2162), 1, - aux_sym_use_clause_token2, - ACTIONS(2164), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2167), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1980), 1, - sym__defining_identifier_list, - STATE(898), 2, - sym_formal_concrete_subprogram_declaration, - sym_formal_abstract_subprogram_declaration, - STATE(599), 10, - sym_use_clause, - sym__generic_formal_parameter_declaration, - sym_formal_object_declaration, - sym__formal_type_declaration, - sym_formal_complete_type_declaration, - sym_formal_incomplete_type_declaration, - sym_formal_subprogram_declaration, - sym_formal_package_declaration, - sym_pragma_g, - aux_sym_generic_formal_part_repeat1, - [33680] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2170), 1, - sym_identifier, - ACTIONS(2173), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(2178), 1, - aux_sym_with_clause_token2, - ACTIONS(2181), 1, - aux_sym_use_clause_token2, - ACTIONS(2184), 1, - aux_sym_pragma_g_token1, - STATE(1980), 1, - sym__defining_identifier_list, - STATE(898), 2, - sym_formal_concrete_subprogram_declaration, - sym_formal_abstract_subprogram_declaration, - ACTIONS(2176), 3, - aux_sym_package_specification_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - STATE(593), 10, - sym_use_clause, - sym__generic_formal_parameter_declaration, - sym_formal_object_declaration, - sym__formal_type_declaration, - sym_formal_complete_type_declaration, - sym_formal_incomplete_type_declaration, - sym_formal_subprogram_declaration, - sym_formal_package_declaration, - sym_pragma_g, - aux_sym_generic_formal_part_repeat1, - [33723] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - ACTIONS(1844), 1, - aux_sym_array_type_definition_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, ACTIONS(2048), 1, - aux_sym_attribute_designator_token1, - STATE(693), 1, - sym_null_exclusion, - STATE(1047), 1, - sym__subtype_indication, - STATE(2005), 1, - sym_value_sequence, - STATE(1048), 2, - sym_access_definition, - sym_array_type_definition, - STATE(1158), 2, - sym__name, - sym_function_call, - ACTIONS(820), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(536), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33772] = 13, + aux_sym_package_specification_token3, + ACTIONS(2050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2052), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2203), 1, + aux_sym_compilation_unit_token1, + STATE(989), 1, + sym_overriding_indicator, + STATE(1125), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(598), 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, + [33514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(368), 1, + ACTIONS(2205), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, aux_sym_chunk_specification_token1, - ACTIONS(390), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - ACTIONS(2048), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2187), 1, - sym_identifier, - STATE(642), 1, - sym_non_empty_mode, - STATE(706), 1, - sym_null_exclusion, - STATE(1003), 1, - sym_access_definition, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2189), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(863), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33821] = 4, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [33543] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 1, - anon_sym_PIPE, - STATE(596), 1, - aux_sym_membership_choice_list_repeat1, - ACTIONS(2191), 19, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2052), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2112), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2207), 1, + aux_sym_package_specification_token3, + STATE(1052), 1, + sym_overriding_indicator, + STATE(1102), 1, + sym__subprogram_specification, + STATE(1163), 1, + sym_procedure_specification, + STATE(1187), 1, + sym_function_specification, + STATE(597), 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, + [33594] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2052), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2108), 1, + aux_sym_package_specification_token3, + ACTIONS(2112), 1, + aux_sym_entry_declaration_token1, + STATE(1052), 1, + sym_overriding_indicator, + STATE(1102), 1, + sym__subprogram_specification, + STATE(1163), 1, + sym_procedure_specification, + STATE(1187), 1, + sym_function_specification, + STATE(608), 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, + [33645] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2211), 1, + aux_sym_expression_token1, + ACTIONS(2213), 1, + aux_sym_expression_token3, + ACTIONS(2215), 1, + aux_sym_expression_token5, + STATE(648), 1, + aux_sym_expression_repeat2, + STATE(655), 1, + aux_sym_expression_repeat1, + STATE(663), 1, + aux_sym_expression_repeat3, + ACTIONS(2209), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -45184,259 +46400,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, aux_sym_package_specification_token2, aux_sym_with_clause_token2, + anon_sym_PIPE, aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, aux_sym_expression_token2, - aux_sym_expression_token3, aux_sym_expression_token4, - aux_sym_expression_token5, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [33852] = 13, + [33686] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2052), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2112), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2207), 1, + aux_sym_package_specification_token3, + STATE(1052), 1, + sym_overriding_indicator, + STATE(1102), 1, + sym__subprogram_specification, + STATE(1163), 1, + sym_procedure_specification, + STATE(1187), 1, + sym_function_specification, + STATE(596), 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, + [33737] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(944), 1, + ACTIONS(578), 1, sym_identifier, - ACTIONS(1828), 1, + ACTIONS(1904), 1, aux_sym_relation_membership_token1, - ACTIONS(1844), 1, - aux_sym_array_type_definition_token1, - ACTIONS(2048), 1, + ACTIONS(2114), 1, aux_sym_attribute_designator_token1, - STATE(693), 1, + ACTIONS(2217), 1, + aux_sym_general_access_modifier_token1, + ACTIONS(2219), 1, + aux_sym_component_definition_token1, + STATE(741), 1, sym_null_exclusion, - STATE(987), 1, + STATE(1390), 1, sym__subtype_indication, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - STATE(1027), 2, + STATE(1105), 2, + sym_access_definition, + sym__return_subtype_indication, + STATE(1153), 2, + sym__name, + sym_function_call, + ACTIONS(366), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(478), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [33789] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(996), 1, + sym_identifier, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + ACTIONS(1920), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2114), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2221), 1, + aux_sym_general_access_modifier_token1, + STATE(741), 1, + sym_null_exclusion, + STATE(1023), 1, + sym__subtype_indication, + STATE(2045), 1, + sym_value_sequence, + STATE(1055), 2, sym_access_definition, sym_array_type_definition, - STATE(1158), 2, + STATE(1153), 2, sym__name, sym_function_call, - ACTIONS(820), 4, + ACTIONS(892), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(536), 5, + STATE(557), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [33901] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2198), 1, - anon_sym_PIPE, - STATE(596), 1, - aux_sym_membership_choice_list_repeat1, - ACTIONS(2196), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33932] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(1970), 1, - sym_identifier, - ACTIONS(2160), 1, - aux_sym_with_clause_token2, - ACTIONS(2162), 1, - aux_sym_use_clause_token2, - STATE(1980), 1, - sym__defining_identifier_list, - STATE(898), 2, - sym_formal_concrete_subprogram_declaration, - sym_formal_abstract_subprogram_declaration, - ACTIONS(2200), 3, - aux_sym_package_specification_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - STATE(593), 10, - sym_use_clause, - sym__generic_formal_parameter_declaration, - sym_formal_object_declaration, - sym__formal_type_declaration, - sym_formal_complete_type_declaration, - sym_formal_incomplete_type_declaration, - sym_formal_subprogram_declaration, - sym_formal_package_declaration, - sym_pragma_g, - aux_sym_generic_formal_part_repeat1, - [33975] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2198), 1, - anon_sym_PIPE, - STATE(598), 1, - aux_sym_membership_choice_list_repeat1, - ACTIONS(2202), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [34006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2206), 1, - anon_sym_DOT_DOT, - ACTIONS(2204), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [34035] = 14, + [33841] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(1828), 1, + ACTIONS(380), 1, + aux_sym_chunk_specification_token1, + ACTIONS(402), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(1904), 1, aux_sym_relation_membership_token1, - ACTIONS(2048), 1, + ACTIONS(2114), 1, aux_sym_attribute_designator_token1, - ACTIONS(2155), 1, + ACTIONS(2223), 1, + sym_identifier, + ACTIONS(2227), 1, aux_sym_component_definition_token1, - STATE(693), 1, + STATE(715), 1, + sym_non_empty_mode, + STATE(783), 1, sym_null_exclusion, - STATE(1095), 1, + STATE(1005), 1, sym_access_definition, - STATE(1096), 1, - sym__subtype_indication, - STATE(1128), 1, - sym_component_definition, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - STATE(1158), 2, - sym__name, - sym_function_call, - ACTIONS(820), 4, + ACTIONS(2225), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(536), 5, + STATE(876), 7, + sym__name, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [34086] = 14, + sym_function_call, + [33893] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(944), 1, + ACTIONS(996), 1, sym_identifier, - ACTIONS(1828), 1, + ACTIONS(1904), 1, aux_sym_relation_membership_token1, - ACTIONS(2048), 1, + ACTIONS(2114), 1, aux_sym_attribute_designator_token1, - ACTIONS(2155), 1, + ACTIONS(2229), 1, aux_sym_component_definition_token1, - STATE(693), 1, + STATE(741), 1, sym_null_exclusion, - STATE(1095), 1, - sym_access_definition, - STATE(1096), 1, - sym__subtype_indication, - STATE(1126), 1, + STATE(1140), 1, sym_component_definition, - STATE(2005), 1, + STATE(1157), 1, + sym__subtype_indication, + STATE(1158), 1, + sym_access_definition, + STATE(2045), 1, sym_value_sequence, - STATE(1158), 2, + STATE(1153), 2, sym__name, sym_function_call, - ACTIONS(820), 4, + ACTIONS(892), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(536), 5, + STATE(557), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [34137] = 9, + [33944] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(364), 1, + ACTIONS(376), 1, anon_sym_LPAREN, - ACTIONS(2208), 1, + ACTIONS(2231), 1, sym_identifier, - ACTIONS(2210), 1, + ACTIONS(2233), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2237), 1, aux_sym_range_attribute_designator_token1, - STATE(444), 1, + STATE(464), 1, sym_attribute_designator, - STATE(574), 1, + STATE(602), 1, sym_range_attribute_designator, - ACTIONS(2212), 4, + ACTIONS(2235), 4, aux_sym_attribute_designator_token1, aux_sym_attribute_designator_token2, aux_sym_attribute_designator_token3, aux_sym_attribute_designator_token4, - STATE(449), 11, + STATE(467), 11, sym__parenthesized_expression, sym__aggregate, sym__delta_aggregate, @@ -45448,200 +46628,145 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [34178] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2191), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [34204] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [34230] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2218), 1, - sym_identifier, - ACTIONS(2220), 19, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_use_clause_token2, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_interface_type_definition_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - aux_sym_pragma_g_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_subtype_declaration_token1, - [34258] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2222), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [34284] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2224), 1, - sym_identifier, - ACTIONS(2226), 19, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_use_clause_token2, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_interface_type_definition_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - aux_sym_pragma_g_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_subtype_declaration_token1, - [34312] = 12, + [33985] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(528), 1, + ACTIONS(996), 1, sym_identifier, - ACTIONS(1828), 1, + ACTIONS(1904), 1, aux_sym_relation_membership_token1, - ACTIONS(2048), 1, + ACTIONS(2114), 1, aux_sym_attribute_designator_token1, - STATE(693), 1, + ACTIONS(2229), 1, + aux_sym_component_definition_token1, + STATE(741), 1, sym_null_exclusion, - STATE(1222), 1, + STATE(1157), 1, sym__subtype_indication, - STATE(2005), 1, + STATE(1158), 1, + sym_access_definition, + STATE(1173), 1, + sym_component_definition, + STATE(2045), 1, sym_value_sequence, - STATE(1158), 2, + STATE(1153), 2, sym__name, sym_function_call, - STATE(1159), 2, + ACTIONS(892), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [34036] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(578), 1, + sym_identifier, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + ACTIONS(2114), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2239), 1, + aux_sym_general_access_modifier_token1, + STATE(741), 1, + sym_null_exclusion, + STATE(1390), 1, + sym__subtype_indication, + STATE(2045), 1, + sym_value_sequence, + STATE(1135), 2, sym_access_definition, sym__return_subtype_indication, - ACTIONS(354), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(451), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [34358] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - ACTIONS(2048), 1, - aux_sym_attribute_designator_token1, - STATE(693), 1, - sym_null_exclusion, - STATE(1386), 1, - sym__subtype_indication, - STATE(2005), 1, - sym_value_sequence, - STATE(1158), 2, + STATE(1153), 2, sym__name, sym_function_call, - STATE(1395), 2, - sym__loop_parameter_subtype_indication, - sym_access_definition, - ACTIONS(820), 4, + ACTIONS(366), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(536), 5, + STATE(478), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [34404] = 2, + [34085] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2228), 20, + ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2244), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(2249), 1, + aux_sym_with_clause_token2, + ACTIONS(2252), 1, + aux_sym_use_clause_token2, + ACTIONS(2255), 1, + aux_sym_pragma_g_token1, + STATE(2017), 1, + sym__defining_identifier_list, + STATE(909), 2, + sym_formal_concrete_subprogram_declaration, + sym_formal_abstract_subprogram_declaration, + ACTIONS(2247), 3, + aux_sym_package_specification_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + STATE(616), 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, + [34128] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2260), 1, + anon_sym_PIPE, + STATE(619), 1, + aux_sym_membership_choice_list_repeat1, + ACTIONS(2258), 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, + [34159] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2264), 1, + anon_sym_DOT_DOT, + ACTIONS(2262), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -45662,32 +46787,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [34430] = 11, + [34188] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2260), 1, + anon_sym_PIPE, + STATE(624), 1, + aux_sym_membership_choice_list_repeat1, + ACTIONS(2266), 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, + [34219] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2230), 1, + ACTIONS(996), 1, sym_identifier, - ACTIONS(2234), 1, - anon_sym_SEMI, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - STATE(1291), 1, - sym_subprogram_default, - STATE(1630), 1, - sym_aspect_specification, - STATE(2005), 1, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + ACTIONS(1920), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2114), 1, + aux_sym_attribute_designator_token1, + STATE(741), 1, + sym_null_exclusion, + STATE(1060), 1, + sym__subtype_indication, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2238), 2, - aux_sym_primary_null_token1, - anon_sym_LT_GT, - ACTIONS(2232), 4, + STATE(1061), 2, + sym_access_definition, + sym_array_type_definition, + STATE(1153), 2, + sym__name, + sym_function_call, + ACTIONS(892), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(971), 7, + STATE(557), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [34268] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + aux_sym_chunk_specification_token1, + ACTIONS(402), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + ACTIONS(2114), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2268), 1, + sym_identifier, + STATE(668), 1, + sym_non_empty_mode, + STATE(729), 1, + sym_null_exclusion, + STATE(1020), 1, + sym_access_definition, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2270), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(893), 7, sym__name, sym_selected_component, sym_slice, @@ -45695,69 +46886,367 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [34474] = 12, + [34317] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(528), 1, + ACTIONS(996), 1, sym_identifier, - ACTIONS(1828), 1, + ACTIONS(1904), 1, aux_sym_relation_membership_token1, - ACTIONS(2048), 1, + ACTIONS(1920), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2114), 1, aux_sym_attribute_designator_token1, - STATE(693), 1, + STATE(741), 1, sym_null_exclusion, - STATE(1222), 1, + STATE(1048), 1, sym__subtype_indication, - STATE(2005), 1, + STATE(2045), 1, + sym_value_sequence, + STATE(1055), 2, + sym_access_definition, + sym_array_type_definition, + STATE(1153), 2, + sym__name, + sym_function_call, + ACTIONS(892), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [34366] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(2046), 1, + sym_identifier, + ACTIONS(2272), 1, + aux_sym_package_specification_token1, + ACTIONS(2275), 1, + aux_sym_with_clause_token2, + ACTIONS(2277), 1, + aux_sym_use_clause_token2, + ACTIONS(2279), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2282), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(2017), 1, + sym__defining_identifier_list, + STATE(909), 2, + sym_formal_concrete_subprogram_declaration, + sym_formal_abstract_subprogram_declaration, + STATE(626), 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, + [34413] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2287), 1, + anon_sym_PIPE, + STATE(624), 1, + aux_sym_membership_choice_list_repeat1, + ACTIONS(2285), 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, + [34444] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(996), 1, + sym_identifier, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + ACTIONS(2114), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2229), 1, + aux_sym_component_definition_token1, + STATE(741), 1, + sym_null_exclusion, + STATE(1034), 1, + sym_component_definition, + STATE(1157), 1, + sym__subtype_indication, + STATE(1158), 1, + sym_access_definition, + STATE(2045), 1, + sym_value_sequence, + STATE(1153), 2, + sym__name, + sym_function_call, + ACTIONS(892), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [34495] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(2046), 1, + sym_identifier, + ACTIONS(2275), 1, + aux_sym_with_clause_token2, + ACTIONS(2277), 1, + aux_sym_use_clause_token2, + STATE(2017), 1, + sym__defining_identifier_list, + STATE(909), 2, + sym_formal_concrete_subprogram_declaration, + sym_formal_abstract_subprogram_declaration, + ACTIONS(2290), 3, + aux_sym_package_specification_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + STATE(616), 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, + [34538] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2292), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [34564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2294), 1, + sym_identifier, + ACTIONS(2296), 19, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_use_clause_token2, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_interface_type_definition_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_subtype_declaration_token1, + [34592] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2298), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [34618] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2300), 1, + sym_identifier, + ACTIONS(2304), 1, + anon_sym_SEMI, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + STATE(1309), 1, + sym_subprogram_default, + STATE(1866), 1, + sym_aspect_specification, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2308), 2, + aux_sym_primary_null_token1, + anon_sym_LT_GT, + ACTIONS(2302), 4, + sym_gnatprep_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, + [34662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2310), 1, + sym_identifier, + ACTIONS(2312), 19, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_use_clause_token2, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_interface_type_definition_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_subtype_declaration_token1, + [34690] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2314), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [34716] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(578), 1, + sym_identifier, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + ACTIONS(2114), 1, + aux_sym_attribute_designator_token1, + STATE(741), 1, + sym_null_exclusion, + STATE(1390), 1, + sym__subtype_indication, + STATE(2045), 1, sym_value_sequence, STATE(1127), 2, sym_access_definition, sym__return_subtype_indication, - STATE(1158), 2, + STATE(1153), 2, sym__name, sym_function_call, - ACTIONS(354), 4, + ACTIONS(366), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(451), 5, + STATE(478), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [34520] = 3, + [34762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2240), 1, - sym_identifier, - ACTIONS(2242), 19, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_use_clause_token2, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_interface_type_definition_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - aux_sym_pragma_g_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_subtype_declaration_token1, - [34548] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2244), 20, + ACTIONS(2316), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -45778,12 +47267,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, - [34574] = 3, + [34788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2246), 1, + ACTIONS(2318), 1, sym_identifier, - ACTIONS(2248), 19, + ACTIONS(2320), 19, aux_sym_iterated_element_association_token1, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, @@ -45803,39 +47292,274 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_gnatprep_declarative_if_statement_token3, aux_sym_gnatprep_declarative_if_statement_token4, aux_sym_subtype_declaration_token1, - [34602] = 11, + [34816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2322), 1, + sym_identifier, + ACTIONS(2324), 19, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_use_clause_token2, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_interface_type_definition_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_subtype_declaration_token1, + [34844] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2326), 1, + sym_identifier, + ACTIONS(2328), 19, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_use_clause_token2, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_interface_type_definition_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_subtype_declaration_token1, + [34872] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2330), 1, + sym_identifier, + ACTIONS(2332), 19, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_use_clause_token2, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_interface_type_definition_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_subtype_declaration_token1, + [34900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2334), 1, + sym_identifier, + ACTIONS(2336), 19, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_use_clause_token2, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_interface_type_definition_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_subtype_declaration_token1, + [34928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2338), 1, + sym_identifier, + ACTIONS(2340), 19, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_use_clause_token2, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_interface_type_definition_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_subtype_declaration_token1, + [34956] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - ACTIONS(2042), 1, + ACTIONS(578), 1, sym_identifier, - ACTIONS(2048), 1, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + ACTIONS(2114), 1, aux_sym_attribute_designator_token1, - ACTIONS(2050), 1, - aux_sym_exception_declaration_token1, - STATE(729), 1, + STATE(741), 1, sym_null_exclusion, - STATE(1954), 1, - sym_access_definition, - STATE(2005), 1, + STATE(1390), 1, + sym__subtype_indication, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2044), 4, + STATE(1115), 2, + sym_access_definition, + sym__return_subtype_indication, + STATE(1153), 2, + sym__name, + sym_function_call, + ACTIONS(366), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(993), 7, - sym__name, + STATE(478), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, + [35002] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(996), 1, + sym_identifier, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + ACTIONS(2114), 1, + aux_sym_attribute_designator_token1, + STATE(741), 1, + sym_null_exclusion, + STATE(1450), 1, + sym__subtype_indication, + STATE(2045), 1, + sym_value_sequence, + STATE(1153), 2, + sym__name, sym_function_call, - [34645] = 12, + STATE(1449), 2, + sym__loop_parameter_subtype_indication, + sym_access_definition, + ACTIONS(892), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [35048] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2342), 1, + sym_identifier, + ACTIONS(2344), 19, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_use_clause_token2, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_interface_type_definition_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_subtype_declaration_token1, + [35076] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2285), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [35102] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 1, + sym_identifier, + ACTIONS(2348), 19, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_use_clause_token2, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_interface_type_definition_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_subtype_declaration_token1, + [35130] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -45846,19 +47570,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(57), 1, aux_sym_pragma_g_token1, - ACTIONS(261), 1, + ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2250), 1, + ACTIONS(2350), 1, aux_sym_compilation_unit_token1, - ACTIONS(2252), 1, + ACTIONS(2352), 1, aux_sym_package_specification_token3, - ACTIONS(2254), 1, + ACTIONS(2354), 1, aux_sym_allocator_token1, - STATE(1642), 1, - sym_task_definition, - STATE(1853), 1, + STATE(1825), 1, sym_overriding_indicator, - STATE(664), 9, + STATE(1826), 1, + sym_task_definition, + STATE(691), 9, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -45868,26 +47592,441 @@ static const uint16_t ts_small_parse_table[] = { sym_pragma_g, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [34690] = 8, + [35175] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1964), 1, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, aux_sym_chunk_specification_token1, - ACTIONS(1966), 1, + ACTIONS(402), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(1904), 1, aux_sym_relation_membership_token1, - ACTIONS(2206), 1, + ACTIONS(2356), 1, + sym_identifier, + STATE(718), 1, + sym_non_empty_mode, + STATE(812), 1, + sym_null_exclusion, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2358), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(877), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35218] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2213), 1, + aux_sym_expression_token3, + STATE(649), 1, + aux_sym_expression_repeat2, + ACTIONS(2360), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [35247] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2364), 1, + aux_sym_expression_token3, + STATE(649), 1, + aux_sym_expression_repeat2, + ACTIONS(2362), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [35276] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(2231), 1, + sym_identifier, + ACTIONS(2233), 1, + anon_sym_LBRACK, + STATE(464), 1, + sym_attribute_designator, + ACTIONS(2235), 4, + aux_sym_attribute_designator_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + aux_sym_attribute_designator_token4, + STATE(467), 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, + [35311] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2367), 1, + sym_identifier, + ACTIONS(2371), 1, + aux_sym_package_specification_token3, + ACTIONS(2373), 1, + aux_sym_at_clause_token1, + STATE(685), 1, + sym_mod_clause, + STATE(2045), 1, + sym_value_sequence, + STATE(699), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2369), 4, + sym_gnatprep_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, + [35352] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(2231), 1, + sym_identifier, + ACTIONS(2233), 1, + anon_sym_LBRACK, + STATE(1190), 1, + sym_attribute_designator, + ACTIONS(2235), 4, + aux_sym_attribute_designator_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + aux_sym_attribute_designator_token4, + STATE(467), 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, + [35387] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + ACTIONS(2114), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2134), 1, + sym_identifier, + ACTIONS(2140), 1, + aux_sym_exception_declaration_token1, + STATE(734), 1, + sym_null_exclusion, + STATE(1978), 1, + sym_access_definition, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2136), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1076), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35430] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(996), 1, + sym_identifier, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + ACTIONS(2114), 1, + aux_sym_attribute_designator_token1, + STATE(741), 1, + sym_null_exclusion, + STATE(1130), 1, + sym_access_definition, + STATE(1133), 1, + sym__subtype_indication, + STATE(2045), 1, + sym_value_sequence, + STATE(1153), 2, + sym__name, + sym_function_call, + ACTIONS(892), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [35475] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2211), 1, + aux_sym_expression_token1, + STATE(659), 1, + aux_sym_expression_repeat1, + ACTIONS(2360), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [35504] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + ACTIONS(2375), 1, + sym_identifier, + ACTIONS(2379), 1, + anon_sym_LPAREN, + STATE(530), 1, + sym__subtype_indication_paren_constraint, + STATE(687), 1, + sym_subpool_specification, + STATE(795), 1, + sym_null_exclusion, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2377), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(487), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35547] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2350), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2352), 1, + aux_sym_package_specification_token3, + ACTIONS(2381), 1, + aux_sym_allocator_token1, + STATE(1585), 1, + sym_task_definition, + STATE(1825), 1, + sym_overriding_indicator, + STATE(691), 9, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [35592] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2350), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2352), 1, + aux_sym_package_specification_token3, + ACTIONS(2383), 1, + aux_sym_allocator_token1, + STATE(1652), 1, + sym_task_definition, + STATE(1825), 1, + sym_overriding_indicator, + STATE(691), 9, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [35637] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2387), 1, + aux_sym_expression_token1, + STATE(659), 1, + aux_sym_expression_repeat1, + ACTIONS(2385), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [35666] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2350), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2352), 1, + aux_sym_package_specification_token3, + ACTIONS(2390), 1, + aux_sym_allocator_token1, + STATE(1655), 1, + sym_task_definition, + STATE(1825), 1, + sym_overriding_indicator, + STATE(691), 9, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [35711] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2038), 1, + aux_sym_chunk_specification_token1, + ACTIONS(2040), 1, + aux_sym_relation_membership_token1, + ACTIONS(2264), 1, anon_sym_DOT_DOT, - STATE(492), 1, + STATE(515), 1, sym_relational_operator, - ACTIONS(1958), 3, + ACTIONS(2032), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1960), 3, + ACTIONS(2034), 3, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1962), 9, + ACTIONS(2036), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -45897,287 +48036,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token1, aux_sym_expression_token3, aux_sym_expression_token5, - [34727] = 12, + [35748] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - ACTIONS(2048), 1, - aux_sym_attribute_designator_token1, - STATE(693), 1, - sym_null_exclusion, - STATE(1100), 1, - sym_access_definition, - STATE(1101), 1, - sym__subtype_indication, - STATE(2005), 1, - sym_value_sequence, - STATE(1158), 2, - sym__name, - sym_function_call, - ACTIONS(820), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(536), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [34772] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2250), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2252), 1, - aux_sym_package_specification_token3, - ACTIONS(2256), 1, - aux_sym_allocator_token1, - STATE(1755), 1, - sym_task_definition, - STATE(1853), 1, - sym_overriding_indicator, - STATE(664), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [34817] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2250), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2252), 1, - aux_sym_package_specification_token3, - ACTIONS(2258), 1, - aux_sym_allocator_token1, - STATE(1754), 1, - sym_task_definition, - STATE(1853), 1, - sym_overriding_indicator, - STATE(664), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [34862] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(368), 1, - aux_sym_chunk_specification_token1, - ACTIONS(390), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - ACTIONS(2260), 1, - sym_identifier, - STATE(687), 1, - sym_non_empty_mode, - STATE(823), 1, - sym_null_exclusion, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2262), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(855), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34905] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(2208), 1, - sym_identifier, - ACTIONS(2210), 1, - anon_sym_LBRACK, - STATE(444), 1, - sym_attribute_designator, - ACTIONS(2212), 4, - aux_sym_attribute_designator_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - aux_sym_attribute_designator_token4, - STATE(449), 11, - sym__parenthesized_expression, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [34940] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2068), 1, - aux_sym_expression_token1, - STATE(635), 1, - aux_sym_expression_repeat1, - ACTIONS(2264), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [34969] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2266), 1, - sym_identifier, - ACTIONS(2270), 1, - aux_sym_package_specification_token3, - ACTIONS(2272), 1, - aux_sym_at_clause_token1, - STATE(674), 1, - sym_mod_clause, - STATE(2005), 1, - sym_value_sequence, - STATE(657), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2268), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1045), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35010] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2250), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2252), 1, - aux_sym_package_specification_token3, - ACTIONS(2274), 1, - aux_sym_allocator_token1, - STATE(1555), 1, - sym_task_definition, - STATE(1853), 1, - sym_overriding_indicator, - STATE(664), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35055] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2070), 1, - aux_sym_expression_token3, - STATE(632), 1, - aux_sym_expression_repeat2, - ACTIONS(2264), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [35084] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2278), 1, + ACTIONS(2394), 1, aux_sym_expression_token5, - STATE(630), 1, + STATE(662), 1, aux_sym_expression_repeat3, - ACTIONS(2276), 17, + ACTIONS(2392), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -46195,14 +48061,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [35113] = 4, + [35777] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2072), 1, + ACTIONS(2215), 1, aux_sym_expression_token5, - STATE(630), 1, + STATE(662), 1, aux_sym_expression_repeat3, - ACTIONS(2264), 17, + ACTIONS(2360), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -46220,32 +48086,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [35142] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2283), 1, - aux_sym_expression_token3, - STATE(632), 1, - aux_sym_expression_repeat2, - ACTIONS(2281), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [35171] = 12, + [35806] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -46256,19 +48097,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(57), 1, aux_sym_pragma_g_token1, - ACTIONS(261), 1, + ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2250), 1, + ACTIONS(2350), 1, aux_sym_compilation_unit_token1, - ACTIONS(2252), 1, + ACTIONS(2352), 1, aux_sym_package_specification_token3, - ACTIONS(2286), 1, + ACTIONS(2397), 1, aux_sym_allocator_token1, - STATE(1853), 1, + STATE(1825), 1, sym_overriding_indicator, - STATE(1854), 1, + STATE(1841), 1, sym_task_definition, - STATE(664), 9, + STATE(691), 9, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -46278,136 +48119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pragma_g, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [35216] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(2208), 1, - sym_identifier, - ACTIONS(2210), 1, - anon_sym_LBRACK, - STATE(1122), 1, - sym_attribute_designator, - ACTIONS(2212), 4, - aux_sym_attribute_designator_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - aux_sym_attribute_designator_token4, - STATE(449), 11, - sym__parenthesized_expression, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [35251] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2290), 1, - aux_sym_expression_token1, - STATE(635), 1, - aux_sym_expression_repeat1, - ACTIONS(2288), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [35280] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - ACTIONS(2293), 1, - sym_identifier, - ACTIONS(2297), 1, - anon_sym_LPAREN, - STATE(515), 1, - sym__subtype_indication_paren_constraint, - STATE(673), 1, - sym_subpool_specification, - STATE(765), 1, - sym_null_exclusion, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2295), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(480), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35323] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2276), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [35347] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2281), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [35371] = 11, + [35851] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -46418,17 +48130,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(57), 1, aux_sym_pragma_g_token1, - ACTIONS(261), 1, + ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2250), 1, + ACTIONS(2350), 1, aux_sym_compilation_unit_token1, - ACTIONS(2252), 1, + ACTIONS(2352), 1, aux_sym_package_specification_token3, - STATE(1853), 1, + STATE(1825), 1, sym_overriding_indicator, - STATE(1866), 1, + STATE(1908), 1, sym_task_definition, - STATE(664), 9, + STATE(691), 9, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -46438,133 +48150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pragma_g, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [35413] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2288), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [35437] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2299), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [35461] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - ACTIONS(2048), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2301), 1, - sym_identifier, - STATE(719), 1, - sym_null_exclusion, - STATE(1001), 1, - sym_access_definition, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2303), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(870), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35501] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2305), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [35525] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - ACTIONS(2042), 1, - sym_identifier, - ACTIONS(2048), 1, - aux_sym_attribute_designator_token1, - STATE(729), 1, - sym_null_exclusion, - STATE(1954), 1, - sym_access_definition, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2044), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(993), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35565] = 11, + [35893] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -46575,17 +48161,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(57), 1, aux_sym_pragma_g_token1, - ACTIONS(261), 1, + ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2250), 1, + ACTIONS(2350), 1, aux_sym_compilation_unit_token1, - ACTIONS(2252), 1, + ACTIONS(2352), 1, aux_sym_package_specification_token3, - STATE(1746), 1, - sym_task_definition, - STATE(1853), 1, + STATE(1825), 1, sym_overriding_indicator, - STATE(664), 9, + STATE(1981), 1, + sym_task_definition, + STATE(691), 9, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -46595,1031 +48181,29 @@ static const uint16_t ts_small_parse_table[] = { sym_pragma_g, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [35607] = 10, + [35935] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, - sym_identifier, - ACTIONS(2311), 1, - aux_sym_component_choice_list_token1, - STATE(1174), 1, - sym_exception_choice, - STATE(1777), 1, - sym_exception_choice_list, - STATE(1779), 1, - sym_choice_parameter_specification, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2309), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(975), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35647] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2313), 1, - sym_identifier, - ACTIONS(2317), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2319), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2321), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2323), 1, - aux_sym_general_access_modifier_token1, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2315), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(804), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35687] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(1744), 1, - sym_tick, - ACTIONS(2327), 1, - aux_sym_iterator_filter_token1, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1273), 1, - sym_iterator_filter, - ACTIONS(1726), 2, - anon_sym_DASH, - anon_sym_STAR, - ACTIONS(2325), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - ACTIONS(1728), 7, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - [35727] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2230), 1, - sym_identifier, - ACTIONS(2329), 1, - aux_sym_private_type_declaration_token1, - STATE(1304), 1, - sym_subprogram_default, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2238), 2, - aux_sym_primary_null_token1, - anon_sym_LT_GT, - ACTIONS(2232), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(971), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35765] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, + ACTIONS(1904), 1, aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2250), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2252), 1, - aux_sym_package_specification_token3, - STATE(1548), 1, - sym_task_definition, - STATE(1853), 1, - sym_overriding_indicator, - STATE(664), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35807] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - ACTIONS(2048), 1, + ACTIONS(2114), 1, aux_sym_attribute_designator_token1, - ACTIONS(2331), 1, - sym_identifier, - STATE(738), 1, - sym_null_exclusion, - STATE(853), 1, - sym_access_definition, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2333), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(783), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35847] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - ACTIONS(2048), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2335), 1, + ACTIONS(2399), 1, sym_identifier, STATE(760), 1, sym_null_exclusion, - STATE(1137), 1, + STATE(1150), 1, sym_access_definition, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2337), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(914), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35887] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2339), 1, - sym_identifier, - ACTIONS(2343), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2345), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2347), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2349), 1, - aux_sym_general_access_modifier_token1, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2341), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(781), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35927] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2250), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2252), 1, - aux_sym_package_specification_token3, - STATE(1853), 1, - sym_overriding_indicator, - STATE(1935), 1, - sym_task_definition, - STATE(664), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35969] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(1744), 1, - sym_tick, - ACTIONS(2327), 1, - aux_sym_iterator_filter_token1, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1212), 1, - sym_iterator_filter, - ACTIONS(1726), 2, - anon_sym_DASH, - anon_sym_STAR, - ACTIONS(2351), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - ACTIONS(1728), 7, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - [36009] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2250), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2252), 1, - aux_sym_package_specification_token3, - STATE(1745), 1, - sym_task_definition, - STATE(1853), 1, - sym_overriding_indicator, - STATE(664), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [36051] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2266), 1, - sym_identifier, - ACTIONS(2353), 1, - aux_sym_package_specification_token3, - STATE(2005), 1, - sym_value_sequence, - STATE(681), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2268), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1045), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36086] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - STATE(771), 1, - sym_null_exclusion, - STATE(1154), 1, - sym__subtype_indication, - STATE(2005), 1, - sym_value_sequence, - STATE(1158), 2, - sym__name, - sym_function_call, - ACTIONS(820), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(536), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [36125] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2311), 1, - aux_sym_component_choice_list_token1, - ACTIONS(2355), 1, - sym_identifier, - STATE(1174), 1, - sym_exception_choice, - STATE(1556), 1, - sym_exception_choice_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2309), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(975), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36162] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2357), 1, - sym_identifier, - ACTIONS(2361), 1, - aux_sym_use_clause_token1, - ACTIONS(2363), 1, - aux_sym_use_clause_token2, - STATE(1995), 1, - sym__name_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2359), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(925), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36199] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - STATE(771), 1, - sym_null_exclusion, - STATE(1131), 1, - sym__subtype_indication, - STATE(2005), 1, - sym_value_sequence, - STATE(1158), 2, - sym__name, - sym_function_call, - ACTIONS(820), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(536), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [36238] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - STATE(771), 1, - sym_null_exclusion, - STATE(1074), 1, - sym__subtype_indication, - STATE(2005), 1, - sym_value_sequence, - STATE(1158), 2, - sym__name, - sym_function_call, - ACTIONS(820), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(536), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [36277] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1970), 1, - sym_identifier, - ACTIONS(2365), 1, - aux_sym_primary_null_token1, - ACTIONS(2367), 1, - aux_sym_case_expression_token1, - STATE(1400), 1, - sym_variant_part, - STATE(1790), 1, - sym_component_list, - STATE(1791), 1, - sym__defining_identifier_list, - STATE(669), 9, - sym__component_item, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_component_list_repeat1, - [36316] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2369), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2371), 1, - aux_sym_package_specification_token3, - STATE(1853), 1, - sym_overriding_indicator, - STATE(672), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [36355] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - STATE(771), 1, - sym_null_exclusion, - STATE(1534), 1, - sym__subtype_indication, - STATE(2005), 1, - sym_value_sequence, - STATE(1158), 2, - sym__name, - sym_function_call, - ACTIONS(820), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(536), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [36394] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1600), 1, - aux_sym_range_attribute_designator_token1, - STATE(733), 1, - sym_range_constraint, - ACTIONS(2373), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [36421] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - STATE(771), 1, - sym_null_exclusion, - STATE(1092), 1, - sym__subtype_indication, - STATE(2005), 1, - sym_value_sequence, - STATE(1158), 2, - sym__name, - sym_function_call, - ACTIONS(820), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(536), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [36460] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1600), 1, - aux_sym_range_attribute_designator_token1, - STATE(734), 1, - sym_range_constraint, - ACTIONS(2375), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [36487] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1970), 1, - sym_identifier, - ACTIONS(2367), 1, - aux_sym_case_expression_token1, - STATE(1475), 1, - sym_variant_part, - STATE(1791), 1, - sym__defining_identifier_list, - ACTIONS(2377), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - STATE(684), 9, - sym__component_item, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_component_list_repeat1, - [36524] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - STATE(771), 1, - sym_null_exclusion, - STATE(1463), 1, - sym__subtype_indication, - STATE(2005), 1, - sym_value_sequence, - STATE(1158), 2, - sym__name, - sym_function_call, - ACTIONS(820), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(536), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [36563] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - STATE(771), 1, - sym_null_exclusion, - STATE(1093), 1, - sym__subtype_indication, - STATE(2005), 1, - sym_value_sequence, - STATE(1158), 2, - sym__name, - sym_function_call, - ACTIONS(820), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(536), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [36602] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2379), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2384), 1, - aux_sym_relation_membership_token1, - ACTIONS(2387), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2390), 1, - aux_sym_global_mode_token1, - ACTIONS(2393), 1, - aux_sym_pragma_g_token1, - STATE(1853), 1, - sym_overriding_indicator, - ACTIONS(2382), 2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token3, - STATE(672), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [36639] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - ACTIONS(2293), 1, - sym_identifier, - STATE(514), 1, - sym__subtype_indication_paren_constraint, - STATE(765), 1, - sym_null_exclusion, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2295), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(480), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36676] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2266), 1, - sym_identifier, - ACTIONS(2353), 1, - aux_sym_package_specification_token3, - STATE(2005), 1, - sym_value_sequence, - STATE(680), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2268), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1045), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36711] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - STATE(771), 1, - sym_null_exclusion, - STATE(1269), 1, - sym__subtype_indication, - STATE(2005), 1, - sym_value_sequence, - STATE(1158), 2, - sym__name, - sym_function_call, - ACTIONS(820), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(536), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [36750] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - STATE(771), 1, - sym_null_exclusion, - STATE(1099), 1, - sym__subtype_indication, - STATE(2005), 1, - sym_value_sequence, - STATE(1158), 2, - sym__name, - sym_function_call, - ACTIONS(820), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(536), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [36789] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1970), 1, - sym_identifier, - ACTIONS(2365), 1, - aux_sym_primary_null_token1, - ACTIONS(2367), 1, - aux_sym_case_expression_token1, - STATE(1400), 1, - sym_variant_part, - STATE(1448), 1, - sym_component_list, - STATE(1791), 1, - sym__defining_identifier_list, - STATE(669), 9, - sym__component_item, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_component_list_repeat1, - [36828] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - STATE(771), 1, - sym_null_exclusion, - STATE(1253), 1, - sym__subtype_indication, - STATE(2005), 1, - sym_value_sequence, - STATE(1158), 2, - sym__name, - sym_function_call, - ACTIONS(820), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(536), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [36867] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - STATE(771), 1, - sym_null_exclusion, - STATE(1511), 1, - sym__subtype_indication, - STATE(2005), 1, - sym_value_sequence, - STATE(1158), 2, - sym__name, - sym_function_call, - ACTIONS(820), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(536), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [36906] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2266), 1, - sym_identifier, - ACTIONS(2396), 1, - aux_sym_package_specification_token3, - STATE(2005), 1, - sym_value_sequence, - STATE(681), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2268), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1045), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36941] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2398), 1, - sym_identifier, - ACTIONS(2404), 1, - anon_sym_LBRACK, - ACTIONS(2407), 1, - aux_sym_package_specification_token3, - STATE(2005), 1, - sym_value_sequence, - STATE(681), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, ACTIONS(2401), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1045), 7, + STATE(911), 7, sym__name, sym_selected_component, sym_slice, @@ -47627,34 +48211,96 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36976] = 9, + [35975] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1904), 1, aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2371), 1, - aux_sym_package_specification_token3, - STATE(1853), 1, - sym_overriding_indicator, - STATE(686), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [37012] = 8, + ACTIONS(2114), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2403), 1, + sym_identifier, + STATE(755), 1, + sym_null_exclusion, + STATE(1056), 1, + sym_access_definition, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2405), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(892), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36015] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2300), 1, + sym_identifier, + ACTIONS(2407), 1, + aux_sym_private_type_declaration_token1, + STATE(1395), 1, + sym_subprogram_default, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2308), 2, + aux_sym_primary_null_token1, + anon_sym_LT_GT, + ACTIONS(2302), 4, + sym_gnatprep_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, + [36053] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + ACTIONS(2114), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2134), 1, + sym_identifier, + STATE(734), 1, + sym_null_exclusion, + STATE(1978), 1, + sym_access_definition, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2136), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1076), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36093] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -47662,17 +48308,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2409), 1, sym_identifier, ACTIONS(2413), 1, - aux_sym_iterator_filter_token1, - ACTIONS(2415), 1, - anon_sym_SEMI, - STATE(2005), 1, + aux_sym_component_choice_list_token1, + STATE(1231), 1, + sym_exception_choice, + STATE(1696), 1, + sym_exception_choice_list, + STATE(1697), 1, + sym_choice_parameter_specification, + STATE(2045), 1, sym_value_sequence, ACTIONS(2411), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(964), 7, + STATE(1010), 7, sym__name, sym_selected_component, sym_slice, @@ -47680,22 +48330,515 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37046] = 7, + [36133] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2417), 1, - sym_identifier, - ACTIONS(2420), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2425), 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, - STATE(1791), 1, - sym__defining_identifier_list, - ACTIONS(2423), 3, - aux_sym_iterator_filter_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2350), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2352), 1, aux_sym_package_specification_token3, + STATE(1782), 1, + sym_task_definition, + STATE(1825), 1, + sym_overriding_indicator, + STATE(691), 9, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [36175] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2350), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2352), 1, + aux_sym_package_specification_token3, + STATE(1781), 1, + sym_task_definition, + STATE(1825), 1, + sym_overriding_indicator, + STATE(691), 9, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [36217] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2415), 1, + sym_identifier, + ACTIONS(2419), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2421), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2423), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2425), 1, + aux_sym_general_access_modifier_token1, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2417), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(831), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36257] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + ACTIONS(2114), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2427), 1, + sym_identifier, + STATE(790), 1, + sym_null_exclusion, + STATE(881), 1, + sym_access_definition, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2429), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(849), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36297] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2431), 1, + sym_identifier, + ACTIONS(2435), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2437), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2439), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2441), 1, + aux_sym_general_access_modifier_token1, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2433), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(848), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36337] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2385), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [36361] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2350), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2352), 1, + aux_sym_package_specification_token3, + STATE(1579), 1, + sym_task_definition, + STATE(1825), 1, + sym_overriding_indicator, + STATE(691), 9, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [36403] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1728), 1, + anon_sym_DOT, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, + sym_tick, + ACTIONS(2445), 1, + aux_sym_iterator_filter_token1, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1264), 1, + sym_iterator_filter, + ACTIONS(1806), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(2443), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + ACTIONS(1808), 7, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [36443] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1728), 1, + anon_sym_DOT, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, + sym_tick, + ACTIONS(2445), 1, + aux_sym_iterator_filter_token1, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1357), 1, + sym_iterator_filter, + ACTIONS(1806), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(2447), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + ACTIONS(1808), 7, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [36483] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2449), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [36507] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2451), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [36531] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2362), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [36555] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2392), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [36579] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2367), 1, + sym_identifier, + ACTIONS(2453), 1, + aux_sym_package_specification_token3, + STATE(2045), 1, + sym_value_sequence, + STATE(709), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2369), 4, + sym_gnatprep_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, + [36614] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(996), 1, + sym_identifier, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + STATE(835), 1, + sym_null_exclusion, + STATE(1485), 1, + sym__subtype_indication, + STATE(2045), 1, + sym_value_sequence, + STATE(1153), 2, + sym__name, + sym_function_call, + ACTIONS(892), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [36653] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + ACTIONS(2375), 1, + sym_identifier, + STATE(531), 1, + sym__subtype_indication_paren_constraint, + STATE(795), 1, + sym_null_exclusion, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2377), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(487), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36690] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1692), 1, + aux_sym_range_attribute_designator_token1, + STATE(766), 1, + sym_range_constraint, + ACTIONS(2455), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [36717] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(996), 1, + sym_identifier, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + STATE(835), 1, + sym_null_exclusion, + STATE(1521), 1, + sym__subtype_indication, + STATE(2045), 1, + sym_value_sequence, + STATE(1153), 2, + sym__name, + sym_function_call, + ACTIONS(892), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [36756] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2046), 1, + sym_identifier, + ACTIONS(2457), 1, + aux_sym_primary_null_token1, + ACTIONS(2459), 1, aux_sym_case_expression_token1, - STATE(684), 9, + STATE(1502), 1, + sym_variant_part, + STATE(1714), 1, + sym_component_list, + STATE(1715), 1, + sym__defining_identifier_list, + STATE(700), 9, sym__component_item, sym_component_declaration, sym__aspect_clause, @@ -47705,7 +48848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pragma_g, sym_record_representation_clause, aux_sym_component_list_repeat1, - [37078] = 9, + [36795] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -47716,13 +48859,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(57), 1, aux_sym_pragma_g_token1, - ACTIONS(261), 1, + ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2428), 1, + ACTIONS(2461), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2463), 1, aux_sym_package_specification_token3, - STATE(1853), 1, + STATE(1825), 1, sym_overriding_indicator, - STATE(690), 9, + STATE(696), 9, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -47732,102 +48877,189 @@ static const uint16_t ts_small_parse_table[] = { sym_pragma_g, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [37114] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(261), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2428), 1, - aux_sym_package_specification_token3, - STATE(1853), 1, - sym_overriding_indicator, - STATE(672), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [37150] = 8, + [36834] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1828), 1, - aux_sym_relation_membership_token1, - ACTIONS(2430), 1, + ACTIONS(996), 1, sym_identifier, - STATE(794), 1, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + STATE(835), 1, sym_null_exclusion, - STATE(2005), 1, + STATE(1122), 1, + sym__subtype_indication, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2432), 4, + STATE(1153), 2, + sym__name, + sym_function_call, + ACTIONS(892), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(854), 7, - sym__name, + STATE(557), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - sym_function_call, - [37184] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(1974), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2434), 1, - aux_sym_package_specification_token1, - ACTIONS(2436), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2438), 1, - aux_sym_interface_type_definition_token1, - STATE(1029), 1, - sym_overriding_indicator, - STATE(1225), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(499), 5, - sym__proper_body, - sym_subprogram_body, - sym_package_body, - sym_task_body, - sym_protected_body, - [37224] = 8, + [36873] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2311), 1, - aux_sym_component_choice_list_token1, - ACTIONS(2355), 1, + ACTIONS(996), 1, sym_identifier, - STATE(1479), 1, - sym_exception_choice, - STATE(2005), 1, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + STATE(835), 1, + sym_null_exclusion, + STATE(1191), 1, + sym__subtype_indication, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2309), 4, + STATE(1153), 2, + sym__name, + sym_function_call, + ACTIONS(892), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [36912] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(996), 1, + sym_identifier, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + STATE(835), 1, + sym_null_exclusion, + STATE(1179), 1, + sym__subtype_indication, + STATE(2045), 1, + sym_value_sequence, + STATE(1153), 2, + sym__name, + sym_function_call, + ACTIONS(892), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [36951] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(996), 1, + sym_identifier, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + STATE(835), 1, + sym_null_exclusion, + STATE(1272), 1, + sym__subtype_indication, + STATE(2045), 1, + sym_value_sequence, + STATE(1153), 2, + sym__name, + sym_function_call, + ACTIONS(892), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [36990] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2465), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2470), 1, + aux_sym_relation_membership_token1, + ACTIONS(2473), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2476), 1, + aux_sym_global_mode_token1, + ACTIONS(2479), 1, + aux_sym_pragma_g_token1, + STATE(1825), 1, + sym_overriding_indicator, + ACTIONS(2468), 2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token3, + STATE(696), 9, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [37027] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1692), 1, + aux_sym_range_attribute_designator_token1, + STATE(769), 1, + sym_range_constraint, + ACTIONS(2482), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [37054] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2484), 1, + sym_identifier, + ACTIONS(2488), 1, + aux_sym_use_clause_token1, + ACTIONS(2490), 1, + aux_sym_use_clause_token2, + STATE(2035), 1, + sym__name_list, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2486), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, @@ -47840,7 +49072,344 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37258] = 9, + [37091] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2367), 1, + sym_identifier, + ACTIONS(2453), 1, + aux_sym_package_specification_token3, + STATE(2045), 1, + sym_value_sequence, + STATE(708), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2369), 4, + sym_gnatprep_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, + [37126] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2046), 1, + sym_identifier, + ACTIONS(2459), 1, + aux_sym_case_expression_token1, + STATE(1527), 1, + sym_variant_part, + STATE(1715), 1, + sym__defining_identifier_list, + ACTIONS(2492), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + STATE(712), 9, + sym__component_item, + sym_component_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_component_list_repeat1, + [37163] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(996), 1, + sym_identifier, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + STATE(835), 1, + sym_null_exclusion, + STATE(1106), 1, + sym__subtype_indication, + STATE(2045), 1, + sym_value_sequence, + STATE(1153), 2, + sym__name, + sym_function_call, + ACTIONS(892), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [37202] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(996), 1, + sym_identifier, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + STATE(835), 1, + sym_null_exclusion, + STATE(1495), 1, + sym__subtype_indication, + STATE(2045), 1, + sym_value_sequence, + STATE(1153), 2, + sym__name, + sym_function_call, + ACTIONS(892), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [37241] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(996), 1, + sym_identifier, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + STATE(835), 1, + sym_null_exclusion, + STATE(1167), 1, + sym__subtype_indication, + STATE(2045), 1, + sym_value_sequence, + STATE(1153), 2, + sym__name, + sym_function_call, + ACTIONS(892), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [37280] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(996), 1, + sym_identifier, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + STATE(835), 1, + sym_null_exclusion, + STATE(1242), 1, + sym__subtype_indication, + STATE(2045), 1, + sym_value_sequence, + STATE(1153), 2, + sym__name, + sym_function_call, + ACTIONS(892), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [37319] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(996), 1, + sym_identifier, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + STATE(835), 1, + sym_null_exclusion, + STATE(1174), 1, + sym__subtype_indication, + STATE(2045), 1, + sym_value_sequence, + STATE(1153), 2, + sym__name, + sym_function_call, + ACTIONS(892), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [37358] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2413), 1, + aux_sym_component_choice_list_token1, + ACTIONS(2494), 1, + sym_identifier, + STATE(1231), 1, + sym_exception_choice, + STATE(1720), 1, + sym_exception_choice_list, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2411), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1010), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37395] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2046), 1, + sym_identifier, + ACTIONS(2457), 1, + aux_sym_primary_null_token1, + ACTIONS(2459), 1, + aux_sym_case_expression_token1, + STATE(1413), 1, + sym_component_list, + STATE(1502), 1, + sym_variant_part, + STATE(1715), 1, + sym__defining_identifier_list, + STATE(700), 9, + sym__component_item, + sym_component_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_component_list_repeat1, + [37434] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2496), 1, + sym_identifier, + ACTIONS(2502), 1, + anon_sym_LBRACK, + ACTIONS(2505), 1, + aux_sym_package_specification_token3, + STATE(2045), 1, + sym_value_sequence, + STATE(708), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2499), 4, + sym_gnatprep_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, + [37469] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2367), 1, + sym_identifier, + ACTIONS(2507), 1, + aux_sym_package_specification_token3, + STATE(2045), 1, + sym_value_sequence, + STATE(708), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2369), 4, + sym_gnatprep_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, + [37504] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2413), 1, + aux_sym_component_choice_list_token1, + ACTIONS(2494), 1, + sym_identifier, + STATE(1501), 1, + sym_exception_choice, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2411), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1010), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37538] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -47851,13 +49420,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(57), 1, aux_sym_pragma_g_token1, - ACTIONS(261), 1, + ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2440), 1, + ACTIONS(2463), 1, aux_sym_package_specification_token3, - STATE(1853), 1, + STATE(1825), 1, sym_overriding_indicator, - STATE(672), 9, + STATE(719), 9, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -47867,50 +49436,76 @@ static const uint16_t ts_small_parse_table[] = { sym_pragma_g, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [37294] = 8, + [37574] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1828), 1, + ACTIONS(2509), 1, + sym_identifier, + ACTIONS(2512), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2517), 1, + aux_sym_pragma_g_token1, + STATE(1715), 1, + sym__defining_identifier_list, + ACTIONS(2515), 3, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + aux_sym_case_expression_token1, + STATE(712), 9, + sym__component_item, + sym_component_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_component_list_repeat1, + [37606] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, aux_sym_relation_membership_token1, - ACTIONS(2260), 1, - sym_identifier, - STATE(823), 1, - sym_null_exclusion, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2262), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(855), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37328] = 7, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2520), 1, + aux_sym_package_specification_token3, + STATE(1825), 1, + sym_overriding_indicator, + STATE(696), 9, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [37642] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2442), 1, + ACTIONS(2522), 1, sym_identifier, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - STATE(1997), 2, + STATE(2040), 2, sym_loop_parameter_specification, sym_iterator_specification, - ACTIONS(2444), 4, + ACTIONS(2524), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1025), 7, + STATE(1087), 7, sym__name, sym_selected_component, sym_slice, @@ -47918,47 +49513,78 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37360] = 8, + [37674] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2446), 1, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + ACTIONS(2356), 1, sym_identifier, - ACTIONS(2450), 1, - aux_sym_attribute_designator_token1, - STATE(2005), 1, + STATE(812), 1, + sym_null_exclusion, + STATE(2045), 1, sym_value_sequence, - STATE(1158), 2, - sym__name, - sym_function_call, - ACTIONS(2448), 4, + ACTIONS(2358), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(543), 5, + STATE(877), 7, + sym__name, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [37393] = 6, + sym_function_call, + [37708] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2526), 1, + aux_sym_package_specification_token3, + STATE(1825), 1, + sym_overriding_indicator, + STATE(713), 9, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [37744] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1949), 1, - sym__name_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2359), 5, + ACTIONS(2528), 1, sym_identifier, + ACTIONS(2532), 1, + aux_sym_iterator_filter_token1, + ACTIONS(2534), 1, + anon_sym_SEMI, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2530), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(925), 7, + STATE(1008), 7, sym__name, sym_selected_component, sym_slice, @@ -47966,22 +49592,25 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37422] = 6, + [37778] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1470), 1, - sym__name_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2452), 5, + ACTIONS(1904), 1, + aux_sym_relation_membership_token1, + ACTIONS(2536), 1, sym_identifier, + STATE(802), 1, + sym_null_exclusion, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2538), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(929), 7, + STATE(875), 7, sym__name, sym_selected_component, sym_slice, @@ -47989,33 +49618,66 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37451] = 6, + [37812] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1660), 1, - sym__interface_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2454), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(868), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37480] = 2, + ACTIONS(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(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2526), 1, + aux_sym_package_specification_token3, + STATE(1825), 1, + sym_overriding_indicator, + STATE(696), 9, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [37848] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2456), 15, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(2050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2052), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2540), 1, + aux_sym_package_specification_token1, + ACTIONS(2542), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2544), 1, + aux_sym_interface_type_definition_token1, + STATE(1037), 1, + sym_overriding_indicator, + STATE(1257), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(520), 5, + sym__proper_body, + sym_subprogram_body, + sym_package_body, + sym_task_body, + sym_protected_body, + [37888] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2546), 15, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_chunk_specification_token1, @@ -48031,79 +49693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [37501] = 6, + [37909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1661), 1, - sym__interface_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2454), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(868), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37530] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1991), 1, - sym__name_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2359), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(925), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37559] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1947), 1, - sym__name_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2359), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(925), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37588] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2458), 15, + ACTIONS(2548), 15, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_chunk_specification_token1, @@ -48119,610 +49712,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [37609] = 6, + [37930] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2462), 1, - anon_sym_SEMI, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2460), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(992), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37638] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2466), 1, - anon_sym_SEMI, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2464), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(972), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37667] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1944), 1, + STATE(2032), 1, sym__name_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2359), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(925), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37696] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1176), 1, - sym__interface_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2454), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(868), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37725] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2301), 1, - sym_identifier, - ACTIONS(2450), 1, - aux_sym_attribute_designator_token1, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2303), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(870), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37756] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1703), 1, - sym_reduction_specification, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2468), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1056), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37785] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [37806] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1873), 1, - sym__interface_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2454), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(868), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37835] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1434), 1, - sym_index_subtype_definition, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2472), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1022), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37864] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1710), 1, - sym__interface_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2454), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(868), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37893] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1941), 1, - sym__interface_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2454), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(868), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37922] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1645), 1, - sym__interface_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2454), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(868), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37951] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2476), 1, - anon_sym_SEMI, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2474), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1012), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37980] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1644), 1, - sym__interface_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2454), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(868), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38009] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1773), 1, - sym__interface_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2454), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(868), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38038] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1748), 1, - sym__interface_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2454), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(868), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38067] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1484), 1, - sym__interface_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2454), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(868), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38096] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2450), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2478), 1, - sym_identifier, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2480), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(869), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38127] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1445), 1, - sym__interface_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2454), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(868), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38156] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, - anon_sym_SEMI, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2482), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1051), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38185] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1696), 1, - sym__interface_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2454), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(868), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38214] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1757), 1, - sym__interface_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2454), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(868), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38243] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1446), 1, - sym__interface_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2454), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(868), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38272] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1831), 1, - sym__interface_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2454), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(868), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38301] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1552), 1, - sym__interface_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2454), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(868), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38330] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1504), 1, - sym__interface_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2454), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(868), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38359] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2488), 1, - anon_sym_SEMI, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, ACTIONS(2486), 5, sym_identifier, @@ -48730,7 +49727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(1044), 7, + STATE(975), 7, sym__name, sym_selected_component, sym_slice, @@ -48738,23 +49735,139 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38388] = 7, + [37959] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2450), 1, + STATE(1701), 1, + sym__interface_list, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2550), 5, + sym_identifier, + sym_gnatprep_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, + [37988] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1727), 1, + sym__interface_list, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2550), 5, + sym_identifier, + sym_gnatprep_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, + [38017] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2552), 1, + sym_identifier, + ACTIONS(2556), 1, + aux_sym_package_body_token1, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2554), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(920), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38048] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1798), 1, + sym__interface_list, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2550), 5, + sym_identifier, + sym_gnatprep_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, + [38077] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1784), 1, + sym__interface_list, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2550), 5, + sym_identifier, + sym_gnatprep_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, + [38106] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2403), 1, + sym_identifier, + ACTIONS(2558), 1, aux_sym_attribute_designator_token1, - ACTIONS(2490), 1, - sym_identifier, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2492), 4, + ACTIONS(2405), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1054), 7, + STATE(892), 7, sym__name, sym_selected_component, sym_slice, @@ -48762,23 +49875,22 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38419] = 7, + [38137] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2494), 1, - sym_identifier, - ACTIONS(2498), 1, - aux_sym_loop_parameter_specification_token1, - STATE(2005), 1, + ACTIONS(2562), 1, + anon_sym_SEMI, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2496), 4, + ACTIONS(2560), 5, + sym_identifier, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(858), 7, + STATE(1092), 7, sym__name, sym_selected_component, sym_slice, @@ -48786,22 +49898,22 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38450] = 6, + [38166] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1872), 1, + STATE(1871), 1, sym__name_list, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2359), 5, + ACTIONS(2486), 5, sym_identifier, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(925), 7, + STATE(975), 7, sym__name, sym_selected_component, sym_slice, @@ -48809,83 +49921,22 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38479] = 6, + [38195] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2502), 1, - anon_sym_SEMI, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2500), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1052), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38508] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2504), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [38529] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2506), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [38550] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1917), 1, + STATE(1474), 1, sym__interface_list, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2454), 5, + ACTIONS(2550), 5, sym_identifier, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(868), 7, + STATE(898), 7, sym__name, sym_selected_component, sym_slice, @@ -48893,41 +49944,22 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38579] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2508), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [38600] = 6, + [38224] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1887), 1, + STATE(1962), 1, sym__name_list, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2359), 5, + ACTIONS(2486), 5, sym_identifier, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(925), 7, + STATE(975), 7, sym__name, sym_selected_component, sym_slice, @@ -48935,222 +49967,18 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38629] = 7, + [38253] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2450), 1, + ACTIONS(2558), 1, aux_sym_attribute_designator_token1, - ACTIONS(2510), 1, + ACTIONS(2564), 1, sym_identifier, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2512), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(795), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38660] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2260), 1, - sym_identifier, - ACTIONS(2450), 1, - aux_sym_attribute_designator_token1, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2262), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(855), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38691] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1551), 1, - sym__interface_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2454), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(868), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38720] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2516), 1, - anon_sym_SEMI, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2514), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1028), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38749] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2520), 1, - anon_sym_SEMI, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2518), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1046), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38778] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1411), 1, - sym__interface_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2454), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(868), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38807] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2524), 1, - anon_sym_SEMI, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2522), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1032), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38836] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2526), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [38857] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2530), 1, - anon_sym_SEMI, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2528), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(991), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38886] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_SEMI, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2532), 5, - sym_identifier, + ACTIONS(2566), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, @@ -49163,16 +49991,179 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38915] = 6, + [38284] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2538), 1, + ACTIONS(2570), 1, anon_sym_SEMI, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2536), 5, + ACTIONS(2568), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1036), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38313] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1506), 1, + sym__interface_list, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2550), 5, + sym_identifier, + sym_gnatprep_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, + [38342] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2574), 1, + anon_sym_SEMI, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2572), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1013), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38371] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1725), 1, + sym__interface_list, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2550), 5, + sym_identifier, + sym_gnatprep_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, + [38400] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1693), 1, + sym__interface_list, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2550), 5, + sym_identifier, + sym_gnatprep_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, + [38429] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1718), 1, + sym__interface_list, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2550), 5, + sym_identifier, + sym_gnatprep_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, + [38458] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2558), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2576), 1, + sym_identifier, + STATE(2045), 1, + sym_value_sequence, + STATE(1153), 2, + sym__name, + sym_function_call, + ACTIONS(2578), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [38491] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_SEMI, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2580), 5, sym_identifier, sym_gnatprep_identifier, sym_string_literal, @@ -49186,46 +50177,22 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38944] = 7, + [38520] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2540), 1, - sym_identifier, - ACTIONS(2544), 1, - aux_sym_package_body_token1, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2542), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(910), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38975] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2548), 1, + ACTIONS(2586), 1, anon_sym_SEMI, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2546), 5, + ACTIONS(2584), 5, sym_identifier, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1020), 7, + STATE(1090), 7, sym__name, sym_selected_component, sym_slice, @@ -49233,10 +50200,79 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [39004] = 2, + [38549] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 15, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2590), 1, + anon_sym_SEMI, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2588), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1086), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38578] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1987), 1, + sym__interface_list, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2550), 5, + sym_identifier, + sym_gnatprep_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, + [38607] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1588), 1, + sym_reduction_specification, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2592), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1069), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38636] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2594), 15, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_chunk_specification_token1, @@ -49252,329 +50288,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [39025] = 6, + [38657] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1762), 1, - sym__interface_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2454), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(868), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39054] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_SEMI, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2552), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(998), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39083] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2558), 1, - anon_sym_SEMI, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2556), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(986), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39112] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1452), 1, - sym__interface_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2454), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(868), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39141] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2562), 1, - anon_sym_SEMI, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2560), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1065), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39170] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - sym_identifier, - ACTIONS(2568), 1, - aux_sym_loop_parameter_specification_token1, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2566), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(862), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39201] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2570), 1, - sym_identifier, - ACTIONS(2574), 1, - aux_sym_loop_parameter_specification_token1, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2572), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(864), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39232] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1272), 1, - sym__interface_list, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2454), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(868), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39261] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2450), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2576), 1, - sym_identifier, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2578), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(893), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39292] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2582), 1, - anon_sym_SEMI, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2580), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1007), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39321] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_SEMI, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2584), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1031), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39350] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2588), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(2590), 12, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_numeric_literal, - anon_sym_PLUS, - sym_target_name, - anon_sym_LPAREN, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - aux_sym_factor_abs_token1, - aux_sym_primary_null_token1, - aux_sym_allocator_token1, - [39372] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2592), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(948), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39398] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2594), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(462), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39424] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, ACTIONS(2596), 5, sym_identifier, @@ -49582,7 +50303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(951), 7, + STATE(1015), 7, sym__name, sym_selected_component, sym_slice, @@ -49590,32 +50311,83 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [39450] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2598), 1, - sym_identifier, - ACTIONS(2602), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(2600), 12, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_relation_membership_token1, - [39474] = 5, + [38686] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2005), 1, + ACTIONS(2602), 1, + anon_sym_SEMI, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2600), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1080), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38715] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1285), 1, + sym__interface_list, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2550), 5, + sym_identifier, + sym_gnatprep_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, + [38744] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1863), 1, + sym__name_list, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2486), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(975), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38773] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2606), 1, + anon_sym_SEMI, + STATE(2045), 1, sym_value_sequence, ACTIONS(2604), 5, sym_identifier, @@ -49623,7 +50395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(954), 7, + STATE(1089), 7, sym__name, sym_selected_component, sym_slice, @@ -49631,42 +50403,22 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [39500] = 6, + [38802] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2606), 1, - sym_identifier, - STATE(2005), 1, + STATE(1966), 1, + sym__name_list, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2444), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1025), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39528] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2608), 5, + ACTIONS(2486), 5, sym_identifier, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(953), 7, + STATE(975), 7, sym__name, sym_selected_component, sym_slice, @@ -49674,42 +50426,22 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [39554] = 6, + [38831] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2005), 1, + STATE(1582), 1, + sym__interface_list, + STATE(2045), 1, sym_value_sequence, - STATE(1158), 2, - sym__name, - sym_function_call, - ACTIONS(2448), 5, + ACTIONS(2550), 5, sym_identifier, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(543), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [39582] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2610), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(949), 7, + STATE(898), 7, sym__name, sym_selected_component, sym_slice, @@ -49717,20 +50449,23 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [39608] = 5, + [38860] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2612), 5, + ACTIONS(2558), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2608), 1, sym_identifier, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2610), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(926), 7, + STATE(890), 7, sym__name, sym_selected_component, sym_slice, @@ -49738,12 +50473,33 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [39634] = 5, + [38891] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2612), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [38912] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2005), 1, + ACTIONS(2616), 1, + anon_sym_SEMI, + STATE(2045), 1, sym_value_sequence, ACTIONS(2614), 5, sym_identifier, @@ -49751,7 +50507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(779), 7, + STATE(1078), 7, sym__name, sym_selected_component, sym_slice, @@ -49759,33 +50515,14 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [39660] = 5, + [38941] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2616), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(912), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39686] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, + ACTIONS(2620), 1, + anon_sym_SEMI, + STATE(2045), 1, sym_value_sequence, ACTIONS(2618), 5, sym_identifier, @@ -49793,7 +50530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(857), 7, + STATE(1001), 7, sym__name, sym_selected_component, sym_slice, @@ -49801,20 +50538,22 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [39712] = 5, + [38970] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2005), 1, + STATE(1490), 1, + sym__interface_list, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2620), 5, + ACTIONS(2550), 5, sym_identifier, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(867), 7, + STATE(898), 7, sym__name, sym_selected_component, sym_slice, @@ -49822,20 +50561,23 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [39738] = 5, + [38999] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2622), 5, + ACTIONS(2558), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2622), 1, sym_identifier, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2624), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(866), 7, + STATE(934), 7, sym__name, sym_selected_component, sym_slice, @@ -49843,86 +50585,23 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [39764] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - STATE(460), 1, - sym_actual_parameter_part, - ACTIONS(2624), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [39792] = 5, + [39030] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2626), 5, + ACTIONS(2626), 1, sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39818] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - STATE(460), 1, - sym_actual_parameter_part, - ACTIONS(2628), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [39846] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, ACTIONS(2630), 1, - sym_identifier, - STATE(2005), 1, + aux_sym_loop_parameter_specification_token1, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2610), 4, + ACTIONS(2628), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(949), 7, + STATE(896), 7, sym__name, sym_selected_component, sym_slice, @@ -49930,76 +50609,38 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [39874] = 6, + [39061] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - STATE(460), 1, - sym_actual_parameter_part, - ACTIONS(2632), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2632), 1, + sym_identifier, + ACTIONS(2636), 1, + aux_sym_loop_parameter_specification_token1, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2634), 4, + sym_gnatprep_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, + [39092] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2640), 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, - [39902] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2634), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(924), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39928] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2636), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(941), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39954] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, ACTIONS(2638), 5, sym_identifier, @@ -50007,7 +50648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(1000), 7, + STATE(1062), 7, sym__name, sym_selected_component, sym_slice, @@ -50015,207 +50656,188 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [39980] = 5, + [39121] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2640), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(947), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40006] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2642), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(856), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40032] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2644), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(933), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40058] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2646), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(897), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40084] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(1744), 1, - sym_tick, - ACTIONS(2648), 1, - aux_sym_range_attribute_designator_token1, - STATE(460), 1, - sym_actual_parameter_part, - ACTIONS(1726), 2, - anon_sym_DASH, - anon_sym_STAR, - ACTIONS(1728), 7, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - [40116] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2650), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(899), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40142] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2652), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(932), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40168] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2654), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(852), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40194] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - STATE(460), 1, - sym_actual_parameter_part, - ACTIONS(2656), 10, + ACTIONS(2642), 15, + anon_sym_COMMA, anon_sym_RPAREN, aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, aux_sym_iterator_specification_token1, anon_sym_SEMI, - aux_sym_package_specification_token2, aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_expression_token1, aux_sym_expression_token3, anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [40222] = 5, + aux_sym_loop_statement_token1, + [39142] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2005), 1, + STATE(1238), 1, + sym__interface_list, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2658), 5, + ACTIONS(2550), 5, + sym_identifier, + sym_gnatprep_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, + [39171] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2644), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [39192] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1656), 1, + sym__interface_list, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2550), 5, + sym_identifier, + sym_gnatprep_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, + [39221] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1741), 1, + sym__interface_list, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2550), 5, + sym_identifier, + sym_gnatprep_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, + [39250] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2646), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [39271] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1915), 1, + sym__interface_list, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2550), 5, + sym_identifier, + sym_gnatprep_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, + [39300] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1967), 1, + sym__interface_list, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2550), 5, + sym_identifier, + sym_gnatprep_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, + [39329] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1514), 1, + sym__name_list, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2648), 5, sym_identifier, sym_gnatprep_identifier, sym_string_literal, @@ -50229,20 +50851,22 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [40248] = 5, + [39358] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2005), 1, + STATE(1424), 1, + sym__interface_list, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2660), 5, + ACTIONS(2550), 5, sym_identifier, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1010), 7, + STATE(898), 7, sym__name, sym_selected_component, sym_slice, @@ -50250,20 +50874,22 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [40274] = 5, + [39387] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2005), 1, + STATE(1454), 1, + sym__interface_list, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2662), 5, + ACTIONS(2550), 5, sym_identifier, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(922), 7, + STATE(898), 7, sym__name, sym_selected_component, sym_slice, @@ -50271,147 +50897,22 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [40300] = 5, + [39416] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2664), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1039), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40326] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2666), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(989), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40352] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2668), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(884), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40378] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2670), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(861), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40404] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2341), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(781), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40430] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - STATE(460), 1, - sym_actual_parameter_part, - ACTIONS(2672), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, + ACTIONS(2652), 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, - [40458] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2674), 5, + ACTIONS(2650), 5, sym_identifier, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(937), 7, + STATE(1083), 7, sym__name, sym_selected_component, sym_slice, @@ -50419,20 +50920,22 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [40484] = 5, + [39445] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2005), 1, + STATE(1839), 1, + sym__interface_list, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2676), 5, + ACTIONS(2550), 5, sym_identifier, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(936), 7, + STATE(898), 7, sym__name, sym_selected_component, sym_slice, @@ -50440,20 +50943,22 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [40510] = 5, + [39474] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2005), 1, + ACTIONS(2656), 1, + anon_sym_SEMI, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2678), 5, + ACTIONS(2654), 5, sym_identifier, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(889), 7, + STATE(1024), 7, sym__name, sym_selected_component, sym_slice, @@ -50461,56 +50966,16 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [40536] = 5, + [39503] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2005), 1, + ACTIONS(2660), 1, + anon_sym_SEMI, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2680), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(935), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40562] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2682), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(927), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40588] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2684), 5, + ACTIONS(2658), 5, sym_identifier, sym_gnatprep_identifier, sym_string_literal, @@ -50524,20 +50989,22 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [40614] = 5, + [39532] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2005), 1, + ACTIONS(2664), 1, + anon_sym_SEMI, + STATE(2045), 1, sym_value_sequence, - ACTIONS(2686), 5, + ACTIONS(2662), 5, sym_identifier, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1064), 7, + STATE(1081), 7, sym__name, sym_selected_component, sym_slice, @@ -50545,12 +51012,264 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [40640] = 5, + [39561] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2005), 1, + ACTIONS(2668), 1, + anon_sym_SEMI, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2666), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1046), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39590] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1870), 1, + sym__interface_list, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2550), 5, + sym_identifier, + sym_gnatprep_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, + [39619] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1961), 1, + sym__interface_list, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2550), 5, + sym_identifier, + sym_gnatprep_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, + [39648] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2356), 1, + sym_identifier, + ACTIONS(2558), 1, + aux_sym_attribute_designator_token1, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2358), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(877), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39679] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1968), 1, + sym__name_list, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2486), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(975), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39708] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2670), 1, + sym_identifier, + ACTIONS(2674), 1, + aux_sym_loop_parameter_specification_token1, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2672), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(891), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39739] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1453), 1, + sym__interface_list, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2550), 5, + sym_identifier, + sym_gnatprep_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, + [39768] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1535), 1, + sym_index_subtype_definition, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2676), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1039), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39797] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2680), 1, + anon_sym_SEMI, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2678), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1054), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39826] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2682), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [39847] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2558), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2684), 1, + sym_identifier, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2686), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(798), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39878] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, sym_value_sequence, ACTIONS(2688), 5, sym_identifier, @@ -50558,7 +51277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(1067), 7, + STATE(888), 7, sym__name, sym_selected_component, sym_slice, @@ -50566,12 +51285,12 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [40666] = 5, + [39904] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, ACTIONS(2690), 5, sym_identifier, @@ -50579,7 +51298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(1050), 7, + STATE(965), 7, sym__name, sym_selected_component, sym_slice, @@ -50587,12 +51306,12 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [40692] = 5, + [39930] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, ACTIONS(2692), 5, sym_identifier, @@ -50600,7 +51319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(1057), 7, + STATE(941), 7, sym__name, sym_selected_component, sym_slice, @@ -50608,12 +51327,12 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [40718] = 5, + [39956] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, ACTIONS(2694), 5, sym_identifier, @@ -50621,7 +51340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(963), 7, + STATE(1071), 7, sym__name, sym_selected_component, sym_slice, @@ -50629,12 +51348,12 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [40744] = 5, + [39982] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, ACTIONS(2696), 5, sym_identifier, @@ -50642,7 +51361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(950), 7, + STATE(490), 7, sym__name, sym_selected_component, sym_slice, @@ -50650,54 +51369,31 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [40770] = 5, + [40008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2698), 5, + ACTIONS(2698), 2, sym_identifier, + anon_sym_DASH, + ACTIONS(2700), 12, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, + sym_numeric_literal, + anon_sym_PLUS, sym_target_name, - STATE(859), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40796] = 5, + 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, + [40030] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2700), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(565), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40822] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, ACTIONS(2702), 5, sym_identifier, @@ -50705,7 +51401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(1014), 7, + STATE(977), 7, sym__name, sym_selected_component, sym_slice, @@ -50713,54 +51409,34 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [40848] = 5, + [40056] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + STATE(483), 1, + sym_actual_parameter_part, + ACTIONS(2704), 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, + [40084] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2542), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(910), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40874] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2704), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(946), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40900] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, + STATE(2045), 1, sym_value_sequence, ACTIONS(2706), 5, sym_identifier, @@ -50768,6 +51444,656 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, + STATE(592), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40110] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2708), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1063), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40136] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2710), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1065), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40162] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2712), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(883), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40188] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2714), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(887), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40214] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2716), 5, + sym_identifier, + sym_gnatprep_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, + [40240] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2718), 5, + sym_identifier, + sym_gnatprep_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, + [40266] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2720), 5, + sym_identifier, + sym_gnatprep_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, + [40292] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2722), 5, + sym_identifier, + sym_gnatprep_identifier, + 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, + [40318] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2724), 5, + sym_identifier, + sym_gnatprep_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, + [40344] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2726), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1017), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40370] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2728), 5, + sym_identifier, + sym_gnatprep_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, + [40396] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2730), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(971), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40422] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2538), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(875), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40448] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2732), 1, + sym_identifier, + ACTIONS(2736), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(2734), 12, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_relation_membership_token1, + [40472] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2738), 5, + sym_identifier, + sym_gnatprep_identifier, + 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, + [40498] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2740), 5, + sym_identifier, + sym_gnatprep_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, + [40524] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2742), 5, + sym_identifier, + sym_gnatprep_identifier, + 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, + [40550] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2744), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(897), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40576] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2746), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(969), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40602] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2748), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(947), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40628] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2750), 5, + sym_identifier, + sym_gnatprep_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, + [40654] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2752), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1030), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40680] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2754), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(928), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40706] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2756), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1041), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40732] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2758), 5, + sym_identifier, + sym_gnatprep_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, + [40758] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2760), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(953), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40784] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2762), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(976), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40810] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2764), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(914), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40836] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2766), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(973), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40862] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2768), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(951), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40888] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2770), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, STATE(921), 7, sym__name, sym_selected_component, @@ -50776,57 +52102,568 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [40926] = 5, + [40914] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2432), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(854), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40952] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2005), 1, - sym_value_sequence, - ACTIONS(2708), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(860), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40978] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2710), 1, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + STATE(483), 1, + sym_actual_parameter_part, + ACTIONS(2772), 10, + anon_sym_RPAREN, aux_sym_chunk_specification_token1, - ACTIONS(1584), 2, + 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, + [40942] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2774), 5, + sym_identifier, + sym_gnatprep_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, + [40968] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1728), 1, + anon_sym_DOT, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, + sym_tick, + ACTIONS(2776), 1, + aux_sym_range_attribute_designator_token1, + STATE(483), 1, + sym_actual_parameter_part, + ACTIONS(1806), 2, anon_sym_DASH, anon_sym_STAR, - ACTIONS(1586), 10, + ACTIONS(1808), 7, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [41000] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2778), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(948), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41026] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + STATE(1153), 2, + sym__name, + sym_function_call, + ACTIONS(2578), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [41054] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2780), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1000), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41080] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2782), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(964), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41106] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2554), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(920), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41132] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2784), 1, + sym_identifier, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2702), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(977), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41160] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2786), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1064), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41186] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2788), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(957), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41212] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2790), 1, + sym_identifier, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2524), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1087), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41240] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2792), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(958), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41266] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2794), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(889), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41292] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + STATE(483), 1, + sym_actual_parameter_part, + ACTIONS(2796), 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, + [41320] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2798), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1072), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41346] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2800), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(983), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41372] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + STATE(483), 1, + sym_actual_parameter_part, + ACTIONS(2802), 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, + [41400] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + STATE(483), 1, + sym_actual_parameter_part, + ACTIONS(2804), 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, + [41428] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2806), 5, + sym_identifier, + sym_gnatprep_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, + [41454] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2808), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(972), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41480] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2045), 1, + sym_value_sequence, + ACTIONS(2417), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(831), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41506] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(2233), 1, + anon_sym_LBRACK, + STATE(1326), 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, + [41529] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2810), 1, + sym_identifier, + ACTIONS(2812), 12, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_relation_membership_token1, + [41550] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(77), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(2028), 1, + aux_sym_iterator_filter_token1, + ACTIONS(2030), 1, + aux_sym_terminate_alternative_token1, + STATE(40), 1, + sym_accept_statement, + STATE(866), 1, + sym_guard, + STATE(1305), 1, + sym_select_alternative, + STATE(44), 3, + sym__delay_statement, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(1335), 3, + sym_delay_alternative, + sym_accept_alternative, + sym_terminate_alternative, + [41585] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(376), 1, + anon_sym_LPAREN, + ACTIONS(2233), 1, + anon_sym_LBRACK, + STATE(1279), 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, + [41608] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2814), 1, + aux_sym_chunk_specification_token1, + ACTIONS(1676), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(1678), 10, anon_sym_PLUS, anon_sym_AMP, anon_sym_SLASH, @@ -50837,12 +52674,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR_STAR, - [41001] = 3, + [41631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2712), 1, + ACTIONS(2732), 1, sym_identifier, - ACTIONS(2714), 12, + ACTIONS(2734), 12, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, @@ -50855,112 +52692,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, aux_sym_package_specification_token2, aux_sym_relation_membership_token1, - [41022] = 4, + [41652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(364), 1, + ACTIONS(2816), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - STATE(1198), 11, - sym__parenthesized_expression, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [41045] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - STATE(1313), 11, - sym__parenthesized_expression, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [41068] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(77), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(1947), 1, - aux_sym_iterator_filter_token1, - ACTIONS(1949), 1, - aux_sym_terminate_alternative_token1, - STATE(32), 1, - sym_accept_statement, - STATE(843), 1, - sym_guard, - STATE(1199), 1, - sym_select_alternative, - STATE(34), 3, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - STATE(1330), 3, - sym_delay_alternative, - sym_accept_alternative, - sym_terminate_alternative, - [41103] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2598), 1, - sym_identifier, - ACTIONS(2600), 12, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_relation_membership_token1, - [41124] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2716), 1, - sym_identifier, - ACTIONS(2718), 11, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_numeric_literal, - sym_target_name, - anon_sym_LPAREN, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - aux_sym_factor_abs_token1, - aux_sym_primary_null_token1, - aux_sym_allocator_token1, - [41144] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2720), 1, - anon_sym_LPAREN, - STATE(849), 1, + STATE(882), 1, sym_formal_part, - ACTIONS(2722), 10, + ACTIONS(2818), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -50971,1121 +52710,734 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [41166] = 2, + [41674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2724), 12, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - [41184] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2720), 1, - anon_sym_LPAREN, - STATE(850), 1, - sym_formal_part, - ACTIONS(2726), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [41206] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2720), 1, - anon_sym_LPAREN, - STATE(847), 1, - sym_formal_part, - ACTIONS(2728), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [41228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2730), 1, - sym_identifier, - ACTIONS(2732), 11, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_numeric_literal, - sym_target_name, - anon_sym_LPAREN, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - aux_sym_factor_abs_token1, - aux_sym_primary_null_token1, - aux_sym_allocator_token1, - [41248] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2734), 1, - sym_identifier, - ACTIONS(2736), 11, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_numeric_literal, - sym_target_name, - anon_sym_LPAREN, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - aux_sym_factor_abs_token1, - aux_sym_primary_null_token1, - aux_sym_allocator_token1, - [41268] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2738), 1, - sym_identifier, - ACTIONS(2740), 10, - aux_sym_iterated_element_association_token1, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_case_expression_token1, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - aux_sym_pragma_g_token1, - [41287] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2744), 10, - aux_sym_iterated_element_association_token1, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_case_expression_token1, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - aux_sym_pragma_g_token1, - [41306] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2746), 1, - sym_identifier, - ACTIONS(2748), 10, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [41325] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(77), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(1949), 1, - aux_sym_terminate_alternative_token1, - STATE(32), 1, - sym_accept_statement, - STATE(1088), 1, - sym_select_alternative, - STATE(34), 3, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - STATE(1330), 3, - sym_delay_alternative, - sym_accept_alternative, - sym_terminate_alternative, - [41354] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2750), 1, - sym_identifier, - ACTIONS(2752), 1, - aux_sym_subprogram_body_token1, - ACTIONS(2754), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2756), 1, - aux_sym_interface_type_definition_token1, - STATE(1860), 1, - sym__defining_identifier_list, - STATE(263), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(846), 4, - sym__declare_item, - sym_object_declaration, - sym_object_renaming_declaration, - aux_sym_declare_expression_repeat1, - [41383] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(77), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(1949), 1, - aux_sym_terminate_alternative_token1, - STATE(32), 1, - sym_accept_statement, - STATE(1211), 1, - sym_select_alternative, - STATE(34), 3, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - STATE(1330), 3, - sym_delay_alternative, - sym_accept_alternative, - sym_terminate_alternative, - [41412] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2758), 1, - sym_identifier, - ACTIONS(2760), 10, - aux_sym_iterated_element_association_token1, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_case_expression_token1, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - aux_sym_pragma_g_token1, - [41431] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2762), 1, - sym_identifier, - ACTIONS(2765), 1, - aux_sym_subprogram_body_token1, - ACTIONS(2767), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2770), 1, - aux_sym_interface_type_definition_token1, - STATE(1860), 1, - sym__defining_identifier_list, - STATE(263), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(845), 4, - sym__declare_item, - sym_object_declaration, - sym_object_renaming_declaration, - aux_sym_declare_expression_repeat1, - [41460] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2750), 1, - sym_identifier, - ACTIONS(2754), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2756), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(2773), 1, - aux_sym_subprogram_body_token1, - STATE(1860), 1, - sym__defining_identifier_list, - STATE(263), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(845), 4, - sym__declare_item, - sym_object_declaration, - sym_object_renaming_declaration, - aux_sym_declare_expression_repeat1, - [41489] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2775), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [41505] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2777), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [41521] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2726), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [41537] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2728), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [41553] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2100), 1, - anon_sym_COLON_EQ, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1081), 1, - sym__assign_value, - STATE(1506), 1, - sym_aspect_specification, - ACTIONS(2779), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [41585] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2100), 1, - anon_sym_COLON_EQ, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1162), 1, - sym__assign_value, - STATE(1468), 1, - sym_aspect_specification, - ACTIONS(2781), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [41617] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [41633] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2100), 1, - anon_sym_COLON_EQ, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1147), 1, - sym__assign_value, - STATE(1441), 1, - sym_aspect_specification, - ACTIONS(2785), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [41665] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2100), 1, - anon_sym_COLON_EQ, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1168), 1, - sym__assign_value, - STATE(1510), 1, - sym_aspect_specification, - ACTIONS(2787), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [41697] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(2791), 1, - aux_sym_package_specification_token2, - ACTIONS(2793), 1, - aux_sym_result_profile_token1, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1509), 1, - sym_formal_part, - STATE(1169), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [41726] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(2797), 1, - aux_sym_package_specification_token2, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1166), 1, - sym_formal_part, - ACTIONS(2795), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [41753] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2327), 1, - aux_sym_iterator_filter_token1, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1212), 1, - sym_iterator_filter, - ACTIONS(2351), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [41780] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2327), 1, - aux_sym_iterator_filter_token1, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1273), 1, - sym_iterator_filter, - ACTIONS(2325), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [41807] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(2793), 1, - aux_sym_result_profile_token1, - ACTIONS(2800), 1, - aux_sym_package_specification_token2, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1509), 1, - sym_formal_part, - STATE(1169), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [41836] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(2802), 1, - aux_sym_package_specification_token2, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1166), 1, - sym_formal_part, - ACTIONS(2795), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [41863] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2327), 1, - aux_sym_iterator_filter_token1, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1332), 1, - sym_iterator_filter, - ACTIONS(2805), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [41890] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2100), 1, - anon_sym_COLON_EQ, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(2807), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1241), 1, - sym__assign_value, - STATE(1737), 1, - sym_aspect_specification, - [41921] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2327), 1, - aux_sym_iterator_filter_token1, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1329), 1, - sym_iterator_filter, - ACTIONS(2805), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [41948] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1968), 1, - anon_sym_COMMA, - ACTIONS(2809), 1, - anon_sym_COLON, - ACTIONS(2812), 1, - anon_sym_SEMI, - ACTIONS(2814), 1, - aux_sym_object_renaming_declaration_token1, - STATE(1308), 1, - aux_sym__defining_identifier_list_repeat1, - ACTIONS(1586), 4, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - [41973] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2327), 1, - aux_sym_iterator_filter_token1, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1227), 1, - sym_iterator_filter, - ACTIONS(2816), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [42000] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2327), 1, - aux_sym_iterator_filter_token1, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1210), 1, - sym_iterator_filter, - ACTIONS(2816), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [42027] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, ACTIONS(2820), 1, - aux_sym_expression_token1, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1024), 1, - aux_sym__interface_list_repeat1, - ACTIONS(2818), 3, + sym_identifier, + ACTIONS(2822), 11, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_numeric_literal, + sym_target_name, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + aux_sym_factor_abs_token1, + aux_sym_primary_null_token1, + aux_sym_allocator_token1, + [41694] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 1, + anon_sym_LPAREN, + STATE(880), 1, + sym_formal_part, + ACTIONS(2824), 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, - [42054] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2100), 1, anon_sym_COLON_EQ, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(2822), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1348), 1, - sym__assign_value, - STATE(1593), 1, - sym_aspect_specification, - [42085] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2100), 1, - anon_sym_COLON_EQ, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(2824), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1324), 1, - sym__assign_value, - STATE(1615), 1, - sym_aspect_specification, - [42116] = 3, + aux_sym_object_renaming_declaration_token1, + aux_sym_accept_statement_token2, + [41716] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2826), 1, sym_identifier, - ACTIONS(2828), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42132] = 3, + ACTIONS(2828), 11, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_numeric_literal, + sym_target_name, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + aux_sym_factor_abs_token1, + aux_sym_primary_null_token1, + aux_sym_allocator_token1, + [41736] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2830), 1, - sym_identifier, - ACTIONS(2832), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, + ACTIONS(2830), 12, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42148] = 3, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + [41754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2834), 1, + ACTIONS(2832), 1, sym_identifier, - ACTIONS(2836), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, + ACTIONS(2834), 11, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_numeric_literal, + sym_target_name, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + aux_sym_factor_abs_token1, + aux_sym_primary_null_token1, + aux_sym_allocator_token1, + [41774] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 1, + anon_sym_LPAREN, + STATE(879), 1, + sym_formal_part, + ACTIONS(2836), 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_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42164] = 3, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_object_renaming_declaration_token1, + aux_sym_accept_statement_token2, + [41796] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(77), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(2030), 1, + aux_sym_terminate_alternative_token1, + STATE(40), 1, + sym_accept_statement, + STATE(1284), 1, + sym_select_alternative, + STATE(44), 3, + sym__delay_statement, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(1335), 3, + sym_delay_alternative, + sym_accept_alternative, + sym_terminate_alternative, + [41825] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2838), 1, sym_identifier, - ACTIONS(2840), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, + ACTIONS(2840), 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, - [42180] = 3, + [41844] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2842), 1, sym_identifier, - ACTIONS(2844), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, + ACTIONS(2844), 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, - [42196] = 3, + [41863] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(77), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(2030), 1, + aux_sym_terminate_alternative_token1, + STATE(40), 1, + sym_accept_statement, + STATE(1113), 1, + sym_select_alternative, + STATE(44), 3, + sym__delay_statement, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(1335), 3, + sym_delay_alternative, + sym_accept_alternative, + sym_terminate_alternative, + [41892] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2846), 1, sym_identifier, - ACTIONS(2848), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42212] = 3, - ACTIONS(3), 1, - sym_comment, + ACTIONS(2848), 1, + aux_sym_subprogram_body_token1, ACTIONS(2850), 1, - sym_identifier, - ACTIONS(2852), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42228] = 6, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2852), 1, + aux_sym_interface_type_definition_token1, + STATE(1833), 1, + sym__defining_identifier_list, + STATE(432), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(874), 4, + sym__declare_item, + sym_object_declaration, + sym_object_renaming_declaration, + aux_sym_declare_expression_repeat1, + [41921] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2854), 1, - anon_sym_LPAREN, - ACTIONS(2856), 1, - anon_sym_LBRACK, - ACTIONS(2858), 1, - aux_sym_record_component_association_list_token1, - STATE(1892), 1, - sym_enumeration_aggregate, - STATE(1893), 4, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [42250] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2860), 1, sym_identifier, - ACTIONS(2862), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, + ACTIONS(2856), 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, - [42266] = 3, + [41940] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2858), 1, + sym_identifier, + ACTIONS(2860), 10, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [41959] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2846), 1, + sym_identifier, + ACTIONS(2850), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2852), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(2862), 1, + aux_sym_subprogram_body_token1, + STATE(1833), 1, + sym__defining_identifier_list, + STATE(432), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(870), 4, + sym__declare_item, + sym_object_declaration, + sym_object_renaming_declaration, + aux_sym_declare_expression_repeat1, + [41988] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2864), 1, sym_identifier, - ACTIONS(2866), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42282] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2868), 1, - sym_identifier, - ACTIONS(2870), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42298] = 3, - ACTIONS(3), 1, - sym_comment, + ACTIONS(2867), 1, + aux_sym_subprogram_body_token1, + ACTIONS(2869), 1, + aux_sym_access_to_subprogram_definition_token1, ACTIONS(2872), 1, - sym_identifier, - ACTIONS(2874), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42314] = 3, + aux_sym_interface_type_definition_token1, + STATE(1833), 1, + sym__defining_identifier_list, + STATE(432), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(874), 4, + sym__declare_item, + sym_object_declaration, + sym_object_renaming_declaration, + aux_sym_declare_expression_repeat1, + [42017] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2876), 1, - sym_identifier, - ACTIONS(2878), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42330] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, + ACTIONS(1726), 1, sym_tick, - ACTIONS(1730), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(2036), 1, + ACTIONS(2128), 1, anon_sym_DOT, - ACTIONS(2882), 1, - aux_sym_with_clause_token2, - ACTIONS(2885), 1, - aux_sym_expression_token1, - STATE(460), 1, - sym_actual_parameter_part, - ACTIONS(2880), 2, - anon_sym_SEMI, - aux_sym_expression_token3, - [42356] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2887), 1, - sym_identifier, - ACTIONS(2889), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42372] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2891), 1, - sym_identifier, - ACTIONS(2893), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42388] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2895), 1, - sym_identifier, - ACTIONS(2897), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42404] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2899), 1, - sym_identifier, - ACTIONS(2901), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42420] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2905), 1, - aux_sym_with_clause_token2, - ACTIONS(2908), 1, - aux_sym_expression_token1, - STATE(460), 1, - sym_actual_parameter_part, - ACTIONS(2903), 2, - anon_sym_SEMI, - aux_sym_expression_token3, - [42446] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2910), 1, - sym_identifier, - ACTIONS(2912), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42462] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2914), 1, - sym_identifier, - ACTIONS(2916), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42478] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2918), 1, - sym_identifier, - ACTIONS(2920), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42494] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2100), 1, + ACTIONS(2189), 1, anon_sym_COLON_EQ, - STATE(460), 1, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + STATE(483), 1, sym_actual_parameter_part, - STATE(1487), 1, + STATE(1185), 1, sym__assign_value, - ACTIONS(2922), 2, + STATE(1446), 1, + sym_aspect_specification, + ACTIONS(2875), 2, anon_sym_RPAREN, anon_sym_SEMI, - [42520] = 3, + [42049] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2924), 1, - sym_identifier, - ACTIONS(2926), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42536] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2928), 1, - sym_identifier, - ACTIONS(2930), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42552] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2932), 1, - sym_identifier, - ACTIONS(2934), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42568] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, + ACTIONS(1726), 1, sym_tick, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, - aux_sym_result_profile_token1, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1509), 1, - sym_formal_part, - STATE(1169), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [42594] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2936), 1, - sym_identifier, - ACTIONS(2938), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2189), 1, + anon_sym_COLON_EQ, + ACTIONS(2306), 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, - [42610] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_LPAREN, - STATE(460), 1, + STATE(483), 1, sym_actual_parameter_part, STATE(1166), 1, - sym_formal_part, - ACTIONS(2795), 3, + sym__assign_value, + STATE(1528), 1, + sym_aspect_specification, + ACTIONS(2877), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [42081] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2189), 1, + anon_sym_COLON_EQ, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1199), 1, + sym__assign_value, + STATE(1488), 1, + sym_aspect_specification, + ACTIONS(2879), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [42113] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2881), 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, - [42634] = 3, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_object_renaming_declaration_token1, + aux_sym_accept_statement_token2, + [42129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2940), 1, + ACTIONS(2818), 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, + [42145] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2883), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_object_renaming_declaration_token1, + aux_sym_accept_statement_token2, + [42161] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 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, + [42177] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2824), 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, + [42193] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2189), 1, + anon_sym_COLON_EQ, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1131), 1, + sym__assign_value, + STATE(1421), 1, + sym_aspect_specification, + ACTIONS(2887), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [42225] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2044), 1, + anon_sym_COMMA, + ACTIONS(2889), 1, + anon_sym_COLON, + ACTIONS(2892), 1, + anon_sym_SEMI, + ACTIONS(2894), 1, + aux_sym_object_renaming_declaration_token1, + STATE(1301), 1, + aux_sym__defining_identifier_list_repeat1, + ACTIONS(1678), 4, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON_EQ, + [42250] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2896), 1, + anon_sym_LPAREN, + ACTIONS(2898), 1, + aux_sym_package_specification_token2, + ACTIONS(2900), 1, + aux_sym_result_profile_token1, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1431), 1, + sym_formal_part, + STATE(1117), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [42279] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2896), 1, + anon_sym_LPAREN, + ACTIONS(2900), 1, + aux_sym_result_profile_token1, + ACTIONS(2902), 1, + aux_sym_package_specification_token2, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1431), 1, + sym_formal_part, + STATE(1117), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [42308] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2896), 1, + anon_sym_LPAREN, + ACTIONS(2906), 1, + aux_sym_package_specification_token2, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1129), 1, + sym_formal_part, + ACTIONS(2904), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [42335] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2445), 1, + aux_sym_iterator_filter_token1, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1210), 1, + sym_iterator_filter, + ACTIONS(2909), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [42362] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2445), 1, + aux_sym_iterator_filter_token1, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1224), 1, + sym_iterator_filter, + ACTIONS(2909), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [42389] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2189), 1, + anon_sym_COLON_EQ, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(2911), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1320), 1, + sym__assign_value, + STATE(1619), 1, + sym_aspect_specification, + [42420] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2445), 1, + aux_sym_iterator_filter_token1, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1264), 1, + sym_iterator_filter, + ACTIONS(2443), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [42447] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2189), 1, + anon_sym_COLON_EQ, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(2913), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1342), 1, + sym__assign_value, + STATE(1936), 1, + sym_aspect_specification, + [42478] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2189), 1, + anon_sym_COLON_EQ, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(2915), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1361), 1, + sym__assign_value, + STATE(1629), 1, + sym_aspect_specification, + [42509] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2445), 1, + aux_sym_iterator_filter_token1, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1341), 1, + sym_iterator_filter, + ACTIONS(2917), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [42536] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2445), 1, + aux_sym_iterator_filter_token1, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1357), 1, + sym_iterator_filter, + ACTIONS(2447), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [42563] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2445), 1, + aux_sym_iterator_filter_token1, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1347), 1, + sym_iterator_filter, + ACTIONS(2917), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [42590] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2896), 1, + anon_sym_LPAREN, + ACTIONS(2919), 1, + aux_sym_package_specification_token2, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1129), 1, + sym_formal_part, + ACTIONS(2904), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [42617] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + aux_sym_expression_token1, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1053), 1, + aux_sym__interface_list_repeat1, + ACTIONS(2922), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [42644] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2926), 1, sym_identifier, - ACTIONS(2942), 7, + ACTIONS(2928), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -52093,12 +53445,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, - [42650] = 3, + [42660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2944), 1, + ACTIONS(2930), 1, sym_identifier, - ACTIONS(2946), 7, + ACTIONS(2932), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -52106,20 +53458,62 @@ 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, - [42666] = 3, + [42676] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [42692] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2938), 1, + sym_identifier, + ACTIONS(2940), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [42708] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2942), 1, + sym_identifier, + ACTIONS(2944), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [42724] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2946), 1, + anon_sym_LPAREN, ACTIONS(2948), 1, - sym_identifier, - ACTIONS(2950), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42682] = 3, + anon_sym_LBRACK, + ACTIONS(2950), 1, + aux_sym_record_component_association_list_token1, + STATE(1875), 1, + sym_enumeration_aggregate, + STATE(1878), 4, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [42746] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2952), 1, @@ -52132,114 +53526,67 @@ 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, - [42698] = 3, + [42762] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2956), 1, - sym_identifier, - ACTIONS(2958), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42714] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2960), 1, - sym_identifier, - ACTIONS(2962), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42730] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2964), 1, - sym_identifier, - ACTIONS(2966), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42746] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2968), 1, - sym_identifier, - ACTIONS(2970), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42762] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - sym_identifier, - ACTIONS(2974), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42778] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, + ACTIONS(1726), 1, sym_tick, - ACTIONS(1730), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(2036), 1, + ACTIONS(2128), 1, anon_sym_DOT, - ACTIONS(2978), 1, - aux_sym_with_clause_token2, - ACTIONS(2981), 1, - aux_sym_expression_token1, - STATE(460), 1, + STATE(483), 1, sym_actual_parameter_part, - ACTIONS(2976), 2, + ACTIONS(2956), 4, anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token1, aux_sym_expression_token3, - [42804] = 9, + [42784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2236), 1, + ACTIONS(2958), 1, + sym_identifier, + ACTIONS(2960), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, aux_sym_with_clause_token2, - ACTIONS(2983), 1, - aux_sym_package_specification_token2, - ACTIONS(2985), 1, - aux_sym_object_renaming_declaration_token1, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1946), 1, - sym_aspect_specification, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [42800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2962), 1, + sym_identifier, + ACTIONS(2964), 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, + [42816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2966), 1, + sym_identifier, + ACTIONS(2968), 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, [42832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 1, + ACTIONS(2970), 1, sym_identifier, - ACTIONS(2989), 7, + ACTIONS(2972), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -52247,59 +53594,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [42848] = 6, + [42848] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, + ACTIONS(1726), 1, sym_tick, - ACTIONS(1730), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(2036), 1, + ACTIONS(2128), 1, anon_sym_DOT, - STATE(460), 1, - sym_actual_parameter_part, - ACTIONS(2991), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token1, - aux_sym_expression_token3, - [42870] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2993), 1, - sym_identifier, - ACTIONS(2995), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42886] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2100), 1, + ACTIONS(2189), 1, anon_sym_COLON_EQ, - STATE(460), 1, + STATE(483), 1, sym_actual_parameter_part, - STATE(1436), 1, + STATE(1458), 1, sym__assign_value, - ACTIONS(2997), 2, + ACTIONS(2974), 2, anon_sym_RPAREN, anon_sym_SEMI, - [42912] = 3, + [42874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2999), 1, + ACTIONS(2976), 1, sym_identifier, - ACTIONS(3001), 7, + ACTIONS(2978), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -52307,12 +53625,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, - [42928] = 3, + [42890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3003), 1, + ACTIONS(2980), 1, sym_identifier, - ACTIONS(3005), 7, + ACTIONS(2982), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -52320,12 +53638,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [42944] = 3, + [42906] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 1, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2896), 1, + anon_sym_LPAREN, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1129), 1, + sym_formal_part, + ACTIONS(2904), 3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + [42930] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2984), 1, sym_identifier, - ACTIONS(3009), 7, + ACTIONS(2986), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -52333,7 +53668,101 @@ 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, - [42960] = 3, + [42946] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2988), 1, + sym_identifier, + ACTIONS(2990), 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, + [42962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2992), 1, + sym_identifier, + ACTIONS(2994), 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, + [42978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2996), 1, + sym_identifier, + ACTIONS(2998), 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, + [42994] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2896), 1, + anon_sym_LPAREN, + ACTIONS(2900), 1, + aux_sym_result_profile_token1, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1431), 1, + sym_formal_part, + STATE(1117), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [43020] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3000), 1, + aux_sym_package_specification_token2, + ACTIONS(3002), 1, + aux_sym_object_renaming_declaration_token1, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1964), 1, + sym_aspect_specification, + [43048] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3006), 1, + aux_sym_with_clause_token2, + ACTIONS(3009), 1, + aux_sym_expression_token1, + STATE(483), 1, + sym_actual_parameter_part, + ACTIONS(3004), 2, + anon_sym_SEMI, + aux_sym_expression_token3, + [43074] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3011), 1, @@ -52346,4068 +53775,4016 @@ 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, - [42976] = 8, + [43090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, ACTIONS(3015), 1, - anon_sym_LPAREN, - ACTIONS(3017), 1, - aux_sym_iterator_filter_token1, - STATE(1083), 1, - sym_non_empty_entry_body_formal_part, - STATE(1496), 1, - sym_aspect_specification, - STATE(1498), 1, - sym_formal_part, - STATE(1549), 1, - sym_entry_barrier, - [43001] = 3, + sym_identifier, + ACTIONS(3017), 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, + [43106] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3019), 1, + sym_identifier, + ACTIONS(3021), 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, + [43122] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3023), 1, + sym_identifier, + ACTIONS(3025), 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, + [43138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3027), 1, + sym_identifier, + ACTIONS(3029), 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, + [43154] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3031), 1, + sym_identifier, + ACTIONS(3033), 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, + [43170] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, sym_tick, - ACTIONS(2013), 6, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3037), 1, + aux_sym_with_clause_token2, + ACTIONS(3040), 1, + aux_sym_expression_token1, + STATE(483), 1, + sym_actual_parameter_part, + ACTIONS(3035), 2, + anon_sym_SEMI, + aux_sym_expression_token3, + [43196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3042), 1, + sym_identifier, + ACTIONS(3044), 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, + [43212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3046), 1, + sym_identifier, + ACTIONS(3048), 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, + [43228] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + sym_identifier, + ACTIONS(3052), 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, + [43244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3054), 1, + sym_identifier, + ACTIONS(3056), 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, + [43260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3058), 1, + sym_identifier, + ACTIONS(3060), 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, + [43276] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2189), 1, + anon_sym_COLON_EQ, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1509), 1, + sym__assign_value, + ACTIONS(3062), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [43302] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3064), 1, + sym_identifier, + ACTIONS(3066), 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, + [43318] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3068), 1, + sym_identifier, + ACTIONS(3070), 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, + [43334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3072), 1, + sym_identifier, + ACTIONS(3074), 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, + [43350] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3076), 1, + sym_identifier, + ACTIONS(3078), 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, + [43366] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3080), 1, + sym_identifier, + ACTIONS(3082), 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, + [43382] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3084), 1, + sym_identifier, + ACTIONS(3086), 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, + [43398] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3090), 1, + aux_sym_with_clause_token2, + ACTIONS(3093), 1, + aux_sym_expression_token1, + STATE(483), 1, + sym_actual_parameter_part, + ACTIONS(3088), 2, + anon_sym_SEMI, + aux_sym_expression_token3, + [43424] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3095), 1, + sym_identifier, + ACTIONS(3097), 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, + [43440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3099), 1, + sym_identifier, + ACTIONS(3101), 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, + [43456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3103), 1, + sym_identifier, + ACTIONS(3105), 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, + [43472] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3107), 1, + sym_identifier, + ACTIONS(3109), 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, + [43488] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3111), 1, + sym_identifier, + ACTIONS(3113), 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, + [43504] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3115), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1921), 1, + sym_aspect_specification, + [43529] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_COMMA, + ACTIONS(3119), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1334), 1, + aux_sym__name_list_repeat1, + [43554] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3121), 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, + [43567] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3123), 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, + [43580] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3125), 1, + aux_sym_package_specification_token2, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1964), 1, + sym_aspect_specification, + [43605] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1364), 1, + aux_sym__name_list_repeat1, + ACTIONS(3127), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [43628] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3129), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1792), 1, + sym_aspect_specification, + [43653] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3131), 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, + [43666] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3133), 1, + aux_sym_chunk_specification_token1, + ACTIONS(3135), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(3138), 1, + anon_sym_COLON, + ACTIONS(3140), 1, + aux_sym_iterator_specification_token1, + ACTIONS(1678), 3, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + [43687] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2052), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(3142), 1, + aux_sym_package_specification_token1, + STATE(1990), 1, + sym_package_specification, + STATE(1263), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + [43708] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + STATE(483), 1, + sym_actual_parameter_part, + ACTIONS(3144), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [43729] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3146), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1893), 1, + sym_aspect_specification, + [43754] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3148), 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, + [43767] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3150), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1864), 1, + sym_aspect_specification, + [43792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3152), 1, + sym_identifier, + ACTIONS(3154), 6, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_package_specification_token3, + [43807] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3156), 1, + sym_identifier, + ACTIONS(3158), 6, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_package_specification_token3, + [43822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3160), 1, + sym_tick, + ACTIONS(2106), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_GT, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [43016] = 8, + [43837] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, + ACTIONS(1726), 1, sym_tick, - ACTIONS(1730), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(2036), 1, + ACTIONS(2128), 1, anon_sym_DOT, - ACTIONS(2236), 1, + ACTIONS(2306), 1, aux_sym_with_clause_token2, - ACTIONS(3021), 1, + ACTIONS(3162), 1, anon_sym_SEMI, - STATE(460), 1, + STATE(483), 1, sym_actual_parameter_part, - STATE(1879), 1, + STATE(1754), 1, sym_aspect_specification, - [43041] = 8, + [43862] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, + ACTIONS(1726), 1, sym_tick, - ACTIONS(1730), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(2036), 1, + ACTIONS(2128), 1, anon_sym_DOT, - ACTIONS(2236), 1, + ACTIONS(2306), 1, aux_sym_with_clause_token2, - ACTIONS(3023), 1, + ACTIONS(3164), 1, anon_sym_SEMI, - STATE(460), 1, + STATE(483), 1, sym_actual_parameter_part, - STATE(1945), 1, + STATE(1672), 1, sym_aspect_specification, - [43066] = 6, + [43887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3025), 1, - anon_sym_LPAREN, - ACTIONS(3027), 1, - anon_sym_SEMI, - ACTIONS(3029), 1, - aux_sym_package_specification_token2, - ACTIONS(3031), 1, - aux_sym_expression_token3, - STATE(1347), 3, - sym__discriminant_part, - sym_unknown_discriminant_part, - sym_known_discriminant_part, - [43087] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3033), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1797), 1, - sym_aspect_specification, - [43112] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3035), 1, - anon_sym_COMMA, - ACTIONS(3037), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1246), 1, - aux_sym__name_list_repeat1, - [43137] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3039), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1573), 1, - sym_aspect_specification, - [43162] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3041), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1677), 1, - sym_aspect_specification, - [43187] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3043), 7, - aux_sym_iterated_element_association_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [43200] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1216), 1, - aux_sym__name_list_repeat1, - ACTIONS(3037), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [43223] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3045), 7, - aux_sym_iterated_element_association_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [43236] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3047), 7, - aux_sym_iterated_element_association_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [43249] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3049), 1, - aux_sym_package_specification_token2, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1946), 1, - sym_aspect_specification, - [43274] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3051), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1641), 1, - sym_aspect_specification, - [43299] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 7, - aux_sym_iterated_element_association_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [43312] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3055), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1686), 1, - sym_aspect_specification, - [43337] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3057), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1687), 1, - sym_aspect_specification, - [43362] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3059), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1688), 1, - sym_aspect_specification, - [43387] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3061), 1, + ACTIONS(3166), 1, sym_identifier, - ACTIONS(3063), 6, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_package_specification_token3, - [43402] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3065), 1, - sym_identifier, - ACTIONS(3067), 6, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_package_specification_token3, - [43417] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3069), 7, - aux_sym_iterated_element_association_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [43430] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - STATE(460), 1, - sym_actual_parameter_part, - ACTIONS(3071), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [43451] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3073), 1, - sym_identifier, - ACTIONS(3075), 6, + ACTIONS(3168), 6, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, anon_sym_LBRACK, aux_sym_relation_membership_token1, - [43466] = 3, + [43902] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3077), 1, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3170), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1919), 1, + sym_aspect_specification, + [43927] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3172), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1566), 1, + sym_aspect_specification, + [43952] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3174), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1567), 1, + sym_aspect_specification, + [43977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2017), 1, sym_identifier, - ACTIONS(3079), 6, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - [43481] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1974), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(3081), 1, - aux_sym_package_specification_token1, - STATE(1961), 1, - sym_package_specification, - STATE(1280), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - [43502] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1941), 1, - sym_identifier, - ACTIONS(1943), 6, + ACTIONS(2019), 6, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, anon_sym_LBRACK, aux_sym_attribute_designator_token1, - [43517] = 8, + [43992] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, + ACTIONS(1726), 1, sym_tick, - ACTIONS(1730), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(2036), 1, + ACTIONS(2128), 1, anon_sym_DOT, - ACTIONS(2236), 1, + ACTIONS(2306), 1, aux_sym_with_clause_token2, - ACTIONS(3083), 1, + ACTIONS(3176), 1, anon_sym_SEMI, - STATE(460), 1, + STATE(483), 1, sym_actual_parameter_part, - STATE(1631), 1, + STATE(1733), 1, sym_aspect_specification, - [43542] = 8, + [44017] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, + ACTIONS(1726), 1, sym_tick, - ACTIONS(1730), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(2036), 1, + ACTIONS(2128), 1, anon_sym_DOT, - ACTIONS(2236), 1, + ACTIONS(2306), 1, aux_sym_with_clause_token2, - ACTIONS(3085), 1, + ACTIONS(3178), 1, anon_sym_SEMI, - STATE(460), 1, + STATE(483), 1, sym_actual_parameter_part, - STATE(1805), 1, + STATE(1954), 1, sym_aspect_specification, - [43567] = 8, + [44042] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, + ACTIONS(1726), 1, sym_tick, - ACTIONS(1730), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(2036), 1, + ACTIONS(2128), 1, anon_sym_DOT, - ACTIONS(2236), 1, + ACTIONS(2306), 1, aux_sym_with_clause_token2, - ACTIONS(3087), 1, + ACTIONS(3180), 1, anon_sym_SEMI, - STATE(460), 1, + STATE(483), 1, sym_actual_parameter_part, - STATE(1756), 1, + STATE(1899), 1, sym_aspect_specification, - [43592] = 8, + [44067] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, + ACTIONS(1726), 1, sym_tick, - ACTIONS(1730), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(2036), 1, + ACTIONS(2128), 1, anon_sym_DOT, - ACTIONS(2236), 1, + ACTIONS(2306), 1, aux_sym_with_clause_token2, - ACTIONS(3089), 1, - aux_sym_package_specification_token2, - STATE(460), 1, + ACTIONS(3182), 1, + anon_sym_SEMI, + STATE(483), 1, sym_actual_parameter_part, - STATE(1888), 1, + STATE(1642), 1, sym_aspect_specification, - [43617] = 8, + [44092] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, + ACTIONS(1726), 1, sym_tick, - ACTIONS(1730), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(2036), 1, + ACTIONS(2128), 1, anon_sym_DOT, - ACTIONS(3035), 1, + ACTIONS(3117), 1, anon_sym_COMMA, - ACTIONS(3091), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1346), 1, - aux_sym__name_list_repeat1, - [43642] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3093), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1898), 1, - sym_aspect_specification, - [43667] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3095), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1690), 1, - sym_aspect_specification, - [43692] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3097), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1622), 1, - sym_aspect_specification, - [43717] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3099), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - STATE(1621), 1, - sym_aspect_specification, - [43742] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3101), 1, - aux_sym_chunk_specification_token1, - ACTIONS(3103), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(3106), 1, - anon_sym_COLON, - ACTIONS(3108), 1, - aux_sym_iterator_specification_token1, - ACTIONS(1586), 3, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - [43763] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3110), 1, - anon_sym_COMMA, - STATE(982), 1, - aux_sym_aspect_mark_list_repeat1, - ACTIONS(3112), 4, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [43779] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2100), 1, - anon_sym_COLON_EQ, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - STATE(1079), 1, - sym__assign_value, - STATE(1508), 1, - sym_aspect_specification, - ACTIONS(3114), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [43799] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3116), 1, - anon_sym_COMMA, - STATE(958), 1, - aux_sym_aspect_mark_list_repeat1, - ACTIONS(3119), 4, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [43815] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3121), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [43827] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3123), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3125), 1, - aux_sym_with_clause_token1, ACTIONS(3127), 1, - aux_sym_allocator_token1, - ACTIONS(3129), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(3131), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(3133), 1, - aux_sym_private_extension_declaration_token1, - [43849] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1970), 1, - sym_identifier, - ACTIONS(3135), 1, - aux_sym_iterated_element_association_token1, - STATE(1256), 1, - sym_parameter_specification, - STATE(1713), 1, - sym_entry_index_specification, - STATE(1868), 1, - sym__parameter_specification_list, - STATE(1870), 1, - sym__defining_identifier_list, - [43871] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3137), 1, - anon_sym_LPAREN, - ACTIONS(3139), 1, anon_sym_SEMI, - ACTIONS(3141), 1, - aux_sym_package_specification_token2, - STATE(1118), 1, - sym_known_discriminant_part, - STATE(1376), 1, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1261), 1, + aux_sym__name_list_repeat1, + [44117] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3184), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1570), 1, sym_aspect_specification, - [43893] = 7, + [44142] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, + ACTIONS(1726), 1, sym_tick, - ACTIONS(1730), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(2036), 1, + ACTIONS(2128), 1, anon_sym_DOT, - ACTIONS(3143), 1, - anon_sym_SEMI, - ACTIONS(3145), 1, + ACTIONS(2306), 1, aux_sym_with_clause_token2, - STATE(460), 1, - sym_actual_parameter_part, - [43915] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3147), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3149), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - [43937] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3151), 1, - anon_sym_COMMA, - ACTIONS(3153), 1, - anon_sym_RBRACK, - ACTIONS(3157), 1, - aux_sym_with_clause_token2, - STATE(1270), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3155), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [43957] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3159), 1, - sym_identifier, - STATE(1293), 1, - sym_quantifier, - ACTIONS(3161), 2, - aux_sym_use_clause_token1, - aux_sym_quantifier_token1, - STATE(1459), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - [43975] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3163), 1, - anon_sym_COMMA, - ACTIONS(3165), 1, - anon_sym_RPAREN, - ACTIONS(3167), 1, - aux_sym_with_clause_token2, - STATE(1519), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3155), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [43995] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3025), 1, - anon_sym_LPAREN, - ACTIONS(3169), 1, - anon_sym_SEMI, - ACTIONS(3171), 1, + ACTIONS(3186), 1, aux_sym_package_specification_token2, - STATE(1482), 1, - sym_known_discriminant_part, - STATE(1480), 2, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1868), 1, + sym_aspect_specification, + [44167] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3188), 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, + [44180] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3190), 1, + anon_sym_LPAREN, + ACTIONS(3192), 1, + anon_sym_SEMI, + ACTIONS(3194), 1, + aux_sym_package_specification_token2, + ACTIONS(3196), 1, + aux_sym_expression_token3, + STATE(1241), 3, sym__discriminant_part, sym_unknown_discriminant_part, - [44015] = 4, + sym_known_discriminant_part, + [44201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2812), 1, - anon_sym_SEMI, - ACTIONS(3173), 1, - anon_sym_COLON, - ACTIONS(1586), 4, - sym_tick, - anon_sym_DOT, + ACTIONS(3198), 1, + sym_identifier, + ACTIONS(3200), 6, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + [44216] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3202), 1, anon_sym_LPAREN, - anon_sym_COLON_EQ, - [44031] = 5, + ACTIONS(3204), 1, + aux_sym_iterator_filter_token1, + STATE(1181), 1, + sym_non_empty_entry_body_formal_part, + STATE(1518), 1, + sym_aspect_specification, + STATE(1520), 1, + sym_formal_part, + STATE(1682), 1, + sym_entry_barrier, + [44241] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1974), 1, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3206), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1991), 1, + sym_aspect_specification, + [44266] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3208), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + STATE(1572), 1, + sym_aspect_specification, + [44291] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3210), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [44303] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(2189), 1, + anon_sym_COLON_EQ, + STATE(1094), 1, + sym_actual_parameter_part, + STATE(1993), 1, + sym__assign_value, + [44325] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3212), 1, + anon_sym_COMMA, + STATE(986), 1, + aux_sym_aspect_mark_list_repeat1, + ACTIONS(3215), 4, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [44341] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1906), 1, + aux_sym_primary_null_token1, + ACTIONS(1912), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3217), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3219), 1, + anon_sym_SEMI, + ACTIONS(3221), 1, + aux_sym_with_clause_token1, + STATE(1496), 1, + sym_record_definition, + [44363] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2050), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, + ACTIONS(2052), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(3175), 1, - aux_sym_entry_declaration_token1, - STATE(1107), 3, + ACTIONS(3223), 1, + aux_sym_package_specification_token1, + STATE(1109), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - [44049] = 6, + [44381] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, + ACTIONS(2050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2052), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(3225), 1, + aux_sym_entry_declaration_token1, + STATE(1194), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + [44399] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, sym_tick, - ACTIONS(1730), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(2036), 1, + ACTIONS(2128), 1, anon_sym_DOT, - STATE(460), 1, + STATE(483), 1, sym_actual_parameter_part, - ACTIONS(3177), 2, + ACTIONS(3227), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [44069] = 7, + [44419] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3179), 1, - anon_sym_SEMI, - ACTIONS(3181), 1, - aux_sym_with_clause_token2, - STATE(460), 1, - sym_actual_parameter_part, - [44091] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2100), 1, - anon_sym_COLON_EQ, - STATE(1026), 1, - sym_actual_parameter_part, - STATE(1962), 1, - sym__assign_value, - [44113] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3183), 1, - anon_sym_COLON, - ACTIONS(1586), 5, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - [44127] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - STATE(460), 1, - sym_actual_parameter_part, - ACTIONS(3185), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [44147] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1830), 1, - aux_sym_primary_null_token1, - ACTIONS(1836), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3123), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3187), 1, - aux_sym_allocator_token1, - ACTIONS(3189), 1, - aux_sym_interface_type_definition_token2, - STATE(1424), 1, - sym_record_definition, - [44169] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3193), 1, - anon_sym_EQ_GT, - ACTIONS(3191), 5, + ACTIONS(3229), 1, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [44183] = 7, + ACTIONS(3231), 1, + anon_sym_RBRACK, + ACTIONS(3235), 1, + aux_sym_with_clause_token2, + STATE(1247), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3233), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [44439] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, - aux_sym_primary_null_token1, - ACTIONS(1836), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3123), 1, + ACTIONS(3217), 1, aux_sym_compilation_unit_token1, - ACTIONS(3195), 1, - anon_sym_SEMI, - ACTIONS(3197), 1, + ACTIONS(3237), 1, aux_sym_with_clause_token1, - STATE(1424), 1, + ACTIONS(3239), 1, + aux_sym_allocator_token1, + ACTIONS(3241), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(3243), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(3245), 1, + aux_sym_private_extension_declaration_token1, + [44461] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3247), 1, + sym_identifier, + STATE(1330), 1, + sym_quantifier, + ACTIONS(3249), 2, + aux_sym_use_clause_token1, + aux_sym_quantifier_token1, + STATE(1420), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [44479] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1906), 1, + aux_sym_primary_null_token1, + ACTIONS(1912), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3217), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3251), 1, + aux_sym_allocator_token1, + ACTIONS(3253), 1, + aux_sym_interface_type_definition_token2, + STATE(1496), 1, sym_record_definition, - [44205] = 7, + [44501] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3255), 1, + anon_sym_LPAREN, + ACTIONS(3257), 1, + anon_sym_SEMI, + ACTIONS(3259), 1, + aux_sym_package_specification_token2, + STATE(1183), 1, + sym_known_discriminant_part, + STATE(1475), 1, + sym_aspect_specification, + [44523] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(380), 1, + aux_sym_chunk_specification_token1, + ACTIONS(400), 1, + aux_sym_global_mode_token1, + ACTIONS(402), 1, + aux_sym_non_empty_mode_token1, + STATE(772), 1, + sym_global_mode, + STATE(872), 1, + sym_non_empty_mode, + STATE(1464), 1, + sym_global_aspect_element, + [44545] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3225), 1, + aux_sym_entry_declaration_token1, + ACTIONS(3261), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(3263), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1058), 1, + sym__subprogram_specification, + STATE(1159), 1, + sym_procedure_specification, + STATE(1192), 1, + sym_function_specification, + [44567] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, aux_sym_iteration_scheme_token1, - ACTIONS(208), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(410), 1, + ACTIONS(412), 1, aux_sym_subprogram_body_token1, - ACTIONS(3199), 1, + ACTIONS(424), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(3265), 1, aux_sym_declare_expression_token1, - ACTIONS(3201), 1, + ACTIONS(3267), 1, aux_sym_loop_statement_token1, - STATE(1960), 1, + STATE(1989), 1, sym_iteration_scheme, - [44227] = 2, + [44589] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 6, + ACTIONS(2046), 1, + sym_identifier, + ACTIONS(3269), 1, + aux_sym_iterated_element_association_token1, + STATE(1377), 1, + sym_parameter_specification, + STATE(1744), 1, + sym_entry_index_specification, + STATE(1843), 1, + sym__parameter_specification_list, + STATE(1844), 1, + sym__defining_identifier_list, + [44611] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3271), 1, + anon_sym_SEMI, + ACTIONS(3273), 1, + aux_sym_with_clause_token2, + STATE(483), 1, + sym_actual_parameter_part, + [44633] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3275), 1, + anon_sym_SEMI, + ACTIONS(3277), 1, + aux_sym_with_clause_token2, + STATE(483), 1, + sym_actual_parameter_part, + [44655] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3279), 1, + anon_sym_COMMA, + ACTIONS(3281), 1, + anon_sym_RPAREN, + ACTIONS(3283), 1, + aux_sym_with_clause_token2, + STATE(1467), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3233), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [44675] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3285), 1, + anon_sym_COMMA, + STATE(986), 1, + aux_sym_aspect_mark_list_repeat1, + ACTIONS(3287), 4, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [44691] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3289), 6, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_iterator_filter_token1, aux_sym_loop_statement_token1, - [44239] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1974), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(3205), 1, - aux_sym_package_specification_token1, - STATE(1094), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - [44257] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3110), 1, - anon_sym_COMMA, - STATE(958), 1, - aux_sym_aspect_mark_list_repeat1, - ACTIONS(3207), 4, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [44273] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3175), 1, - aux_sym_entry_declaration_token1, - ACTIONS(3209), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(3211), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(990), 1, - sym__subprogram_specification, - STATE(1143), 1, - sym_function_specification, - STATE(1145), 1, - sym_procedure_specification, - [44295] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(368), 1, - aux_sym_chunk_specification_token1, - ACTIONS(388), 1, - aux_sym_global_mode_token1, - ACTIONS(390), 1, - aux_sym_non_empty_mode_token1, - STATE(695), 1, - sym_global_mode, - STATE(840), 1, - sym_non_empty_mode, - STATE(1530), 1, - sym_global_aspect_element, - [44317] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2100), 1, - anon_sym_COLON_EQ, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3213), 1, - anon_sym_SEMI, - STATE(1252), 1, - sym__assign_value, - STATE(1685), 1, - sym_aspect_specification, - [44336] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3215), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - [44355] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2100), 1, - anon_sym_COLON_EQ, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3217), 1, - anon_sym_SEMI, - STATE(1274), 1, - sym__assign_value, - STATE(1671), 1, - sym_aspect_specification, - [44374] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3221), 1, - aux_sym_elsif_expression_item_token1, - ACTIONS(3219), 2, - anon_sym_RPAREN, - aux_sym_expression_token4, - STATE(988), 2, - sym_elsif_expression_item, - aux_sym_if_expression_repeat1, - [44389] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3224), 1, - anon_sym_RPAREN, - STATE(460), 1, - sym_actual_parameter_part, - [44408] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3226), 1, - anon_sym_SEMI, - ACTIONS(3228), 1, - aux_sym_package_specification_token2, - ACTIONS(3230), 1, - aux_sym_object_renaming_declaration_token1, - STATE(1483), 1, - sym_aspect_specification, - [44427] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3232), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - [44446] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3234), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - [44465] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3236), 1, - aux_sym_object_renaming_declaration_token1, - STATE(460), 1, - sym_actual_parameter_part, - [44484] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3238), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [44495] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3240), 1, - anon_sym_RPAREN, - ACTIONS(3242), 1, - aux_sym_expression_token4, - ACTIONS(3244), 1, - aux_sym_elsif_expression_item_token1, - STATE(1066), 2, - sym_elsif_expression_item, - aux_sym_if_expression_repeat1, - [44512] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1974), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1143), 1, - sym_function_specification, - STATE(1145), 1, - sym_procedure_specification, - STATE(1164), 1, - sym__subprogram_specification, - [44531] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3246), 1, - aux_sym_package_specification_token2, - ACTIONS(1586), 4, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - aux_sym_with_clause_token2, - [44544] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3249), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - [44563] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(442), 1, - aux_sym_component_choice_list_token1, - ACTIONS(3251), 1, - sym_identifier, - ACTIONS(3253), 1, - sym_string_literal, - STATE(1389), 1, - sym__named_record_component_association, - STATE(1934), 1, - sym_component_choice_list, - [44582] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3255), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - [44601] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2100), 1, - anon_sym_COLON_EQ, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3257), 1, - anon_sym_SEMI, - STATE(1325), 1, - sym__assign_value, - STATE(1617), 1, - sym_aspect_specification, - [44620] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2720), 1, - anon_sym_LPAREN, - ACTIONS(2793), 1, - aux_sym_result_profile_token1, - STATE(1509), 1, - sym_formal_part, - STATE(1204), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [44637] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2100), 1, - anon_sym_COLON_EQ, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3259), 1, - anon_sym_SEMI, - STATE(1239), 1, - sym__assign_value, - STATE(1734), 1, - sym_aspect_specification, - [44656] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3261), 1, - anon_sym_SEMI, - ACTIONS(3263), 1, - aux_sym_package_specification_token2, - ACTIONS(3265), 1, - aux_sym_object_renaming_declaration_token1, - STATE(1456), 1, - sym_aspect_specification, - [44675] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3267), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [44686] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2720), 1, - anon_sym_LPAREN, - ACTIONS(2793), 1, - aux_sym_result_profile_token1, - STATE(1509), 1, - sym_formal_part, - STATE(850), 2, - sym__parameter_and_result_profile, - sym_result_profile, [44703] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3269), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - [44722] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3271), 1, - sym_identifier, - ACTIONS(3273), 1, - anon_sym_LT_GT, - STATE(1328), 1, - sym_discriminant_specification, - STATE(1882), 1, - sym_discriminant_specification_list, - STATE(1883), 1, - sym__defining_identifier_list, - [44741] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3275), 1, - aux_sym_package_specification_token3, - ACTIONS(3277), 1, - aux_sym_expression_token4, - ACTIONS(3279), 1, - aux_sym_elsif_expression_item_token1, - STATE(1069), 2, - sym_elsif_statement_item, - aux_sym_if_statement_repeat1, - [44758] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3281), 1, + ACTIONS(2189), 1, + anon_sym_COLON_EQ, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + STATE(1164), 1, + sym__assign_value, + STATE(1530), 1, + sym_aspect_specification, + ACTIONS(3291), 2, anon_sym_RPAREN, - STATE(460), 1, - sym_actual_parameter_part, - [44777] = 4, + anon_sym_SEMI, + [44723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2720), 1, + ACTIONS(3295), 1, + anon_sym_EQ_GT, + ACTIONS(3293), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [44737] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3190), 1, anon_sym_LPAREN, - STATE(1204), 1, - sym_formal_part, - ACTIONS(3283), 3, + ACTIONS(3297), 1, + anon_sym_SEMI, + ACTIONS(3299), 1, + aux_sym_package_specification_token2, + STATE(1426), 1, + sym_known_discriminant_part, + STATE(1425), 2, + sym__discriminant_part, + sym_unknown_discriminant_part, + [44757] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3301), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3303), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + [44779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + ACTIONS(1678), 5, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + [44793] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + STATE(483), 1, + sym_actual_parameter_part, + ACTIONS(3307), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [44813] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3285), 1, + anon_sym_COMMA, + STATE(1003), 1, + aux_sym_aspect_mark_list_repeat1, + ACTIONS(3309), 4, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [44829] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2892), 1, + anon_sym_SEMI, + ACTIONS(3311), 1, + anon_sym_COLON, + ACTIONS(1678), 4, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON_EQ, + [44845] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3313), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + [44864] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3315), 1, + aux_sym_expression_token1, + STATE(1014), 1, + aux_sym__interface_list_repeat1, + ACTIONS(2956), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [44792] = 6, + [44879] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, + ACTIONS(1726), 1, sym_tick, - ACTIONS(1730), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(2036), 1, + ACTIONS(2128), 1, anon_sym_DOT, - ACTIONS(3285), 1, + ACTIONS(3318), 1, anon_sym_SEMI, - STATE(460), 1, + STATE(483), 1, sym_actual_parameter_part, - [44811] = 2, + [44898] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2046), 5, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3320), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + [44917] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3322), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + [44936] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3324), 1, + aux_sym_package_specification_token3, + ACTIONS(3326), 1, + aux_sym_expression_token4, + ACTIONS(3328), 1, + aux_sym_elsif_expression_item_token1, + STATE(1051), 2, + sym_elsif_statement_item, + aux_sym_if_statement_repeat1, + [44953] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3330), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + [44972] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2189), 1, + anon_sym_COLON_EQ, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3332), 1, + anon_sym_SEMI, + STATE(1355), 1, + sym__assign_value, + STATE(1628), 1, + sym_aspect_specification, + [44991] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3334), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + [45010] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3255), 1, + anon_sym_LPAREN, + ACTIONS(3336), 1, + aux_sym_package_specification_token2, + STATE(1348), 1, + sym_known_discriminant_part, + STATE(1808), 1, + sym_aspect_specification, + [45029] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2189), 1, + anon_sym_COLON_EQ, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3338), 1, + anon_sym_SEMI, + STATE(1300), 1, + sym__assign_value, + STATE(1591), 1, + sym_aspect_specification, + [45048] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3340), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + [45067] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1906), 1, + aux_sym_primary_null_token1, + ACTIONS(1912), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3342), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3344), 1, + aux_sym_with_clause_token1, + STATE(1522), 1, + sym_record_definition, + [45086] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3346), 1, + aux_sym_at_clause_token1, + STATE(483), 1, + sym_actual_parameter_part, + [45105] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3229), 1, + anon_sym_COMMA, + ACTIONS(3231), 1, + anon_sym_RBRACK, + STATE(1247), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3233), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [45122] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2138), 5, aux_sym_iterated_element_association_token1, aux_sym_subprogram_body_token1, aux_sym_declare_expression_token1, aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, - [44822] = 6, + [45133] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, + ACTIONS(1726), 1, sym_tick, - ACTIONS(1730), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(2036), 1, + ACTIONS(2128), 1, anon_sym_DOT, - ACTIONS(3287), 1, + ACTIONS(3348), 1, anon_sym_SEMI, - STATE(460), 1, + STATE(483), 1, sym_actual_parameter_part, - [44841] = 6, + [45152] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3289), 1, - anon_sym_LPAREN, - ACTIONS(3291), 1, - anon_sym_SEMI, - STATE(1345), 1, - sym_formal_part, - STATE(1813), 1, - sym_aspect_specification, - [44860] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, + ACTIONS(1726), 1, sym_tick, - ACTIONS(1730), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(2036), 1, + ACTIONS(2128), 1, anon_sym_DOT, - ACTIONS(3293), 1, - anon_sym_SEMI, - STATE(460), 1, + ACTIONS(3350), 1, + anon_sym_RPAREN, + STATE(483), 1, sym_actual_parameter_part, - [44879] = 6, + [45171] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, + ACTIONS(2189), 1, + anon_sym_COLON_EQ, + ACTIONS(2306), 1, aux_sym_with_clause_token2, - ACTIONS(3137), 1, - anon_sym_LPAREN, - ACTIONS(3295), 1, - aux_sym_package_specification_token2, - STATE(1195), 1, - sym_known_discriminant_part, - STATE(1840), 1, + ACTIONS(3352), 1, + anon_sym_SEMI, + STATE(1359), 1, + sym__assign_value, + STATE(1785), 1, sym_aspect_specification, - [44898] = 6, + [45190] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, + ACTIONS(2189), 1, + anon_sym_COLON_EQ, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3354), 1, + anon_sym_SEMI, + STATE(1397), 1, + sym__assign_value, + STATE(1783), 1, + sym_aspect_specification, + [45209] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1906), 1, aux_sym_primary_null_token1, - ACTIONS(1836), 1, + ACTIONS(1912), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3297), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3299), 1, - aux_sym_with_clause_token1, - STATE(1505), 1, + ACTIONS(3253), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3356), 1, + aux_sym_allocator_token1, + STATE(1496), 1, sym_record_definition, - [44917] = 6, + [45228] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3301), 1, - anon_sym_LPAREN, - ACTIONS(3303), 1, - anon_sym_SEMI, - STATE(1323), 1, - sym_formal_part, - STATE(1927), 1, - sym_aspect_specification, - [44936] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3305), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - [44955] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3307), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - [44974] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(2648), 1, - aux_sym_range_attribute_designator_token1, - STATE(460), 1, - sym_actual_parameter_part, - [44993] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2720), 1, - anon_sym_LPAREN, - ACTIONS(2793), 1, - aux_sym_result_profile_token1, - STATE(1509), 1, - sym_formal_part, - STATE(849), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [45010] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2820), 1, - aux_sym_expression_token1, - STATE(1034), 1, - aux_sym__interface_list_repeat1, - ACTIONS(3309), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45025] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3311), 1, - sym_tick, - ACTIONS(3313), 1, - aux_sym_iterated_element_association_token2, - STATE(460), 1, - sym_actual_parameter_part, - [45044] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3315), 1, - anon_sym_SEMI, - ACTIONS(1628), 4, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2189), 1, anon_sym_COLON_EQ, - [45057] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2100), 1, - anon_sym_COLON_EQ, - ACTIONS(2236), 1, + ACTIONS(2306), 1, aux_sym_with_clause_token2, - ACTIONS(3317), 1, + ACTIONS(3358), 1, anon_sym_SEMI, - STATE(1262), 1, + STATE(1327), 1, sym__assign_value, STATE(1716), 1, sym_aspect_specification, - [45076] = 6, + [45247] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, + ACTIONS(3360), 1, + anon_sym_RPAREN, + ACTIONS(3362), 1, + aux_sym_expression_token4, + ACTIONS(3364), 1, + aux_sym_elsif_expression_item_token1, + STATE(1097), 2, + sym_elsif_expression_item, + aux_sym_if_expression_repeat1, + [45264] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, sym_tick, - ACTIONS(1730), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(2036), 1, + ACTIONS(2128), 1, anon_sym_DOT, - ACTIONS(3319), 1, + ACTIONS(3366), 1, anon_sym_SEMI, - STATE(460), 1, + STATE(483), 1, sym_actual_parameter_part, - [45095] = 4, + [45283] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1974), 1, + ACTIONS(2050), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1976), 1, + ACTIONS(2052), 1, aux_sym_access_to_subprogram_definition_token3, - STATE(1188), 3, + STATE(1209), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - [45110] = 3, + [45298] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2812), 1, - anon_sym_SEMI, - ACTIONS(1586), 4, - sym_tick, - anon_sym_DOT, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3368), 1, anon_sym_LPAREN, - anon_sym_COLON_EQ, - [45123] = 6, + ACTIONS(3370), 1, + anon_sym_SEMI, + STATE(1331), 1, + sym_formal_part, + STATE(1773), 1, + sym_aspect_specification, + [45317] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, + ACTIONS(1726), 1, sym_tick, - ACTIONS(1730), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(2036), 1, + ACTIONS(2128), 1, anon_sym_DOT, - ACTIONS(3321), 1, - anon_sym_SEMI, - STATE(460), 1, + ACTIONS(2776), 1, + aux_sym_range_attribute_designator_token1, + STATE(483), 1, sym_actual_parameter_part, - [45142] = 6, + [45336] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - [45161] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2327), 1, + ACTIONS(2445), 1, aux_sym_iterator_filter_token1, - STATE(1277), 1, + STATE(1356), 1, sym_iterator_filter, - ACTIONS(3325), 3, + ACTIONS(3372), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [45176] = 4, + [45351] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 1, - aux_sym_expression_token1, - STATE(1034), 1, - aux_sym__interface_list_repeat1, - ACTIONS(2991), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45191] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2100), 1, - anon_sym_COLON_EQ, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3330), 1, - anon_sym_SEMI, - STATE(1355), 1, - sym__assign_value, - STATE(1819), 1, - sym_aspect_specification, - [45210] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2100), 1, - anon_sym_COLON_EQ, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3332), 1, - anon_sym_SEMI, - STATE(1349), 1, - sym__assign_value, - STATE(1820), 1, - sym_aspect_specification, - [45229] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(2720), 1, - anon_sym_LPAREN, - ACTIONS(3334), 1, - anon_sym_SEMI, - STATE(1271), 1, - sym_formal_part, - STATE(1643), 1, - sym_aspect_specification, - [45248] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(2720), 1, - anon_sym_LPAREN, - ACTIONS(3336), 1, - anon_sym_SEMI, - STATE(1285), 1, - sym_formal_part, - STATE(1629), 1, - sym_aspect_specification, - [45267] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, + ACTIONS(1726), 1, sym_tick, - ACTIONS(1730), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(2036), 1, + ACTIONS(2128), 1, anon_sym_DOT, - ACTIONS(3338), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - [45286] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2720), 1, - anon_sym_LPAREN, - ACTIONS(2793), 1, - aux_sym_result_profile_token1, - STATE(1509), 1, - sym_formal_part, - STATE(1286), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [45303] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2720), 1, - anon_sym_LPAREN, - STATE(1286), 1, - sym_formal_part, - ACTIONS(3340), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45318] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3209), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(3211), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(990), 1, - sym__subprogram_specification, - STATE(1143), 1, - sym_function_specification, - STATE(1145), 1, - sym_procedure_specification, - [45337] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3151), 1, - anon_sym_COMMA, - ACTIONS(3153), 1, - anon_sym_RBRACK, - STATE(1270), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3155), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [45354] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3342), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - [45373] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3344), 1, - aux_sym_at_clause_token1, - STATE(460), 1, - sym_actual_parameter_part, - [45392] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3346), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - [45411] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2100), 1, - anon_sym_COLON_EQ, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3348), 1, - anon_sym_SEMI, - STATE(1363), 1, - sym__assign_value, - STATE(1578), 1, - sym_aspect_specification, - [45430] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2100), 1, - anon_sym_COLON_EQ, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3350), 1, - anon_sym_SEMI, - STATE(1360), 1, - sym__assign_value, - STATE(1585), 1, - sym_aspect_specification, - [45449] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3352), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - [45468] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3354), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - [45487] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - [45506] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3358), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - [45525] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2100), 1, - anon_sym_COLON_EQ, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3360), 1, - anon_sym_SEMI, - STATE(1340), 1, - sym__assign_value, - STATE(1705), 1, - sym_aspect_specification, - [45544] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3362), 1, - aux_sym_object_renaming_declaration_token1, - STATE(460), 1, - sym_actual_parameter_part, - [45563] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3226), 1, - anon_sym_SEMI, - ACTIONS(3230), 1, - aux_sym_object_renaming_declaration_token1, - ACTIONS(3364), 1, - aux_sym_package_specification_token2, - STATE(1674), 1, - sym_aspect_specification, - [45582] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3366), 1, - anon_sym_COMMA, - STATE(460), 1, - sym_actual_parameter_part, - [45601] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3368), 1, - aux_sym_object_renaming_declaration_token1, - STATE(460), 1, - sym_actual_parameter_part, - [45620] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3209), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(3211), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1055), 1, - sym__subprogram_specification, - STATE(1143), 1, - sym_function_specification, - STATE(1145), 1, - sym_procedure_specification, - [45639] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1830), 1, - aux_sym_primary_null_token1, - ACTIONS(1836), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3189), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(3370), 1, - aux_sym_allocator_token1, - STATE(1424), 1, - sym_record_definition, - [45658] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2720), 1, - anon_sym_LPAREN, - ACTIONS(2793), 1, - aux_sym_result_profile_token1, - STATE(1509), 1, - sym_formal_part, - STATE(847), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [45675] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3279), 1, - aux_sym_elsif_expression_item_token1, - ACTIONS(3372), 1, - aux_sym_package_specification_token3, ACTIONS(3374), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + [45370] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2900), 1, + aux_sym_result_profile_token1, + STATE(1431), 1, + sym_formal_part, + STATE(880), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [45387] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3376), 1, + sym_identifier, + ACTIONS(3378), 1, + anon_sym_LT_GT, + STATE(1259), 1, + sym_discriminant_specification, + STATE(1857), 1, + sym_discriminant_specification_list, + STATE(1859), 1, + sym__defining_identifier_list, + [45406] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3380), 1, + anon_sym_SEMI, + ACTIONS(3382), 1, + aux_sym_package_specification_token2, + ACTIONS(3384), 1, + aux_sym_object_renaming_declaration_token1, + STATE(1654), 1, + sym_aspect_specification, + [45425] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2900), 1, + aux_sym_result_profile_token1, + STATE(1431), 1, + sym_formal_part, + STATE(879), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [45442] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3386), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + [45461] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2900), 1, + aux_sym_result_profile_token1, + STATE(1431), 1, + sym_formal_part, + STATE(882), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [45478] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2189), 1, + anon_sym_COLON_EQ, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3388), 1, + anon_sym_SEMI, + STATE(1225), 1, + sym__assign_value, + STATE(1596), 1, + sym_aspect_specification, + [45497] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3390), 1, + aux_sym_object_renaming_declaration_token1, + STATE(483), 1, + sym_actual_parameter_part, + [45516] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2445), 1, + aux_sym_iterator_filter_token1, + STATE(1265), 1, + sym_iterator_filter, + ACTIONS(3392), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [45531] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3396), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3394), 2, + aux_sym_package_specification_token3, aux_sym_expression_token4, - STATE(1009), 2, + STATE(1051), 2, sym_elsif_statement_item, aux_sym_if_statement_repeat1, - [45692] = 2, + [45546] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3376), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, + ACTIONS(2050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2052), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1159), 1, + sym_procedure_specification, + STATE(1186), 1, + sym__subprogram_specification, + STATE(1192), 1, + sym_function_specification, + [45565] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2924), 1, + aux_sym_expression_token1, + STATE(1014), 1, + aux_sym__interface_list_repeat1, + ACTIONS(3399), 3, anon_sym_SEMI, - aux_sym_package_specification_token2, - [45703] = 2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45580] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3378), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [45714] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, + ACTIONS(1726), 1, sym_tick, - ACTIONS(1730), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(2036), 1, + ACTIONS(2128), 1, anon_sym_DOT, + ACTIONS(3401), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + [45599] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2189), 1, + anon_sym_COLON_EQ, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3403), 1, + anon_sym_SEMI, + STATE(1219), 1, + sym__assign_value, + STATE(1595), 1, + sym_aspect_specification, + [45618] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2189), 1, + anon_sym_COLON_EQ, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3405), 1, + anon_sym_SEMI, + STATE(1343), 1, + sym__assign_value, + STATE(1805), 1, + sym_aspect_specification, + [45637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3407), 1, + aux_sym_package_specification_token2, + ACTIONS(1678), 4, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + aux_sym_with_clause_token2, + [45650] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, ACTIONS(3380), 1, - aux_sym_object_renaming_declaration_token1, - STATE(460), 1, - sym_actual_parameter_part, - [45733] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3382), 1, anon_sym_SEMI, - STATE(460), 1, - sym_actual_parameter_part, - [45752] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3244), 1, - aux_sym_elsif_expression_item_token1, ACTIONS(3384), 1, - anon_sym_RPAREN, - ACTIONS(3386), 1, - aux_sym_expression_token4, - STATE(988), 2, - sym_elsif_expression_item, - aux_sym_if_expression_repeat1, - [45769] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - ACTIONS(3388), 1, aux_sym_object_renaming_declaration_token1, - STATE(460), 1, - sym_actual_parameter_part, - [45788] = 4, + ACTIONS(3410), 1, + aux_sym_package_specification_token2, + STATE(1444), 1, + sym_aspect_specification, + [45669] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(77), 1, aux_sym_delay_until_statement_token1, - STATE(1839), 1, + STATE(1804), 1, sym_delay_alternative, - STATE(34), 3, + STATE(44), 3, sym__delay_statement, sym_delay_until_statement, sym_delay_relative_statement, - [45803] = 4, + [45684] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - aux_sym_elsif_expression_item_token1, - ACTIONS(3390), 2, - aux_sym_package_specification_token3, - aux_sym_expression_token4, - STATE(1069), 2, - sym_elsif_statement_item, - aux_sym_if_statement_repeat1, - [45818] = 2, + ACTIONS(2189), 1, + anon_sym_COLON_EQ, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3412), 1, + anon_sym_SEMI, + STATE(1278), 1, + sym__assign_value, + STATE(2005), 1, + sym_aspect_specification, + [45703] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3119), 5, + ACTIONS(2189), 1, + anon_sym_COLON_EQ, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3414), 1, + anon_sym_SEMI, + STATE(1370), 1, + sym__assign_value, + STATE(2018), 1, + sym_aspect_specification, + [45722] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3416), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + [45741] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3418), 1, + aux_sym_object_renaming_declaration_token1, + STATE(483), 1, + sym_actual_parameter_part, + [45760] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3420), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + [45779] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3422), 1, + aux_sym_object_renaming_declaration_token1, + STATE(483), 1, + sym_actual_parameter_part, + [45798] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3261), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(3263), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1044), 1, + sym__subprogram_specification, + STATE(1159), 1, + sym_procedure_specification, + STATE(1192), 1, + sym_function_specification, + [45817] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3424), 1, + anon_sym_SEMI, + ACTIONS(3426), 1, + aux_sym_package_specification_token2, + ACTIONS(3428), 1, + aux_sym_object_renaming_declaration_token1, + STATE(1734), 1, + sym_aspect_specification, + [45836] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2900), 1, + aux_sym_result_profile_token1, + STATE(1431), 1, + sym_formal_part, + STATE(1273), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [45853] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3430), 1, + anon_sym_COMMA, + STATE(483), 1, + sym_actual_parameter_part, + [45872] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3432), 5, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [45829] = 4, + [45883] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2327), 1, - aux_sym_iterator_filter_token1, - STATE(1220), 1, - sym_iterator_filter, - ACTIONS(3395), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [45844] = 6, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3434), 1, + anon_sym_RPAREN, + STATE(483), 1, + sym_actual_parameter_part, + [45902] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3261), 1, - anon_sym_SEMI, - ACTIONS(3265), 1, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3436), 1, aux_sym_object_renaming_declaration_token1, - ACTIONS(3397), 1, + STATE(483), 1, + sym_actual_parameter_part, + [45921] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2900), 1, + aux_sym_result_profile_token1, + STATE(1431), 1, + sym_formal_part, + STATE(1297), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [45938] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 1, + anon_sym_LPAREN, + STATE(1297), 1, + sym_formal_part, + ACTIONS(3438), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45953] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3424), 1, + anon_sym_SEMI, + ACTIONS(3428), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(3440), 1, aux_sym_package_specification_token2, - STATE(1799), 1, + STATE(1417), 1, sym_aspect_specification, - [45863] = 4, + [45972] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3399), 1, - aux_sym_gnatprep_declarative_if_statement_token2, - STATE(1073), 1, - aux_sym_gnatprep_if_statement_repeat1, - ACTIONS(3402), 2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - [45877] = 5, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + aux_sym_object_renaming_declaration_token1, + STATE(483), 1, + sym_actual_parameter_part, + [45991] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3404), 1, + ACTIONS(2816), 1, + anon_sym_LPAREN, + STATE(1273), 1, + sym_formal_part, + ACTIONS(3444), 3, anon_sym_SEMI, - ACTIONS(3406), 1, aux_sym_with_clause_token2, - ACTIONS(3409), 1, - aux_sym_expression_token1, - STATE(1469), 1, - sym_record_extension_part, - [45893] = 5, + aux_sym_expression_token3, + [46006] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3446), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + [46025] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(494), 1, + aux_sym_component_choice_list_token1, + ACTIONS(3448), 1, sym_identifier, - STATE(1328), 1, - sym_discriminant_specification, - STATE(1882), 1, - sym_discriminant_specification_list, - STATE(1883), 1, - sym__defining_identifier_list, - [45909] = 5, + ACTIONS(3450), 1, + sym_string_literal, + STATE(1531), 1, + sym__named_record_component_association, + STATE(1942), 1, + sym_component_choice_list, + [46044] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, - aux_sym_package_specification_token3, - ACTIONS(3413), 1, - aux_sym_expression_token3, - ACTIONS(3415), 1, - aux_sym_expression_token4, - STATE(1082), 1, - aux_sym_selective_accept_repeat1, - [45925] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3419), 1, - aux_sym_allocator_token1, - ACTIONS(3421), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(3417), 2, - aux_sym_with_clause_token1, - aux_sym_private_extension_declaration_token1, - [45939] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3423), 1, - aux_sym_gnatprep_declarative_if_statement_token2, - STATE(1078), 1, - aux_sym_gnatprep_declarative_if_statement_repeat1, - ACTIONS(3426), 2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - [45953] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - STATE(1495), 1, - sym_aspect_specification, - ACTIONS(3428), 2, - anon_sym_RPAREN, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3452), 1, anon_sym_SEMI, - [45967] = 3, + STATE(483), 1, + sym_actual_parameter_part, + [46063] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3432), 1, - aux_sym_expression_token2, - ACTIONS(3430), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [45979] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - STATE(1503), 1, - sym_aspect_specification, - ACTIONS(3434), 2, - anon_sym_RPAREN, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3454), 1, anon_sym_SEMI, - [45993] = 4, + STATE(483), 1, + sym_actual_parameter_part, + [46082] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, - aux_sym_expression_token3, - STATE(1082), 1, - aux_sym_selective_accept_repeat1, - ACTIONS(3436), 2, - aux_sym_package_specification_token3, - aux_sym_expression_token4, - [46007] = 5, + ACTIONS(3261), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(3263), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1058), 1, + sym__subprogram_specification, + STATE(1159), 1, + sym_procedure_specification, + STATE(1192), 1, + sym_function_specification, + [46101] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3017), 1, - aux_sym_iterator_filter_token1, - STATE(1521), 1, - sym_aspect_specification, - STATE(1715), 1, - sym_entry_barrier, - [46023] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3413), 1, - aux_sym_expression_token3, - ACTIONS(3441), 1, - aux_sym_package_specification_token3, - ACTIONS(3443), 1, - aux_sym_expression_token4, - STATE(1082), 1, - aux_sym_selective_accept_repeat1, - [46039] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1830), 1, - aux_sym_primary_null_token1, - ACTIONS(1836), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3445), 1, - aux_sym_with_clause_token1, - STATE(1424), 1, - sym_record_definition, - [46055] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2100), 1, - anon_sym_COLON_EQ, - STATE(1489), 1, - sym__assign_value, - ACTIONS(3447), 2, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3456), 1, anon_sym_SEMI, - aux_sym_accept_statement_token2, - [46069] = 5, + STATE(483), 1, + sym_actual_parameter_part, + [46120] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 1, - aux_sym_gnatprep_declarative_if_statement_token2, - ACTIONS(3451), 1, - aux_sym_gnatprep_declarative_if_statement_token3, - ACTIONS(3453), 1, - aux_sym_gnatprep_declarative_if_statement_token4, - STATE(1172), 1, - aux_sym_gnatprep_if_statement_repeat1, - [46085] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3413), 1, - aux_sym_expression_token3, - ACTIONS(3441), 1, + ACTIONS(3328), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3458), 1, aux_sym_package_specification_token3, - ACTIONS(3443), 1, + ACTIONS(3460), 1, aux_sym_expression_token4, - STATE(1076), 1, - aux_sym_selective_accept_repeat1, - [46101] = 5, + STATE(1018), 2, + sym_elsif_statement_item, + aux_sym_if_statement_repeat1, + [46137] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, - aux_sym_primary_null_token1, - ACTIONS(1836), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3455), 1, - aux_sym_compilation_unit_token1, - STATE(1451), 1, - sym_record_definition, - [46117] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3459), 1, - aux_sym_expression_token1, - ACTIONS(3457), 3, - anon_sym_SEMI, + ACTIONS(2306), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46129] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3461), 1, - aux_sym_iterator_filter_token1, + ACTIONS(3462), 1, + anon_sym_LPAREN, ACTIONS(3464), 1, - aux_sym_package_specification_token3, - STATE(1091), 2, - sym_variant, - aux_sym_variant_list_repeat1, - [46143] = 5, + anon_sym_SEMI, + STATE(1378), 1, + sym_formal_part, + STATE(1934), 1, + sym_aspect_specification, + [46156] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, ACTIONS(3466), 1, anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + [46175] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, ACTIONS(3468), 1, - aux_sym_with_clause_token2, - ACTIONS(3471), 1, - aux_sym_expression_token1, - STATE(1447), 1, - sym_record_extension_part, - [46159] = 5, + sym_tick, + ACTIONS(3470), 1, + aux_sym_iterated_element_association_token2, + STATE(483), 1, + sym_actual_parameter_part, + [46194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3473), 1, + ACTIONS(2892), 1, anon_sym_SEMI, - ACTIONS(3475), 1, - aux_sym_with_clause_token2, - ACTIONS(3478), 1, - aux_sym_expression_token1, - STATE(1494), 1, - sym_record_extension_part, - [46175] = 5, + ACTIONS(1678), 4, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON_EQ, + [46207] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3472), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + [46226] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3474), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + [46245] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3476), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [46256] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + ACTIONS(3478), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_actual_parameter_part, + [46275] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, aux_sym_with_clause_token2, + ACTIONS(2816), 1, + anon_sym_LPAREN, ACTIONS(3480), 1, anon_sym_SEMI, - ACTIONS(3482), 1, - aux_sym_package_specification_token2, - STATE(1846), 1, + STATE(1303), 1, + sym_formal_part, + STATE(1858), 1, sym_aspect_specification, - [46191] = 2, + [46294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3484), 4, + ACTIONS(3482), 1, anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, + ACTIONS(1708), 4, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COLON_EQ, - [46201] = 2, + [46307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3486), 4, + ACTIONS(3215), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [46211] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3490), 1, aux_sym_package_specification_token2, - ACTIONS(3488), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [46223] = 4, + [46318] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 1, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(3484), 1, + anon_sym_SEMI, + STATE(1385), 1, + sym_formal_part, + STATE(1674), 1, + sym_aspect_specification, + [46337] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3364), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3486), 1, + anon_sym_RPAREN, + ACTIONS(3488), 1, + aux_sym_expression_token4, + STATE(1098), 2, + sym_elsif_expression_item, + aux_sym_if_expression_repeat1, + [46354] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3492), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3490), 2, + anon_sym_RPAREN, + aux_sym_expression_token4, + STATE(1098), 2, + sym_elsif_expression_item, + aux_sym_if_expression_repeat1, + [46369] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3495), 5, + anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_iterator_filter_token1, - STATE(1680), 1, - sym_variant_list, - STATE(1111), 2, - sym_variant, - aux_sym_variant_list_repeat1, - [46237] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3473), 1, anon_sym_SEMI, - ACTIONS(3495), 1, - aux_sym_with_clause_token2, - ACTIONS(3498), 1, - aux_sym_expression_token1, - STATE(1494), 1, - sym_record_extension_part, - [46253] = 2, + aux_sym_package_specification_token2, + [46380] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3500), 4, + ACTIONS(3497), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [46263] = 2, + aux_sym_package_specification_token2, + [46391] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3502), 4, + ACTIONS(3499), 1, + anon_sym_COMMA, + STATE(1101), 1, + aux_sym__name_list_repeat1, + ACTIONS(3144), 2, + anon_sym_RPAREN, anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [46273] = 5, + [46405] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3424), 1, + anon_sym_SEMI, + ACTIONS(3502), 1, + aux_sym_package_specification_token2, + STATE(1417), 1, + sym_aspect_specification, + [46421] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, - aux_sym_primary_null_token1, - ACTIONS(1836), 1, - aux_sym_record_component_association_list_token1, ACTIONS(3504), 1, - aux_sym_compilation_unit_token1, - STATE(1451), 1, - sym_record_definition, - [46289] = 4, + anon_sym_COMMA, + STATE(1152), 1, + aux_sym__array_component_association_list_repeat1, + ACTIONS(3506), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [46435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3506), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3509), 1, - aux_sym_package_specification_token3, - STATE(1103), 2, - sym_exception_handler, - aux_sym_handled_sequence_of_statements_repeat1, - [46303] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3513), 1, - aux_sym_range_attribute_designator_token1, - STATE(1476), 1, - sym_real_range_specification, - ACTIONS(3511), 2, + ACTIONS(3508), 4, anon_sym_SEMI, + aux_sym_package_specification_token2, aux_sym_with_clause_token2, - [46317] = 5, + aux_sym_expression_token3, + [46445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3133), 1, - aux_sym_private_extension_declaration_token1, - ACTIONS(3187), 1, - aux_sym_allocator_token1, - ACTIONS(3515), 1, - aux_sym_with_clause_token1, + ACTIONS(2189), 1, + anon_sym_COLON_EQ, + STATE(1549), 1, + sym__assign_value, + ACTIONS(3510), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [46459] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3512), 1, + anon_sym_SEMI, + ACTIONS(3514), 1, + aux_sym_with_clause_token2, ACTIONS(3517), 1, - aux_sym_private_type_declaration_token2, - [46333] = 3, + aux_sym_expression_token1, + STATE(1497), 1, + sym_record_extension_part, + [46475] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3519), 1, - aux_sym_package_specification_token2, - ACTIONS(3488), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [46345] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3226), 1, - anon_sym_SEMI, - ACTIONS(3364), 1, - aux_sym_package_specification_token2, - STATE(1674), 1, - sym_aspect_specification, - [46361] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3261), 1, - anon_sym_SEMI, - ACTIONS(3522), 1, - aux_sym_package_specification_token2, - STATE(1456), 1, - sym_aspect_specification, - [46377] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1358), 1, - sym__enumeration_literal_specification, - STATE(1796), 1, - sym__enumeration_literal_list, - ACTIONS(3524), 2, - sym_identifier, - sym_character_literal, - [46391] = 5, + anon_sym_COMMA, + ACTIONS(3521), 1, + anon_sym_RPAREN, + STATE(1268), 1, + aux_sym_record_component_association_list_repeat1, + STATE(1269), 1, + aux_sym_positional_array_aggregate_repeat1, + [46491] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3526), 1, - aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_allocator_token1, ACTIONS(3528), 1, - aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_private_type_declaration_token2, + ACTIONS(3524), 2, + aux_sym_with_clause_token1, + aux_sym_private_extension_declaration_token1, + [46505] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, ACTIONS(3530), 1, - aux_sym_gnatprep_declarative_if_statement_token4, - STATE(1160), 1, - aux_sym_gnatprep_declarative_if_statement_repeat1, - [46407] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3493), 1, - aux_sym_iterator_filter_token1, + anon_sym_SEMI, ACTIONS(3532), 1, - aux_sym_package_specification_token3, - STATE(1091), 2, - sym_variant, - aux_sym_variant_list_repeat1, - [46421] = 2, + aux_sym_package_specification_token2, + STATE(1562), 1, + sym_aspect_specification, + [46521] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3534), 4, + ACTIONS(2044), 1, + anon_sym_COMMA, + ACTIONS(2894), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(3534), 1, + anon_sym_COLON, + STATE(1301), 1, + aux_sym__defining_identifier_list_repeat1, + [46537] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3537), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3539), 1, + anon_sym_SEMI, + ACTIONS(3541), 1, + aux_sym_with_clause_token1, + ACTIONS(3543), 1, + aux_sym_expression_token3, + [46553] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3545), 1, + anon_sym_SEMI, + ACTIONS(3547), 1, + aux_sym_expression_token3, + STATE(1892), 1, + sym_aspect_specification, + [46569] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3549), 1, + aux_sym_package_specification_token3, + ACTIONS(3551), 1, + aux_sym_expression_token3, + ACTIONS(3553), 1, + aux_sym_expression_token4, + STATE(1137), 1, + aux_sym_selective_accept_repeat1, + [46585] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3549), 1, + aux_sym_package_specification_token3, + ACTIONS(3551), 1, + aux_sym_expression_token3, + ACTIONS(3553), 1, + aux_sym_expression_token4, + STATE(1144), 1, + aux_sym_selective_accept_repeat1, + [46601] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2189), 1, + anon_sym_COLON_EQ, + STATE(1548), 1, + sym__assign_value, + ACTIONS(3555), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [46615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3559), 1, + aux_sym_expression_token2, + ACTIONS(3557), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [46627] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3561), 4, anon_sym_SEMI, aux_sym_package_specification_token2, aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [46637] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3565), 1, + aux_sym_range_attribute_designator_token1, + STATE(1532), 1, + sym_real_range_specification, + ACTIONS(3563), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [46651] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3569), 1, + aux_sym_expression_token1, + ACTIONS(3567), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, aux_sym_expression_token3, - [46431] = 5, + [46663] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, - aux_sym_primary_null_token1, - ACTIONS(1836), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3297), 1, - aux_sym_compilation_unit_token1, - STATE(1505), 1, - sym_record_definition, - [46447] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3536), 1, - anon_sym_COMMA, - ACTIONS(3538), 1, - anon_sym_RPAREN, - STATE(1250), 1, - aux_sym_record_component_association_list_repeat1, - STATE(1251), 1, - aux_sym_positional_array_aggregate_repeat1, - [46463] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1968), 1, - anon_sym_COMMA, - ACTIONS(2814), 1, - aux_sym_object_renaming_declaration_token1, - ACTIONS(3541), 1, - anon_sym_COLON, - STATE(1308), 1, - aux_sym__defining_identifier_list_repeat1, - [46479] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3544), 1, - anon_sym_COMMA, - STATE(1116), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3547), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [46493] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1830), 1, - aux_sym_primary_null_token1, - ACTIONS(1836), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3549), 1, - aux_sym_compilation_unit_token1, - STATE(1451), 1, - sym_record_definition, - [46509] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3551), 1, - anon_sym_SEMI, - ACTIONS(3553), 1, - aux_sym_package_specification_token2, - STATE(1423), 1, - sym_aspect_specification, - [46525] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - anon_sym_COMMA, - STATE(1119), 1, - aux_sym__array_component_association_list_repeat1, - ACTIONS(3558), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [46539] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3560), 1, - anon_sym_SEMI, - ACTIONS(3562), 1, - aux_sym_package_specification_token2, - STATE(1444), 1, - sym_aspect_specification, - [46555] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3564), 1, - anon_sym_COMMA, - STATE(1121), 1, - aux_sym__name_list_repeat1, - ACTIONS(3071), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [46569] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3567), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(1558), 3, + ACTIONS(1726), 1, sym_tick, - anon_sym_DOT, + ACTIONS(1810), 1, anon_sym_LPAREN, - [46581] = 5, + ACTIONS(2128), 1, + anon_sym_DOT, + STATE(1094), 1, + sym_actual_parameter_part, + [46679] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, + ACTIONS(1906), 1, aux_sym_primary_null_token1, - ACTIONS(1836), 1, + ACTIONS(1912), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3570), 1, + ACTIONS(3571), 1, aux_sym_compilation_unit_token1, - STATE(1451), 1, + STATE(1473), 1, sym_record_definition, - [46597] = 4, + [46695] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3572), 1, - aux_sym_iterator_filter_token1, + ACTIONS(3573), 1, + anon_sym_SEMI, ACTIONS(3575), 1, - aux_sym_package_specification_token3, - STATE(1124), 2, - sym_case_statement_alternative, - aux_sym_case_statement_repeat1, - [46611] = 4, + aux_sym_with_clause_token2, + ACTIONS(3578), 1, + aux_sym_expression_token1, + STATE(1529), 1, + sym_record_extension_part, + [46711] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3577), 1, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3580), 1, + anon_sym_SEMI, + ACTIONS(3582), 1, + aux_sym_expression_token3, + STATE(1609), 1, + sym_aspect_specification, + [46727] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3376), 1, + sym_identifier, + STATE(1259), 1, + sym_discriminant_specification, + STATE(1857), 1, + sym_discriminant_specification_list, + STATE(1859), 1, + sym__defining_identifier_list, + [46743] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3424), 1, + anon_sym_SEMI, + ACTIONS(3426), 1, + aux_sym_package_specification_token2, + STATE(1734), 1, + sym_aspect_specification, + [46759] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3537), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3541), 1, + aux_sym_with_clause_token1, + ACTIONS(3584), 1, + anon_sym_SEMI, + ACTIONS(3586), 1, + aux_sym_expression_token3, + [46775] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2189), 1, + anon_sym_COLON_EQ, + STATE(1428), 1, + sym__assign_value, + ACTIONS(3588), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [46789] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2044), 1, + anon_sym_COMMA, + ACTIONS(2894), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(3590), 1, + anon_sym_COLON, + STATE(1301), 1, + aux_sym__defining_identifier_list_repeat1, + [46805] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3593), 4, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [46815] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3595), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [46825] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + STATE(1406), 1, + sym_aspect_specification, + ACTIONS(3597), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [46839] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3599), 1, aux_sym_iterator_filter_token1, - ACTIONS(3579), 1, + ACTIONS(3601), 1, aux_sym_package_specification_token3, - STATE(1103), 2, + STATE(1197), 2, sym_exception_handler, aux_sym_handled_sequence_of_statements_repeat1, - [46625] = 2, + [46853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3581), 4, + ACTIONS(3603), 4, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, anon_sym_COLON_EQ, - [46635] = 4, + [46863] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2100), 1, - anon_sym_COLON_EQ, - STATE(1401), 1, - sym__assign_value, - ACTIONS(3583), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [46649] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3585), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [46659] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - STATE(1026), 1, - sym_actual_parameter_part, - [46675] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1968), 1, - anon_sym_COMMA, - ACTIONS(2814), 1, - aux_sym_object_renaming_declaration_token1, - ACTIONS(3587), 1, - anon_sym_COLON, - STATE(1308), 1, - aux_sym__defining_identifier_list_repeat1, - [46691] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3404), 1, - anon_sym_SEMI, - ACTIONS(3590), 1, - aux_sym_with_clause_token2, - ACTIONS(3593), 1, - aux_sym_expression_token1, - STATE(1469), 1, - sym_record_extension_part, - [46707] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3413), 1, - aux_sym_expression_token3, - ACTIONS(3595), 1, - aux_sym_package_specification_token3, - ACTIONS(3597), 1, - aux_sym_expression_token4, - STATE(1084), 1, - aux_sym_selective_accept_repeat1, - [46723] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1830), 1, - aux_sym_primary_null_token1, - ACTIONS(1836), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3599), 1, - aux_sym_compilation_unit_token1, - STATE(1451), 1, - sym_record_definition, - [46739] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3601), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_accept_statement_token2, - [46749] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3603), 1, - anon_sym_LPAREN, ACTIONS(3605), 1, - anon_sym_SEMI, + aux_sym_iterator_filter_token1, ACTIONS(3607), 1, - aux_sym_accept_statement_token2, - STATE(1435), 1, - sym_formal_part, - [46765] = 3, + aux_sym_package_specification_token3, + STATE(1182), 2, + sym_variant, + aux_sym_variant_list_repeat1, + [46877] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3611), 1, - aux_sym_expression_token1, - ACTIONS(3609), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46777] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2100), 1, + ACTIONS(2189), 1, anon_sym_COLON_EQ, - STATE(1453), 1, + STATE(1427), 1, sym__assign_value, - ACTIONS(3613), 2, - anon_sym_RPAREN, + ACTIONS(3588), 2, anon_sym_SEMI, - [46791] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3615), 1, - anon_sym_COMMA, - STATE(1519), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3155), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [46805] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3617), 1, - anon_sym_SEMI, - ACTIONS(3619), 1, - aux_sym_expression_token3, - STATE(1583), 1, - sym_aspect_specification, - [46821] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3621), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3623), 1, - anon_sym_SEMI, - ACTIONS(3625), 1, - aux_sym_with_clause_token1, - ACTIONS(3627), 1, - aux_sym_expression_token3, - [46837] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3629), 1, - aux_sym_attribute_designator_token3, - ACTIONS(3631), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46849] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3513), 1, - aux_sym_range_attribute_designator_token1, - STATE(1465), 1, - sym_real_range_specification, - ACTIONS(3633), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [46863] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3635), 1, - aux_sym_package_specification_token2, - ACTIONS(3488), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [46875] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3621), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3625), 1, - aux_sym_with_clause_token1, - ACTIONS(3638), 1, - anon_sym_SEMI, - ACTIONS(3640), 1, - aux_sym_expression_token3, + aux_sym_accept_statement_token2, [46891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, - aux_sym_package_specification_token2, - ACTIONS(3488), 3, + ACTIONS(3609), 1, + aux_sym_attribute_designator_token3, + ACTIONS(3611), 3, anon_sym_SEMI, aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, + aux_sym_expression_token3, [46903] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3645), 1, - sym_identifier, - STATE(956), 1, - sym_aspect_association, - STATE(977), 1, - sym__aspect_mark, - STATE(1149), 1, - sym_aspect_mark_list, - [46919] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - STATE(1420), 1, - sym_aspect_specification, - ACTIONS(3647), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [46933] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3649), 1, - anon_sym_SEMI, - ACTIONS(3651), 1, + ACTIONS(3551), 1, aux_sym_expression_token3, - STATE(1623), 1, - sym_aspect_specification, - [46949] = 2, + ACTIONS(3613), 1, + aux_sym_package_specification_token3, + ACTIONS(3615), 1, + aux_sym_expression_token4, + STATE(1144), 1, + aux_sym_selective_accept_repeat1, + [46919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 4, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, + ACTIONS(3619), 1, + aux_sym_expression_token1, + ACTIONS(3617), 3, anon_sym_SEMI, - aux_sym_package_specification_token2, - [46959] = 4, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46931] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3655), 1, - anon_sym_COMMA, - ACTIONS(3657), 1, - anon_sym_RPAREN, - ACTIONS(3155), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [46973] = 4, + ACTIONS(1906), 1, + aux_sym_primary_null_token1, + ACTIONS(1912), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3621), 1, + aux_sym_compilation_unit_token1, + STATE(1473), 1, + sym_record_definition, + [46947] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3659), 1, + ACTIONS(3623), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [46957] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3625), 1, anon_sym_COMMA, - STATE(1119), 1, - aux_sym__array_component_association_list_repeat1, - ACTIONS(3661), 2, + STATE(1141), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3628), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [46987] = 4, + [46971] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3665), 1, + ACTIONS(1906), 1, + aux_sym_primary_null_token1, + ACTIONS(1912), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3630), 1, + aux_sym_compilation_unit_token1, + STATE(1473), 1, + sym_record_definition, + [46987] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1906), 1, + aux_sym_primary_null_token1, + ACTIONS(1912), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3342), 1, + aux_sym_compilation_unit_token1, + STATE(1522), 1, + sym_record_definition, + [47003] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3634), 1, + aux_sym_expression_token3, + STATE(1144), 1, + aux_sym_selective_accept_repeat1, + ACTIONS(3632), 2, + aux_sym_package_specification_token3, + aux_sym_expression_token4, + [47017] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3637), 1, + anon_sym_COMMA, + STATE(1467), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3233), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [47031] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3565), 1, + aux_sym_range_attribute_designator_token1, + STATE(1508), 1, + sym_real_range_specification, + ACTIONS(3639), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47045] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3245), 1, + aux_sym_private_extension_declaration_token1, + ACTIONS(3251), 1, aux_sym_allocator_token1, - ACTIONS(3667), 1, + ACTIONS(3641), 1, + aux_sym_with_clause_token1, + ACTIONS(3643), 1, aux_sym_private_type_declaration_token2, - ACTIONS(3663), 2, + [47061] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3551), 1, + aux_sym_expression_token3, + ACTIONS(3645), 1, + aux_sym_package_specification_token3, + ACTIONS(3647), 1, + aux_sym_expression_token4, + STATE(1114), 1, + aux_sym_selective_accept_repeat1, + [47077] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3649), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_accept_statement_token2, + [47087] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2189), 1, + anon_sym_COLON_EQ, + STATE(1459), 1, + sym__assign_value, + ACTIONS(3651), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47101] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1906), 1, + aux_sym_primary_null_token1, + ACTIONS(1912), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3653), 1, + aux_sym_compilation_unit_token1, + STATE(1473), 1, + sym_record_definition, + [47117] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3504), 1, + anon_sym_COMMA, + STATE(1195), 1, + aux_sym__array_component_association_list_repeat1, + ACTIONS(3655), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [47131] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + sym_tick, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(2128), 1, + anon_sym_DOT, + STATE(483), 1, + sym_actual_parameter_part, + [47147] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(3657), 1, + anon_sym_SEMI, + ACTIONS(3659), 1, + aux_sym_accept_statement_token2, + STATE(1418), 1, + sym_formal_part, + [47163] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3605), 1, + aux_sym_iterator_filter_token1, + STATE(1711), 1, + sym_variant_list, + STATE(1134), 2, + sym_variant, + aux_sym_variant_list_repeat1, + [47177] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3663), 1, + aux_sym_allocator_token1, + ACTIONS(3665), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(3661), 2, aux_sym_with_clause_token1, aux_sym_private_extension_declaration_token1, - [47001] = 3, + [47191] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3103), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(1586), 3, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - [47013] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3466), 1, + ACTIONS(3667), 4, anon_sym_SEMI, - ACTIONS(3669), 1, aux_sym_with_clause_token2, - ACTIONS(3672), 1, - aux_sym_expression_token1, - STATE(1447), 1, - sym_record_extension_part, - [47029] = 4, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [47201] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3669), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [47211] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3673), 1, + aux_sym_package_specification_token2, + ACTIONS(3671), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [47223] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3674), 1, - aux_sym_iterator_filter_token1, ACTIONS(3676), 1, - aux_sym_package_specification_token3, - STATE(1124), 2, - sym_case_statement_alternative, - aux_sym_case_statement_repeat1, - [47043] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3659), 1, anon_sym_COMMA, - STATE(1151), 1, - aux_sym__array_component_association_list_repeat1, - ACTIONS(3678), 2, + ACTIONS(3678), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [47057] = 5, + ACTIONS(3233), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [47237] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, + ACTIONS(1906), 1, aux_sym_primary_null_token1, - ACTIONS(1836), 1, + ACTIONS(1912), 1, aux_sym_record_component_association_list_token1, ACTIONS(3680), 1, - aux_sym_compilation_unit_token1, - STATE(1451), 1, + aux_sym_with_clause_token1, + STATE(1496), 1, sym_record_definition, - [47073] = 5, + [47253] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, - sym_tick, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(2036), 1, - anon_sym_DOT, - STATE(460), 1, - sym_actual_parameter_part, - [47089] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2100), 1, - anon_sym_COLON_EQ, - STATE(1404), 1, - sym__assign_value, - ACTIONS(3682), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [47103] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3526), 1, + ACTIONS(452), 1, aux_sym_gnatprep_declarative_if_statement_token2, - ACTIONS(3684), 1, + ACTIONS(3682), 1, aux_sym_gnatprep_declarative_if_statement_token3, - ACTIONS(3686), 1, + ACTIONS(3684), 1, aux_sym_gnatprep_declarative_if_statement_token4, - STATE(1078), 1, - aux_sym_gnatprep_declarative_if_statement_repeat1, - [47119] = 5, + STATE(1172), 1, + aux_sym_gnatprep_if_statement_repeat1, + [47269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, - sym_identifier, - STATE(1256), 1, - sym_parameter_specification, - STATE(1868), 1, - sym__parameter_specification_list, - STATE(1870), 1, - sym__defining_identifier_list, - [47135] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, + ACTIONS(3686), 1, + aux_sym_package_specification_token2, + ACTIONS(3671), 3, + anon_sym_SEMI, aux_sym_with_clause_token2, - STATE(1409), 1, + aux_sym_object_renaming_declaration_token1, + [47281] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + STATE(1482), 1, sym_aspect_specification, - ACTIONS(3688), 2, + ACTIONS(3689), 2, anon_sym_RPAREN, anon_sym_SEMI, - [47149] = 4, + [47295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2100), 1, - anon_sym_COLON_EQ, - STATE(1403), 1, - sym__assign_value, - ACTIONS(3682), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [47163] = 5, + ACTIONS(3691), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3694), 1, + aux_sym_package_specification_token3, + STATE(1165), 2, + sym_case_statement_alternative, + aux_sym_case_statement_repeat1, + [47309] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, + ACTIONS(2306), 1, aux_sym_with_clause_token2, - ACTIONS(3226), 1, - anon_sym_SEMI, - ACTIONS(3690), 1, - aux_sym_package_specification_token2, STATE(1483), 1, sym_aspect_specification, - [47179] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2720), 1, - anon_sym_LPAREN, - ACTIONS(3692), 1, + ACTIONS(3696), 2, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(3694), 1, - aux_sym_accept_statement_token2, - STATE(1387), 1, - sym_formal_part, - [47195] = 2, + [47323] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3696), 4, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [47205] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1830), 1, - aux_sym_primary_null_token1, - ACTIONS(1836), 1, - aux_sym_record_component_association_list_token1, ACTIONS(3698), 1, - aux_sym_compilation_unit_token1, - STATE(1462), 1, - sym_record_definition, - [47221] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - STATE(1390), 1, - sym_aspect_specification, - ACTIONS(3700), 2, - anon_sym_RPAREN, anon_sym_SEMI, - [47235] = 2, + ACTIONS(3700), 1, + aux_sym_with_clause_token2, + ACTIONS(3703), 1, + aux_sym_expression_token1, + STATE(1469), 1, + sym_record_extension_part, + [47339] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3702), 4, + STATE(1384), 1, + sym__enumeration_literal_specification, + STATE(1561), 1, + sym__enumeration_literal_list, + ACTIONS(3705), 2, + sym_identifier, + sym_character_literal, + [47353] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(452), 1, + aux_sym_gnatprep_declarative_if_statement_token2, + ACTIONS(3707), 1, + aux_sym_gnatprep_declarative_if_statement_token3, + ACTIONS(3709), 1, + aux_sym_gnatprep_declarative_if_statement_token4, + STATE(1172), 1, + aux_sym_gnatprep_if_statement_repeat1, + [47369] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1906), 1, + aux_sym_primary_null_token1, + ACTIONS(1912), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3711), 1, + aux_sym_compilation_unit_token1, + STATE(1473), 1, + sym_record_definition, + [47385] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1906), 1, + aux_sym_primary_null_token1, + ACTIONS(1912), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3713), 1, + aux_sym_compilation_unit_token1, + STATE(1473), 1, + sym_record_definition, + [47401] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3715), 1, + aux_sym_gnatprep_declarative_if_statement_token2, + STATE(1172), 1, + aux_sym_gnatprep_if_statement_repeat1, + ACTIONS(3718), 2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + [47415] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3720), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [47425] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3512), 1, + anon_sym_SEMI, + ACTIONS(3722), 1, + aux_sym_with_clause_token2, + ACTIONS(3725), 1, + aux_sym_expression_token1, + STATE(1497), 1, + sym_record_extension_part, + [47441] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3727), 1, + aux_sym_gnatprep_declarative_if_statement_token2, + STATE(1175), 1, + aux_sym_gnatprep_declarative_if_statement_repeat1, + ACTIONS(3730), 2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + [47455] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(330), 1, + aux_sym_gnatprep_declarative_if_statement_token2, + ACTIONS(3732), 1, + aux_sym_gnatprep_declarative_if_statement_token3, + ACTIONS(3734), 1, + aux_sym_gnatprep_declarative_if_statement_token4, + STATE(1175), 1, + aux_sym_gnatprep_declarative_if_statement_repeat1, + [47471] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3736), 4, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, + [47481] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3738), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3740), 1, + aux_sym_package_specification_token3, + STATE(1165), 2, + sym_case_statement_alternative, + aux_sym_case_statement_repeat1, + [47495] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3698), 1, + anon_sym_SEMI, + ACTIONS(3742), 1, + aux_sym_with_clause_token2, + ACTIONS(3745), 1, + aux_sym_expression_token1, + STATE(1469), 1, + sym_record_extension_part, + [47511] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1906), 1, + aux_sym_primary_null_token1, + ACTIONS(1912), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3747), 1, + aux_sym_compilation_unit_token1, + STATE(1484), 1, + sym_record_definition, + [47527] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3204), 1, + aux_sym_iterator_filter_token1, + STATE(1489), 1, + sym_aspect_specification, + STATE(1746), 1, + sym_entry_barrier, + [47543] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3749), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3752), 1, + aux_sym_package_specification_token3, + STATE(1182), 2, + sym_variant, + aux_sym_variant_list_repeat1, + [47557] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3754), 1, + anon_sym_SEMI, + ACTIONS(3756), 1, + aux_sym_package_specification_token2, + STATE(1541), 1, + sym_aspect_specification, + [47573] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3758), 1, + anon_sym_SEMI, + ACTIONS(3760), 1, + aux_sym_package_specification_token2, + STATE(1438), 1, + sym_aspect_specification, + [47589] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + STATE(1422), 1, + sym_aspect_specification, + ACTIONS(3762), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47603] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3380), 1, + anon_sym_SEMI, + ACTIONS(3764), 1, + aux_sym_package_specification_token2, + STATE(1444), 1, + sym_aspect_specification, + [47619] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3766), 1, + aux_sym_package_specification_token2, + ACTIONS(3671), 3, + anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_object_renaming_declaration_token1, - [47245] = 5, + [47631] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, - aux_sym_primary_null_token1, - ACTIONS(1836), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3704), 1, - aux_sym_with_clause_token1, - STATE(1505), 1, - sym_record_definition, - [47261] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3261), 1, - anon_sym_SEMI, - ACTIONS(3397), 1, - aux_sym_package_specification_token2, - STATE(1799), 1, - sym_aspect_specification, - [47277] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3449), 1, + ACTIONS(330), 1, aux_sym_gnatprep_declarative_if_statement_token2, - ACTIONS(3706), 1, + ACTIONS(3769), 1, aux_sym_gnatprep_declarative_if_statement_token3, - ACTIONS(3708), 1, + ACTIONS(3771), 1, aux_sym_gnatprep_declarative_if_statement_token4, - STATE(1073), 1, - aux_sym_gnatprep_if_statement_repeat1, - [47293] = 4, + STATE(1175), 1, + aux_sym_gnatprep_declarative_if_statement_repeat1, + [47647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3710), 1, - anon_sym_COMMA, - ACTIONS(3712), 1, - anon_sym_RPAREN, - STATE(1251), 1, - aux_sym_positional_array_aggregate_repeat1, - [47306] = 4, + ACTIONS(3135), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(1678), 3, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + [47659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3714), 1, - anon_sym_EQ_GT, - ACTIONS(3716), 1, - anon_sym_PIPE, - STATE(1194), 1, - aux_sym_exception_choice_list_repeat1, - [47319] = 2, + ACTIONS(3773), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(1628), 3, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + [47671] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3718), 3, + ACTIONS(3573), 1, anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [47328] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3720), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [47337] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(454), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(530), 1, - aux_sym_value_sequence_token1, - STATE(1998), 1, - sym_iterated_element_association, - [47350] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3722), 3, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - [47359] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3724), 1, - anon_sym_COMMA, - ACTIONS(3726), 1, - anon_sym_RPAREN, - STATE(1235), 1, - aux_sym_pragma_g_repeat1, - [47372] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3728), 1, - anon_sym_COMMA, - ACTIONS(3730), 1, - anon_sym_RPAREN, - STATE(1238), 1, - aux_sym_record_component_association_list_repeat2, - [47385] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3732), 1, - anon_sym_COMMA, - ACTIONS(3735), 1, - anon_sym_RPAREN, - STATE(1181), 1, - aux_sym_actual_parameter_part_repeat1, - [47398] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3737), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [47407] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3739), 1, - anon_sym_COMMA, - ACTIONS(3742), 1, - anon_sym_RPAREN, - STATE(1183), 1, - aux_sym_record_component_association_list_repeat1, - [47420] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1830), 1, - aux_sym_primary_null_token1, - ACTIONS(1836), 1, - aux_sym_record_component_association_list_token1, - STATE(1505), 1, - sym_record_definition, - [47433] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3744), 3, - anon_sym_RPAREN, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - [47442] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3432), 1, - aux_sym_expression_token2, - ACTIONS(3746), 2, - aux_sym_expression_token3, - aux_sym_expression_token4, - [47453] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3748), 1, - anon_sym_COMMA, - ACTIONS(3750), 1, - anon_sym_RPAREN, - STATE(1245), 1, - aux_sym_case_expression_repeat1, - [47466] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3752), 1, - aux_sym_package_specification_token2, - STATE(1557), 1, - sym_aspect_specification, - [47479] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3754), 1, - anon_sym_COMMA, - ACTIONS(3757), 1, - anon_sym_RPAREN, - STATE(1189), 1, - aux_sym_index_constraint_repeat1, - [47492] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3430), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [47501] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3762), 1, - anon_sym_RPAREN, - STATE(1191), 1, - aux_sym_discriminant_constraint_repeat1, - [47514] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3764), 1, - anon_sym_SEMI, - STATE(1912), 1, - sym_aspect_specification, - [47527] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3766), 1, - anon_sym_SEMI, - STATE(1837), 1, - sym_aspect_specification, - [47540] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3716), 1, - anon_sym_PIPE, - ACTIONS(3768), 1, - anon_sym_EQ_GT, - STATE(1226), 1, - aux_sym_exception_choice_list_repeat1, - [47553] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3770), 1, - aux_sym_package_specification_token2, - STATE(1770), 1, - sym_aspect_specification, - [47566] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3772), 1, - sym_identifier, - ACTIONS(3774), 1, - aux_sym_use_clause_token2, ACTIONS(3776), 1, - aux_sym_package_body_token1, - [47579] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3778), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [47588] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, aux_sym_with_clause_token2, - ACTIONS(3780), 1, - anon_sym_SEMI, - STATE(1818), 1, - sym_aspect_specification, - [47601] = 2, + ACTIONS(3779), 1, + aux_sym_expression_token1, + STATE(1529), 1, + sym_record_extension_part, + [47687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3436), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [47610] = 4, + ACTIONS(3781), 1, + aux_sym_package_specification_token2, + ACTIONS(3671), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [47699] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3297), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3782), 1, - anon_sym_SEMI, + ACTIONS(1906), 1, + aux_sym_primary_null_token1, + ACTIONS(1912), 1, + aux_sym_record_component_association_list_token1, ACTIONS(3784), 1, aux_sym_with_clause_token1, - [47623] = 4, + STATE(1522), 1, + sym_record_definition, + [47715] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, + ACTIONS(2306), 1, aux_sym_with_clause_token2, + ACTIONS(3380), 1, + anon_sym_SEMI, + ACTIONS(3382), 1, + aux_sym_package_specification_token2, + STATE(1654), 1, + sym_aspect_specification, + [47731] = 4, + ACTIONS(3), 1, + sym_comment, ACTIONS(3786), 1, - anon_sym_SEMI, - STATE(1955), 1, - sym_aspect_specification, - [47636] = 2, + anon_sym_COMMA, + STATE(1195), 1, + aux_sym__array_component_association_list_repeat1, + ACTIONS(3789), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [47745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3788), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [47645] = 4, + ACTIONS(3791), 1, + sym_identifier, + STATE(1006), 1, + sym__aspect_mark, + STATE(1011), 1, + sym_aspect_association, + STATE(1177), 1, + sym_aspect_mark_list, + [47761] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3790), 1, - anon_sym_SEMI, - STATE(1833), 1, - sym_aspect_specification, - [47658] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3340), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [47667] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3792), 3, + ACTIONS(3793), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3796), 1, aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [47676] = 2, + STATE(1197), 2, + sym_exception_handler, + aux_sym_handled_sequence_of_statements_repeat1, + [47775] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3794), 3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_expression_token3, - [47685] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3796), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [47694] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, ACTIONS(3798), 1, - aux_sym_package_specification_token2, - STATE(1871), 1, - sym_aspect_specification, - [47707] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, + anon_sym_LPAREN, ACTIONS(3800), 1, anon_sym_SEMI, - STATE(1561), 1, + ACTIONS(3802), 1, + aux_sym_accept_statement_token2, + STATE(1440), 1, + sym_formal_part, + [47791] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + STATE(1447), 1, sym_aspect_specification, - [47720] = 2, + ACTIONS(3804), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47805] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3802), 3, - aux_sym_iterated_element_association_token2, + ACTIONS(3376), 1, + sym_identifier, + STATE(1377), 1, + sym_parameter_specification, + STATE(1843), 1, + sym__parameter_specification_list, + STATE(1844), 1, + sym__defining_identifier_list, + [47821] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [47729] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3804), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [47738] = 2, + STATE(1332), 1, + aux_sym_discriminant_association_repeat1, + [47834] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3806), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [47747] = 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [47843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3370), 1, - aux_sym_allocator_token1, ACTIONS(3808), 1, - aux_sym_with_clause_token1, - ACTIONS(3810), 1, - aux_sym_private_type_declaration_token2, - [47760] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3812), 1, - sym_identifier, - ACTIONS(3814), 1, - aux_sym_use_clause_token2, - ACTIONS(3816), 1, - aux_sym_package_body_token1, - [47773] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3577), 1, - aux_sym_iterator_filter_token1, - STATE(1125), 2, - sym_exception_handler, - aux_sym_handled_sequence_of_statements_repeat1, - [47784] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1121), 1, - aux_sym__name_list_repeat1, - ACTIONS(3818), 2, anon_sym_COMMA, + ACTIONS(3810), 1, anon_sym_RPAREN, - [47795] = 2, + STATE(1375), 1, + aux_sym_global_aspect_definition_repeat1, + [47856] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3820), 3, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - [47804] = 4, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3812), 1, + anon_sym_SEMI, + STATE(1952), 1, + sym_aspect_specification, + [47869] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, + ACTIONS(1906), 1, + aux_sym_primary_null_token1, + ACTIONS(1912), 1, + aux_sym_record_component_association_list_token1, + STATE(1522), 1, + sym_record_definition, + [47882] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3814), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [47891] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3816), 1, + anon_sym_SEMI, + STATE(1956), 1, + sym_aspect_specification, + [47904] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3818), 1, + anon_sym_COMMA, + ACTIONS(3820), 1, + anon_sym_RPAREN, + STATE(1396), 1, + aux_sym__index_subtype_definition_list_repeat1, + [47917] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, aux_sym_with_clause_token2, ACTIONS(3822), 1, - anon_sym_SEMI, - STATE(1666), 1, + aux_sym_package_specification_token2, + STATE(1721), 1, sym_aspect_specification, - [47817] = 4, + [47930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3824), 1, - anon_sym_SEMI, - STATE(1908), 1, - sym_aspect_specification, - [47830] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3826), 3, + ACTIONS(3824), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [47839] = 4, + [47939] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3828), 1, - anon_sym_SEMI, - STATE(1785), 1, - sym_aspect_specification, - [47852] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3830), 3, - anon_sym_SEMI, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - [47861] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3832), 1, + ACTIONS(3826), 1, + anon_sym_COMMA, + ACTIONS(3829), 1, anon_sym_RPAREN, - ACTIONS(3834), 1, + STATE(1211), 1, + aux_sym_record_component_association_list_repeat2, + [47952] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3831), 1, + anon_sym_RPAREN, + ACTIONS(3833), 1, anon_sym_SEMI, - STATE(1223), 1, + STATE(1236), 1, aux_sym__parameter_specification_list_repeat1, - [47874] = 3, + [47965] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1814), 1, - aux_sym_attribute_designator_token1, - STATE(1175), 2, - sym_access_to_subprogram_definition, - sym_access_to_object_definition, - [47885] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, + ACTIONS(3835), 1, + anon_sym_EQ_GT, ACTIONS(3837), 1, - aux_sym_package_specification_token2, - STATE(1663), 1, - sym_aspect_specification, - [47898] = 4, + anon_sym_PIPE, + STATE(1215), 1, + aux_sym_exception_choice_list_repeat1, + [47978] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3376), 1, + sym_identifier, + STATE(1492), 1, + sym_parameter_specification, + STATE(1844), 1, + sym__defining_identifier_list, + [47991] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3839), 1, anon_sym_EQ_GT, ACTIONS(3841), 1, anon_sym_PIPE, - STATE(1226), 1, + STATE(1215), 1, aux_sym_exception_choice_list_repeat1, - [47911] = 2, + [48004] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3802), 3, + ACTIONS(3791), 1, + sym_identifier, + STATE(1006), 1, + sym__aspect_mark, + STATE(1095), 1, + sym_aspect_association, + [48017] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3844), 1, + anon_sym_COMMA, + ACTIONS(3846), 1, + anon_sym_RPAREN, + STATE(1392), 1, + aux_sym__discrete_subtype_definition_list_repeat1, + [48030] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3789), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [48039] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3414), 1, + anon_sym_SEMI, + STATE(2018), 1, + sym_aspect_specification, + [48052] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3848), 1, + aux_sym_package_specification_token2, + STATE(1820), 1, + sym_aspect_specification, + [48065] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3850), 1, + aux_sym_package_specification_token2, + STATE(1846), 1, + sym_aspect_specification, + [48078] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3852), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + [48087] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3854), 1, + anon_sym_SEMI, + STATE(2012), 1, + sym_aspect_specification, + [48100] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3824), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [47920] = 2, + [48109] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [47929] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, + ACTIONS(2306), 1, aux_sym_with_clause_token2, - ACTIONS(3846), 1, - aux_sym_package_specification_token2, - STATE(1852), 1, - sym_aspect_specification, - [47942] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3848), 1, - anon_sym_SEMI, - STATE(1811), 1, - sym_aspect_specification, - [47955] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1800), 1, - anon_sym_PIPE, - ACTIONS(3850), 1, - anon_sym_EQ_GT, - STATE(1294), 1, - aux_sym_discriminant_association_repeat1, - [47968] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3852), 1, - anon_sym_SEMI, - STATE(1810), 1, - sym_aspect_specification, - [47981] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3854), 1, - aux_sym_package_specification_token2, - STATE(1871), 1, - sym_aspect_specification, - [47994] = 4, - ACTIONS(3), 1, - sym_comment, ACTIONS(3856), 1, - anon_sym_COMMA, - ACTIONS(3858), 1, - anon_sym_RPAREN, - STATE(1191), 1, - aux_sym_discriminant_constraint_repeat1, - [48007] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3724), 1, - anon_sym_COMMA, - ACTIONS(3860), 1, - anon_sym_RPAREN, - STATE(1331), 1, - aux_sym_pragma_g_repeat1, - [48020] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3862), 1, anon_sym_SEMI, - STATE(1808), 1, + STATE(2020), 1, sym_aspect_specification, - [48033] = 4, + [48122] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1906), 1, + aux_sym_primary_null_token1, + ACTIONS(1912), 1, + aux_sym_record_component_association_list_token1, + STATE(1484), 1, + sym_record_definition, + [48135] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3858), 1, + anon_sym_SEMI, + STATE(1730), 1, + sym_aspect_specification, + [48148] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3860), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [48157] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3862), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [48166] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3864), 1, anon_sym_COMMA, - ACTIONS(3866), 1, + ACTIONS(3867), 1, anon_sym_RPAREN, - STATE(1189), 1, - aux_sym_index_constraint_repeat1, - [48046] = 4, + STATE(1230), 1, + aux_sym_actual_parameter_part_repeat1, + [48179] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, - anon_sym_COMMA, - ACTIONS(3868), 1, - anon_sym_RPAREN, - STATE(1354), 1, - aux_sym_record_component_association_list_repeat2, - [48059] = 4, + ACTIONS(3837), 1, + anon_sym_PIPE, + ACTIONS(3869), 1, + anon_sym_EQ_GT, + STATE(1213), 1, + aux_sym_exception_choice_list_repeat1, + [48192] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3257), 1, - anon_sym_SEMI, - STATE(1617), 1, - sym_aspect_specification, - [48072] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1830), 1, - aux_sym_primary_null_token1, - ACTIONS(1836), 1, - aux_sym_record_component_association_list_token1, - STATE(1462), 1, - sym_record_definition, - [48085] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3870), 1, - anon_sym_SEMI, - STATE(1620), 1, - sym_aspect_specification, - [48098] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3872), 3, - aux_sym_terminate_alternative_token1, - aux_sym_accept_statement_token1, - aux_sym_delay_until_statement_token1, - [48107] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1830), 1, - aux_sym_primary_null_token1, - ACTIONS(1836), 1, - aux_sym_record_component_association_list_token1, - STATE(1451), 1, - sym_record_definition, - [48120] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3748), 1, - anon_sym_COMMA, - ACTIONS(3874), 1, - anon_sym_RPAREN, - STATE(1187), 1, - aux_sym_case_expression_repeat1, - [48133] = 4, + ACTIONS(3871), 1, + anon_sym_EQ_GT, + ACTIONS(3873), 1, + anon_sym_PIPE, + STATE(1232), 1, + aux_sym_discrete_choice_list_repeat1, + [48205] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(3879), 1, + ACTIONS(3878), 1, anon_sym_RPAREN, - STATE(1245), 1, - aux_sym_case_expression_repeat1, - [48146] = 4, + STATE(1255), 1, + aux_sym_index_constraint_repeat1, + [48218] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3035), 1, + ACTIONS(3628), 3, anon_sym_COMMA, - ACTIONS(3818), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + [48227] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1906), 1, + aux_sym_primary_null_token1, + ACTIONS(1912), 1, + aux_sym_record_component_association_list_token1, + STATE(1473), 1, + sym_record_definition, + [48240] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3880), 1, + anon_sym_RPAREN, + ACTIONS(3882), 1, anon_sym_SEMI, - STATE(1121), 1, - aux_sym__name_list_repeat1, - [48159] = 4, + STATE(1236), 1, + aux_sym__parameter_specification_list_repeat1, + [48253] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3645), 1, - sym_identifier, - STATE(977), 1, - sym__aspect_mark, - STATE(1070), 1, - sym_aspect_association, - [48172] = 4, + ACTIONS(3885), 1, + anon_sym_EQ_GT, + ACTIONS(3887), 1, + anon_sym_PIPE, + STATE(1237), 1, + aux_sym_discriminant_association_repeat1, + [48266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3881), 1, - anon_sym_COMMA, - ACTIONS(3884), 1, - anon_sym_RPAREN, - STATE(1248), 1, - aux_sym_global_aspect_definition_repeat1, - [48185] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3886), 3, + ACTIONS(3890), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [48194] = 4, + [48275] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3888), 1, - anon_sym_COMMA, - ACTIONS(3890), 1, - anon_sym_RPAREN, - STATE(1183), 1, - aux_sym_record_component_association_list_repeat1, - [48207] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3710), 1, - anon_sym_COMMA, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, ACTIONS(3892), 1, - anon_sym_RPAREN, - STATE(1116), 1, - aux_sym_positional_array_aggregate_repeat1, - [48220] = 4, + anon_sym_SEMI, + STATE(1767), 1, + sym_aspect_specification, + [48288] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, ACTIONS(3894), 1, - anon_sym_SEMI, - STATE(1826), 1, - sym_aspect_specification, - [48233] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, + anon_sym_COMMA, ACTIONS(3896), 1, - anon_sym_SEMI, - STATE(1718), 1, - sym_aspect_specification, - [48246] = 4, + anon_sym_RPAREN, + STATE(1230), 1, + aux_sym_actual_parameter_part_repeat1, + [48301] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3898), 1, - anon_sym_COMMA, + anon_sym_SEMI, ACTIONS(3900), 1, - anon_sym_RPAREN, - STATE(1248), 1, - aux_sym_global_aspect_definition_repeat1, - [48259] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, + aux_sym_package_specification_token2, ACTIONS(3902), 1, - anon_sym_SEMI, - STATE(1692), 1, - sym_aspect_specification, - [48272] = 4, + aux_sym_expression_token3, + [48314] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, ACTIONS(3904), 1, - anon_sym_RPAREN, - ACTIONS(3906), 1, anon_sym_SEMI, - STATE(1322), 1, - aux_sym__parameter_specification_list_repeat1, - [48285] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3101), 1, - aux_sym_chunk_specification_token1, - ACTIONS(3106), 1, - anon_sym_COLON, - ACTIONS(3108), 1, - aux_sym_iterator_specification_token1, - [48298] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3513), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(3908), 1, - aux_sym_attribute_designator_token3, - STATE(1461), 1, - sym_real_range_specification, - [48311] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3910), 1, - anon_sym_COMMA, - ACTIONS(3913), 1, - anon_sym_COLON, - STATE(1259), 1, - aux_sym__defining_identifier_list_repeat1, - [48324] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3915), 1, - sym_identifier, - ACTIONS(3917), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48335] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3919), 1, - anon_sym_EQ_GT, - ACTIONS(3921), 1, - anon_sym_PIPE, - STATE(1367), 1, - aux_sym_discrete_choice_list_repeat1, - [48348] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3350), 1, - anon_sym_SEMI, - STATE(1585), 1, + STATE(1599), 1, sym_aspect_specification, - [48361] = 2, + [48327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3923), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [48370] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3925), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [48379] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3927), 3, - aux_sym_package_specification_token3, + ACTIONS(3906), 3, + anon_sym_RPAREN, aux_sym_expression_token4, aux_sym_elsif_expression_item_token1, - [48388] = 4, + [48336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, + ACTIONS(3908), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [48345] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, aux_sym_with_clause_token2, - ACTIONS(3929), 1, + ACTIONS(3910), 1, anon_sym_SEMI, - STATE(1821), 1, + STATE(1723), 1, sym_aspect_specification, - [48401] = 2, + [48358] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3931), 3, - anon_sym_SEMI, + ACTIONS(3912), 1, + anon_sym_COMMA, + ACTIONS(3915), 1, + anon_sym_RPAREN, + STATE(1246), 1, + aux_sym_record_component_association_list_repeat1, + [48371] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3917), 1, + anon_sym_COMMA, + ACTIONS(3919), 1, + anon_sym_RBRACK, + STATE(1141), 1, + aux_sym_positional_array_aggregate_repeat1, + [48384] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, + ACTIONS(3921), 1, + anon_sym_SEMI, + STATE(1758), 1, + sym_aspect_specification, + [48397] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(3923), 1, + anon_sym_EQ_GT, + STATE(1237), 1, + aux_sym_discriminant_association_repeat1, [48410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, + ACTIONS(2306), 1, aux_sym_with_clause_token2, - ACTIONS(3933), 1, + ACTIONS(3925), 1, anon_sym_SEMI, - STATE(1676), 1, + STATE(1766), 1, sym_aspect_specification, - [48423] = 2, + [48423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3935), 3, - anon_sym_SEMI, + ACTIONS(2306), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [48432] = 4, + ACTIONS(3927), 1, + anon_sym_SEMI, + STATE(1768), 1, + sym_aspect_specification, + [48436] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3937), 1, + ACTIONS(3929), 1, anon_sym_COMMA, - ACTIONS(3939), 1, - anon_sym_RBRACK, - STATE(1116), 1, - aux_sym_positional_array_aggregate_repeat1, - [48445] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3941), 1, - anon_sym_SEMI, - STATE(1798), 1, - sym_aspect_specification, - [48458] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3943), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [48467] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3945), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [48476] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3947), 1, - anon_sym_SEMI, - STATE(1586), 1, - sym_aspect_specification, - [48489] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3921), 1, - anon_sym_PIPE, - ACTIONS(3949), 1, - anon_sym_EQ_GT, - STATE(1261), 1, - aux_sym_discrete_choice_list_repeat1, - [48502] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3951), 1, + ACTIONS(3931), 1, anon_sym_RPAREN, - ACTIONS(3953), 1, + STATE(1328), 1, + aux_sym_discriminant_constraint_repeat1, + [48449] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3933), 1, + anon_sym_COMMA, + ACTIONS(3936), 1, + anon_sym_RPAREN, + STATE(1253), 1, + aux_sym__index_subtype_definition_list_repeat1, + [48462] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3929), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, + anon_sym_RPAREN, + STATE(1252), 1, + aux_sym_discriminant_constraint_repeat1, + [48475] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3876), 1, + anon_sym_COMMA, + ACTIONS(3940), 1, + anon_sym_RPAREN, + STATE(1365), 1, + aux_sym_index_constraint_repeat1, + [48488] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3942), 3, anon_sym_SEMI, - STATE(1312), 1, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [48497] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3944), 1, + aux_sym_package_specification_token2, + STATE(1705), 1, + sym_aspect_specification, + [48510] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3946), 1, + anon_sym_SEMI, + STATE(1947), 1, + sym_aspect_specification, + [48523] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3948), 1, + anon_sym_RPAREN, + ACTIONS(3950), 1, + anon_sym_SEMI, + STATE(1388), 1, aux_sym_discriminant_specification_list_repeat1, - [48515] = 2, + [48536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3955), 3, + ACTIONS(3952), 1, + sym_identifier, + ACTIONS(3954), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [48547] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3117), 1, + anon_sym_COMMA, + ACTIONS(3956), 1, + anon_sym_SEMI, + STATE(1101), 1, + aux_sym__name_list_repeat1, + [48560] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3958), 1, + anon_sym_COMMA, + ACTIONS(3960), 1, + anon_sym_RPAREN, + STATE(1368), 1, + aux_sym_case_expression_repeat1, + [48573] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3962), 1, + anon_sym_SEMI, + STATE(1906), 1, + sym_aspect_specification, + [48586] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3964), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [48524] = 4, + [48595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3957), 1, - anon_sym_SEMI, - STATE(1903), 1, - sym_aspect_specification, - [48537] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3959), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [48546] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3961), 1, - anon_sym_SEMI, - STATE(1904), 1, - sym_aspect_specification, - [48559] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3963), 1, - anon_sym_SEMI, - STATE(1985), 1, - sym_aspect_specification, - [48572] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3965), 3, + ACTIONS(3966), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [48581] = 2, + [48604] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3967), 3, - anon_sym_SEMI, + ACTIONS(2306), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [48590] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3969), 1, + ACTIONS(3968), 1, anon_sym_SEMI, - STATE(1691), 1, + STATE(2010), 1, sym_aspect_specification, - [48603] = 4, + [48617] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3971), 1, - anon_sym_SEMI, - STATE(1562), 1, - sym_aspect_specification, - [48616] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3973), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [48625] = 4, + ACTIONS(3970), 1, + anon_sym_COMMA, + ACTIONS(3973), 1, + anon_sym_RPAREN, + STATE(1267), 1, + aux_sym__discrete_subtype_definition_list_repeat1, + [48630] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3975), 1, anon_sym_COMMA, - ACTIONS(3978), 1, + ACTIONS(3977), 1, anon_sym_RPAREN, - STATE(1287), 1, - aux_sym__enumeration_literal_list_repeat1, - [48638] = 4, + STATE(1246), 1, + aux_sym_record_component_association_list_repeat1, + [48643] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3980), 1, - anon_sym_SEMI, - STATE(1695), 1, - sym_aspect_specification, - [48651] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3982), 1, + ACTIONS(3979), 1, anon_sym_COMMA, - ACTIONS(3984), 1, + ACTIONS(3981), 1, anon_sym_RPAREN, - STATE(1287), 1, - aux_sym__enumeration_literal_list_repeat1, - [48664] = 4, + STATE(1141), 1, + aux_sym_positional_array_aggregate_repeat1, + [48656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3986), 1, - anon_sym_COMMA, - ACTIONS(3989), 1, - anon_sym_RPAREN, - STATE(1290), 1, - aux_sym__index_subtype_definition_list_repeat1, - [48677] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3991), 1, + ACTIONS(3983), 3, anon_sym_SEMI, - STATE(1566), 1, - sym_aspect_specification, - [48690] = 4, + aux_sym_package_specification_token2, + aux_sym_expression_token3, + [48665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3189), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(3621), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3665), 1, + ACTIONS(3985), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [48674] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3987), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [48683] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3438), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [48692] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3356), 1, aux_sym_allocator_token1, - [48703] = 3, + ACTIONS(3989), 1, + aux_sym_with_clause_token1, + ACTIONS(3991), 1, + aux_sym_private_type_declaration_token2, + [48705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3993), 1, - sym_identifier, - STATE(1767), 2, - sym_loop_parameter_specification, - sym_iterator_specification, + ACTIONS(3993), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, [48714] = 4, ACTIONS(3), 1, sym_comment, @@ -56415,6069 +57792,6564 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(3997), 1, anon_sym_PIPE, - STATE(1294), 1, - aux_sym_discriminant_association_repeat1, - [48727] = 3, + STATE(1232), 1, + aux_sym_discrete_choice_list_repeat1, + [48727] = 4, ACTIONS(3), 1, sym_comment, - STATE(1439), 1, + ACTIONS(3342), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3999), 1, + anon_sym_SEMI, + ACTIONS(4001), 1, + aux_sym_with_clause_token1, + [48740] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4003), 1, + anon_sym_SEMI, + STATE(1663), 1, + sym_aspect_specification, + [48753] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4005), 1, + anon_sym_SEMI, + STATE(1779), 1, + sym_aspect_specification, + [48766] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4007), 1, + anon_sym_COMMA, + ACTIONS(4009), 1, + anon_sym_RPAREN, + STATE(1298), 1, + aux_sym__enumeration_literal_list_repeat1, + [48779] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4011), 1, + anon_sym_SEMI, + STATE(1856), 1, + sym_aspect_specification, + [48792] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4013), 1, + anon_sym_SEMI, + STATE(1707), 1, + sym_aspect_specification, + [48805] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1461), 1, sym__enumeration_literal_specification, - ACTIONS(4000), 2, + ACTIONS(4015), 2, sym_identifier, sym_character_literal, - [48738] = 2, + [48816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4002), 3, + ACTIONS(4017), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [48825] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4019), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [48747] = 2, + [48834] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4004), 3, - anon_sym_SEMI, + ACTIONS(2306), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [48756] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4006), 3, + ACTIONS(4021), 1, anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [48765] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(4008), 1, - anon_sym_SEMI, - STATE(1697), 1, + STATE(1726), 1, sym_aspect_specification, - [48778] = 2, + [48847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4010), 3, - anon_sym_SEMI, + ACTIONS(2306), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [48787] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(4012), 1, + ACTIONS(4023), 1, anon_sym_SEMI, - STATE(1966), 1, + STATE(1787), 1, sym_aspect_specification, - [48800] = 4, + [48860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(4014), 1, - anon_sym_SEMI, - STATE(1964), 1, - sym_aspect_specification, - [48813] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(4016), 1, - anon_sym_SEMI, - STATE(1657), 1, - sym_aspect_specification, - [48826] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(4018), 1, - anon_sym_SEMI, - STATE(1568), 1, - sym_aspect_specification, - [48839] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4020), 3, - sym_identifier, - sym_string_literal, - sym_character_literal, - [48848] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4022), 1, - anon_sym_COMMA, ACTIONS(4025), 1, - anon_sym_RPAREN, - STATE(1306), 1, - aux_sym__discrete_subtype_definition_list_repeat1, - [48861] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3271), 1, sym_identifier, - STATE(1425), 1, - sym_discriminant_specification, - STATE(1883), 1, - sym__defining_identifier_list, - [48874] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1968), 1, - anon_sym_COMMA, - ACTIONS(4027), 1, - anon_sym_COLON, - STATE(1259), 1, - aux_sym__defining_identifier_list_repeat1, - [48887] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4029), 1, - anon_sym_COMMA, - ACTIONS(4031), 1, - anon_sym_RPAREN, - STATE(1181), 1, - aux_sym_actual_parameter_part_repeat1, - [48900] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4033), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [48909] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(454), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(4035), 1, - anon_sym_LPAREN, - STATE(1953), 1, - sym_iterated_element_association, - [48922] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4037), 1, - anon_sym_RPAREN, - ACTIONS(4039), 1, - anon_sym_SEMI, - STATE(1312), 1, - aux_sym_discriminant_specification_list_repeat1, - [48935] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(4042), 1, - anon_sym_SEMI, - STATE(1698), 1, - sym_aspect_specification, - [48948] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(4044), 1, - anon_sym_SEMI, - STATE(1987), 1, - sym_aspect_specification, - [48961] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(4046), 1, - anon_sym_SEMI, - STATE(1673), 1, - sym_aspect_specification, - [48974] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3993), 1, - sym_identifier, - STATE(1459), 2, + STATE(2040), 2, sym_loop_parameter_specification, sym_iterator_specification, - [48985] = 4, + [48871] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4027), 1, + anon_sym_RPAREN, + ACTIONS(4029), 1, + anon_sym_SEMI, + STATE(1289), 1, + aux_sym_discriminant_specification_list_repeat1, + [48884] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4032), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [48893] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4034), 1, + anon_sym_COMMA, + ACTIONS(4036), 1, + anon_sym_RPAREN, + STATE(1211), 1, + aux_sym_record_component_association_list_repeat2, + [48906] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3894), 1, + anon_sym_COMMA, + ACTIONS(4038), 1, + anon_sym_RPAREN, + STATE(1240), 1, + aux_sym_actual_parameter_part_repeat1, + [48919] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4040), 1, + anon_sym_SEMI, + STATE(1573), 1, + sym_aspect_specification, + [48932] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4042), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [48941] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4044), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [48950] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1330), 1, + sym_quantifier, + ACTIONS(3249), 2, + aux_sym_use_clause_token1, + aux_sym_quantifier_token1, + [48961] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4046), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [48970] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4048), 1, anon_sym_COMMA, - ACTIONS(4050), 1, + ACTIONS(4051), 1, anon_sym_RPAREN, - STATE(1370), 1, - aux_sym__discrete_subtype_definition_list_repeat1, - [48998] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(4052), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_aspect_specification, - [49011] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(4054), 1, - anon_sym_SEMI, - STATE(1640), 1, - sym_aspect_specification, - [49024] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1293), 1, - sym_quantifier, - ACTIONS(3161), 2, - aux_sym_use_clause_token1, - aux_sym_quantifier_token1, - [49035] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3271), 1, - sym_identifier, - STATE(1486), 1, - sym_parameter_specification, - STATE(1870), 1, - sym__defining_identifier_list, - [49048] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3906), 1, - anon_sym_SEMI, - ACTIONS(4056), 1, - anon_sym_RPAREN, - STATE(1223), 1, - aux_sym__parameter_specification_list_repeat1, - [49061] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(4058), 1, - anon_sym_SEMI, - STATE(1848), 1, - sym_aspect_specification, - [49074] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(4060), 1, - anon_sym_SEMI, - STATE(1590), 1, - sym_aspect_specification, - [49087] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(4062), 1, - anon_sym_SEMI, - STATE(1591), 1, - sym_aspect_specification, - [49100] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(4064), 1, - anon_sym_SEMI, - STATE(1817), 1, - sym_aspect_specification, - [49113] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4066), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [49122] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3953), 1, - anon_sym_SEMI, - ACTIONS(4068), 1, - anon_sym_RPAREN, - STATE(1276), 1, - aux_sym_discriminant_specification_list_repeat1, - [49135] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4070), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [49144] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4072), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [49153] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4074), 1, - anon_sym_COMMA, - ACTIONS(4077), 1, - anon_sym_RPAREN, - STATE(1331), 1, - aux_sym_pragma_g_repeat1, - [49166] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4070), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [49175] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3856), 1, - anon_sym_COMMA, - ACTIONS(4079), 1, - anon_sym_RPAREN, - STATE(1234), 1, - aux_sym_discriminant_constraint_repeat1, - [49188] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4081), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [49197] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3864), 1, - anon_sym_COMMA, - ACTIONS(4083), 1, - anon_sym_RPAREN, - STATE(1237), 1, - aux_sym_index_constraint_repeat1, - [49210] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(4085), 1, - aux_sym_package_specification_token2, - STATE(1852), 1, - sym_aspect_specification, - [49223] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3674), 1, - aux_sym_iterator_filter_token1, - STATE(1155), 2, - sym_case_statement_alternative, - aux_sym_case_statement_repeat1, - [49234] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4087), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [49243] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4089), 1, - anon_sym_COMMA, - ACTIONS(4091), 1, - anon_sym_RPAREN, - STATE(1371), 1, - aux_sym__index_subtype_definition_list_repeat1, - [49256] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(4093), 1, - anon_sym_SEMI, - STATE(1577), 1, - sym_aspect_specification, - [49269] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3898), 1, - anon_sym_COMMA, - ACTIONS(4095), 1, - anon_sym_RPAREN, - STATE(1254), 1, - aux_sym_global_aspect_definition_repeat1, - [49282] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4029), 1, - anon_sym_COMMA, - ACTIONS(4097), 1, - anon_sym_RPAREN, - STATE(1309), 1, - aux_sym_actual_parameter_part_repeat1, - [49295] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3888), 1, - anon_sym_COMMA, - ACTIONS(4099), 1, - anon_sym_RPAREN, - STATE(1250), 1, - aux_sym_record_component_association_list_repeat1, - [49308] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4101), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [49317] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(4103), 1, - anon_sym_SEMI, - STATE(1699), 1, - sym_aspect_specification, - [49330] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3035), 1, - anon_sym_COMMA, - ACTIONS(4105), 1, - anon_sym_SEMI, - STATE(1121), 1, - aux_sym__name_list_repeat1, - [49343] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4107), 1, - anon_sym_SEMI, - ACTIONS(4109), 1, - aux_sym_package_specification_token2, - ACTIONS(4111), 1, - aux_sym_expression_token3, - [49356] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(4113), 1, - anon_sym_SEMI, - STATE(1774), 1, - sym_aspect_specification, - [49369] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(4115), 1, - anon_sym_SEMI, - STATE(1704), 1, - sym_aspect_specification, - [49382] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1798), 1, - anon_sym_EQ_GT, - ACTIONS(1800), 1, - anon_sym_PIPE, - STATE(1357), 1, - aux_sym_discriminant_association_repeat1, - [49395] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(4117), 1, - anon_sym_SEMI, - STATE(2000), 1, - sym_aspect_specification, - [49408] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4119), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [49417] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1954), 1, - anon_sym_COLON, - ACTIONS(1968), 1, - anon_sym_COMMA, - STATE(1308), 1, - aux_sym__defining_identifier_list_repeat1, - [49430] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4121), 1, - anon_sym_COMMA, - ACTIONS(4124), 1, - anon_sym_RPAREN, - STATE(1354), 1, - aux_sym_record_component_association_list_repeat2, - [49443] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(3317), 1, - anon_sym_SEMI, - STATE(1716), 1, - sym_aspect_specification, - [49456] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4126), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [49465] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1800), 1, - anon_sym_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ_GT, - STATE(1294), 1, - aux_sym_discriminant_association_repeat1, - [49478] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3982), 1, - anon_sym_COMMA, - ACTIONS(4130), 1, - anon_sym_RPAREN, - STATE(1289), 1, + STATE(1298), 1, aux_sym__enumeration_literal_list_repeat1, - [49491] = 3, + [48983] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3993), 1, - sym_identifier, - STATE(1997), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - [49502] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, + ACTIONS(2306), 1, aux_sym_with_clause_token2, - ACTIONS(4132), 1, + ACTIONS(4053), 1, anon_sym_SEMI, - STATE(1633), 1, + STATE(1576), 1, sym_aspect_specification, - [49515] = 4, + [48996] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, + ACTIONS(2306), 1, aux_sym_with_clause_token2, - ACTIONS(4134), 1, + ACTIONS(4055), 1, anon_sym_SEMI, - STATE(1679), 1, + STATE(2004), 1, sym_aspect_specification, - [49528] = 2, + [49009] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4136), 3, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - [49537] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(4138), 1, - anon_sym_SEMI, - STATE(1632), 1, - sym_aspect_specification, - [49550] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3547), 3, + ACTIONS(2044), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [49559] = 2, + ACTIONS(4057), 1, + anon_sym_COLON, + STATE(1322), 1, + aux_sym__defining_identifier_list_repeat1, + [49022] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4140), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [49568] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_with_clause_token2, - ACTIONS(4142), 1, - aux_sym_package_specification_token2, - STATE(1943), 1, - sym_aspect_specification, - [49581] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4144), 1, - anon_sym_EQ_GT, - ACTIONS(4146), 1, - anon_sym_PIPE, - STATE(1367), 1, - aux_sym_discrete_choice_list_repeat1, - [49594] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4149), 3, + ACTIONS(4059), 3, aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_entry_declaration_token1, - [49603] = 2, + [49031] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4151), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [49612] = 4, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4061), 1, + anon_sym_SEMI, + STATE(1590), 1, + sym_aspect_specification, + [49044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4048), 1, - anon_sym_COMMA, - ACTIONS(4153), 1, - anon_sym_RPAREN, - STATE(1306), 1, - aux_sym__discrete_subtype_definition_list_repeat1, - [49625] = 4, + ACTIONS(3599), 1, + aux_sym_iterator_filter_token1, + STATE(1132), 2, + sym_exception_handler, + aux_sym_handled_sequence_of_statements_repeat1, + [49055] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3632), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [49064] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(504), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(4063), 1, + anon_sym_LPAREN, + STATE(1976), 1, + sym_iterated_element_association, + [49077] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + sym_identifier, + STATE(1420), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [49088] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4065), 1, + anon_sym_SEMI, + STATE(1577), 1, + sym_aspect_specification, + [49101] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4067), 1, + anon_sym_SEMI, + STATE(1594), 1, + sym_aspect_specification, + [49114] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3557), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [49123] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4069), 1, + anon_sym_SEMI, + STATE(1695), 1, + sym_aspect_specification, + [49136] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4071), 1, + anon_sym_SEMI, + STATE(1851), 1, + sym_aspect_specification, + [49149] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1890), 1, + aux_sym_attribute_designator_token1, + STATE(1202), 2, + sym_access_to_subprogram_definition, + sym_access_to_object_definition, + [49160] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4073), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49169] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4075), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49178] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4077), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49187] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4079), 1, + anon_sym_SEMI, + STATE(2033), 1, + sym_aspect_specification, + [49200] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4081), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49209] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4083), 1, + anon_sym_SEMI, + STATE(1627), 1, + sym_aspect_specification, + [49222] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4085), 1, + anon_sym_SEMI, + STATE(1810), 1, + sym_aspect_specification, + [49235] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4087), 1, + anon_sym_SEMI, + STATE(1708), 1, + sym_aspect_specification, + [49248] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4089), 1, anon_sym_COMMA, - ACTIONS(4155), 1, - anon_sym_RPAREN, - STATE(1290), 1, - aux_sym__index_subtype_definition_list_repeat1, - [49638] = 2, + ACTIONS(4092), 1, + anon_sym_COLON, + STATE(1322), 1, + aux_sym__defining_identifier_list_repeat1, + [49261] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3558), 3, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4094), 1, + aux_sym_package_specification_token2, + STATE(1846), 1, + sym_aspect_specification, + [49274] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3133), 1, + aux_sym_chunk_specification_token1, + ACTIONS(3138), 1, + anon_sym_COLON, + ACTIONS(3140), 1, + aux_sym_iterator_specification_token1, + [49287] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4096), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49296] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4098), 1, + anon_sym_SEMI, + STATE(1580), 1, + sym_aspect_specification, + [49309] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4100), 1, + anon_sym_SEMI, + STATE(1865), 1, + sym_aspect_specification, + [49322] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4102), 1, + anon_sym_COMMA, + ACTIONS(4105), 1, + anon_sym_RPAREN, + STATE(1328), 1, + aux_sym_discriminant_constraint_repeat1, + [49335] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4107), 1, + anon_sym_SEMI, + STATE(2046), 1, + sym_aspect_specification, + [49348] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + sym_identifier, + STATE(1677), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [49359] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4109), 1, + anon_sym_SEMI, + STATE(1581), 1, + sym_aspect_specification, + [49372] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ_GT, + STATE(1237), 1, + aux_sym_discriminant_association_repeat1, + [49385] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4113), 3, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + [49394] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3117), 1, + anon_sym_COMMA, + ACTIONS(4115), 1, + anon_sym_SEMI, + STATE(1101), 1, + aux_sym__name_list_repeat1, + [49407] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4117), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [49416] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4119), 1, + anon_sym_COMMA, + ACTIONS(4122), 1, + anon_sym_RPAREN, + STATE(1336), 1, + aux_sym_case_expression_repeat1, + [49429] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_COMMA, + ACTIONS(4124), 1, + anon_sym_RPAREN, + STATE(1269), 1, + aux_sym_positional_array_aggregate_repeat1, + [49442] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4034), 1, + anon_sym_COMMA, + ACTIONS(4126), 1, + anon_sym_RPAREN, + STATE(1291), 1, + aux_sym_record_component_association_list_repeat2, + [49455] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4128), 1, + sym_identifier, + ACTIONS(4130), 1, + aux_sym_use_clause_token2, + ACTIONS(4132), 1, + aux_sym_package_body_token1, + [49468] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4134), 1, + anon_sym_COMMA, + ACTIONS(4136), 1, + anon_sym_RPAREN, + STATE(1349), 1, + aux_sym_pragma_g_repeat1, + [49481] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4138), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [49490] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4140), 1, + anon_sym_SEMI, + STATE(1616), 1, + sym_aspect_specification, + [49503] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4142), 1, + anon_sym_SEMI, + STATE(1617), 1, + sym_aspect_specification, + [49516] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4144), 1, + anon_sym_SEMI, + STATE(1603), 1, + sym_aspect_specification, + [49529] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4146), 1, + aux_sym_package_specification_token2, + STATE(1955), 1, + sym_aspect_specification, + [49542] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4148), 1, + anon_sym_SEMI, + STATE(1872), 1, + sym_aspect_specification, + [49555] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4138), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [49564] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4150), 1, + aux_sym_package_specification_token2, + STATE(1690), 1, + sym_aspect_specification, + [49577] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4152), 1, + anon_sym_COMMA, + ACTIONS(4155), 1, + anon_sym_RPAREN, + STATE(1349), 1, + aux_sym_pragma_g_repeat1, + [49590] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4157), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [49647] = 2, + [49599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 2, - aux_sym_iterator_filter_token1, - aux_sym_with_clause_token2, - [49655] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4159), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [49663] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4144), 2, + ACTIONS(4159), 3, + aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, - anon_sym_PIPE, - [49671] = 3, + aux_sym_loop_statement_token1, + [49608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3551), 1, - anon_sym_SEMI, - ACTIONS(3553), 1, - aux_sym_package_specification_token2, - [49681] = 2, + ACTIONS(3565), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(4161), 1, + aux_sym_attribute_designator_token3, + STATE(1468), 1, + sym_real_range_specification, + [49621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4161), 2, - anon_sym_SEMI, + ACTIONS(3559), 1, + aux_sym_expression_token2, + ACTIONS(4163), 2, + aux_sym_expression_token3, + aux_sym_expression_token4, + [49632] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, aux_sym_with_clause_token2, - [49689] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4163), 1, - sym_identifier, ACTIONS(4165), 1, anon_sym_SEMI, - [49699] = 3, + STATE(2031), 1, + sym_aspect_specification, + [49645] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - aux_sym_package_specification_token3, - ACTIONS(4169), 1, - aux_sym_exception_declaration_token1, - [49709] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4171), 2, - anon_sym_SEMI, + ACTIONS(2306), 1, aux_sym_with_clause_token2, - [49717] = 3, + ACTIONS(3405), 1, + anon_sym_SEMI, + STATE(1805), 1, + sym_aspect_specification, + [49658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2720), 1, - anon_sym_LPAREN, - STATE(1373), 1, - sym_formal_part, - [49727] = 3, + ACTIONS(4167), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [49667] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(4169), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [49676] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4171), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [49685] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, ACTIONS(4173), 1, + anon_sym_SEMI, + STATE(1589), 1, + sym_aspect_specification, + [49698] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3808), 1, anon_sym_COMMA, ACTIONS(4175), 1, anon_sym_RPAREN, - [49737] = 3, + STATE(1203), 1, + aux_sym_global_aspect_definition_repeat1, + [49711] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 1, - aux_sym_package_specification_token3, - ACTIONS(4180), 1, - aux_sym_subprogram_body_token1, - [49747] = 3, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4177), 1, + anon_sym_SEMI, + STATE(1924), 1, + sym_aspect_specification, + [49724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, + ACTIONS(4179), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49733] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4181), 1, sym_identifier, - ACTIONS(4184), 1, - anon_sym_SEMI, - [49757] = 3, + ACTIONS(4183), 1, + aux_sym_use_clause_token2, + ACTIONS(4185), 1, + aux_sym_package_body_token1, + [49746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, - sym_identifier, - ACTIONS(4188), 1, - anon_sym_SEMI, - [49767] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4190), 2, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - [49775] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4192), 1, - anon_sym_SEMI, - ACTIONS(4194), 1, - aux_sym_accept_statement_token2, - [49785] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4196), 1, - sym_identifier, - ACTIONS(4198), 1, - anon_sym_SEMI, - [49795] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4124), 2, + STATE(1101), 1, + aux_sym__name_list_repeat1, + ACTIONS(3956), 2, anon_sym_COMMA, anon_sym_RPAREN, - [49803] = 2, + [49757] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4200), 2, + ACTIONS(4187), 1, + anon_sym_COMMA, + ACTIONS(4190), 1, anon_sym_RPAREN, - anon_sym_SEMI, - [49811] = 2, + STATE(1365), 1, + aux_sym_index_constraint_repeat1, + [49770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4202), 2, + ACTIONS(4192), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49779] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4194), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [49788] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3958), 1, + anon_sym_COMMA, + ACTIONS(4196), 1, + anon_sym_RPAREN, + STATE(1336), 1, + aux_sym_case_expression_repeat1, + [49801] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4198), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49810] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4200), 1, + anon_sym_SEMI, + STATE(1664), 1, + sym_aspect_specification, + [49823] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4202), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [49832] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4204), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49841] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4206), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49850] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4208), 3, sym_identifier, sym_string_literal, - [49819] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4204), 1, - sym_identifier, - ACTIONS(4206), 1, - anon_sym_SEMI, - [49829] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4208), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [49837] = 3, + sym_character_literal, + [49859] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4210), 1, - sym_identifier, - ACTIONS(4212), 1, - anon_sym_SEMI, - [49847] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4214), 1, - aux_sym_chunk_specification_token1, - ACTIONS(4216), 1, - aux_sym_iterator_specification_token1, - [49857] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3655), 1, anon_sym_COMMA, - ACTIONS(3657), 1, + ACTIONS(4213), 1, anon_sym_RPAREN, - [49867] = 2, + STATE(1375), 1, + aux_sym_global_aspect_definition_repeat1, + [49872] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4218), 2, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4215), 1, + anon_sym_SEMI, + STATE(2001), 1, + sym_aspect_specification, + [49885] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3833), 1, + anon_sym_SEMI, + ACTIONS(4217), 1, + anon_sym_RPAREN, + STATE(1212), 1, + aux_sym__parameter_specification_list_repeat1, + [49898] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4219), 1, + anon_sym_SEMI, + STATE(1815), 1, + sym_aspect_specification, + [49911] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3253), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3526), 1, + aux_sym_allocator_token1, + ACTIONS(3537), 1, + aux_sym_compilation_unit_token1, + [49924] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4221), 1, + aux_sym_package_specification_token2, + STATE(1820), 1, + sym_aspect_specification, + [49937] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4223), 3, anon_sym_SEMI, aux_sym_with_clause_token2, - [49875] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3772), 1, - sym_identifier, - ACTIONS(3774), 1, - aux_sym_use_clause_token2, - [49885] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4220), 1, - sym_identifier, - ACTIONS(4222), 1, - anon_sym_SEMI, - [49895] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2377), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [49903] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4224), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [49911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4226), 1, - anon_sym_LPAREN, - ACTIONS(4228), 1, - anon_sym_SEMI, - [49921] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4230), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [49929] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4230), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [49937] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3812), 1, - sym_identifier, - ACTIONS(3814), 1, - aux_sym_use_clause_token2, - [49947] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4232), 1, - aux_sym_iterator_filter_token1, - STATE(1244), 1, - sym_case_expression_alternative, - [49957] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4234), 1, - anon_sym_SEMI, - ACTIONS(4236), 1, - aux_sym_accept_statement_token2, - [49967] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3995), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [49975] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4238), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [49983] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4240), 1, - anon_sym_COMMA, - ACTIONS(4242), 1, - anon_sym_RPAREN, - [49993] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4245), 1, - aux_sym_with_clause_token2, - STATE(1397), 1, - sym_record_extension_part, - [50003] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4247), 1, aux_sym_expression_token3, + [49946] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4225), 1, + anon_sym_SEMI, + STATE(1876), 1, + sym_aspect_specification, + [49959] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(504), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(580), 1, + aux_sym_value_sequence_token1, + STATE(2041), 1, + sym_iterated_element_association, + [49972] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4007), 1, + anon_sym_COMMA, + ACTIONS(4227), 1, + anon_sym_RPAREN, + STATE(1280), 1, + aux_sym__enumeration_literal_list_repeat1, + [49985] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4229), 1, + anon_sym_SEMI, + STATE(1837), 1, + sym_aspect_specification, + [49998] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4134), 1, + anon_sym_COMMA, + ACTIONS(4231), 1, + anon_sym_RPAREN, + STATE(1340), 1, + aux_sym_pragma_g_repeat1, + [50011] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3738), 1, + aux_sym_iterator_filter_token1, + STATE(1178), 2, + sym_case_statement_alternative, + aux_sym_case_statement_repeat1, + [50022] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3950), 1, + anon_sym_SEMI, + ACTIONS(4233), 1, + anon_sym_RPAREN, + STATE(1289), 1, + aux_sym_discriminant_specification_list_repeat1, + [50035] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3376), 1, + sym_identifier, + STATE(1537), 1, + sym_discriminant_specification, + STATE(1859), 1, + sym__defining_identifier_list, + [50048] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4235), 3, + anon_sym_SEMI, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + [50057] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3975), 1, + anon_sym_COMMA, + ACTIONS(4237), 1, + anon_sym_RPAREN, + STATE(1268), 1, + aux_sym_record_component_association_list_repeat1, + [50070] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3844), 1, + anon_sym_COMMA, + ACTIONS(4239), 1, + anon_sym_RPAREN, + STATE(1267), 1, + aux_sym__discrete_subtype_definition_list_repeat1, + [50083] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3997), 1, + anon_sym_PIPE, + ACTIONS(4241), 1, + anon_sym_EQ_GT, + STATE(1276), 1, + aux_sym_discrete_choice_list_repeat1, + [50096] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2024), 1, + anon_sym_COLON, + ACTIONS(2044), 1, + anon_sym_COMMA, + STATE(1301), 1, + aux_sym__defining_identifier_list_repeat1, + [50109] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(4243), 1, + anon_sym_SEMI, + STATE(1867), 1, + sym_aspect_specification, + [50122] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3818), 1, + anon_sym_COMMA, + ACTIONS(4245), 1, + anon_sym_RPAREN, + STATE(1253), 1, + aux_sym__index_subtype_definition_list_repeat1, + [50135] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + aux_sym_with_clause_token2, + ACTIONS(3403), 1, + anon_sym_SEMI, + STATE(1595), 1, + sym_aspect_specification, + [50148] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4247), 3, + aux_sym_terminate_alternative_token1, + aux_sym_accept_statement_token1, + aux_sym_delay_until_statement_token1, + [50157] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(4249), 1, - aux_sym_expression_token4, - [50013] = 3, - ACTIONS(3), 1, - sym_comment, + sym_identifier, ACTIONS(4251), 1, - sym_identifier, + anon_sym_SEMI, + [50167] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(4253), 1, - anon_sym_SEMI, - [50023] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4255), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50031] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4077), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50039] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50047] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4259), 1, sym_identifier, - ACTIONS(4261), 1, + ACTIONS(4255), 1, anon_sym_SEMI, - [50057] = 2, + [50177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4263), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50065] = 3, + ACTIONS(4257), 1, + sym_identifier, + ACTIONS(4259), 1, + anon_sym_SEMI, + [50187] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4261), 1, + sym_identifier, + ACTIONS(4263), 1, + anon_sym_SEMI, + [50197] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4265), 1, sym_identifier, ACTIONS(4267), 1, anon_sym_SEMI, - [50075] = 2, + [50207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4269), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [50083] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4271), 1, + ACTIONS(4269), 1, sym_identifier, + ACTIONS(4271), 1, + anon_sym_SEMI, + [50217] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(4273), 1, - anon_sym_SEMI, - [50093] = 2, + aux_sym_package_specification_token3, + ACTIONS(4275), 1, + aux_sym_exception_declaration_token1, + [50227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4275), 2, + ACTIONS(4277), 2, + anon_sym_RPAREN, anon_sym_SEMI, - aux_sym_with_clause_token2, - [50101] = 3, + [50235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4277), 1, - anon_sym_SEMI, ACTIONS(4279), 1, - aux_sym_package_specification_token2, - [50111] = 2, + sym_identifier, + ACTIONS(4281), 1, + anon_sym_SEMI, + [50245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4281), 2, + ACTIONS(4283), 1, + anon_sym_LPAREN, + ACTIONS(4285), 1, anon_sym_SEMI, + [50255] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4287), 1, + aux_sym_compilation_unit_token1, + ACTIONS(4289), 1, aux_sym_with_clause_token2, - [50119] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4037), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [50127] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4283), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [50135] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4285), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50143] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4287), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50151] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4289), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [50159] = 3, + [50265] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4291), 1, - aux_sym_compilation_unit_token1, + anon_sym_SEMI, ACTIONS(4293), 1, - aux_sym_with_clause_token1, - [50169] = 3, + aux_sym_accept_statement_token2, + [50275] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4295), 1, - sym_identifier, + aux_sym_expression_token3, ACTIONS(4297), 1, - anon_sym_SEMI, - [50179] = 2, + aux_sym_expression_token4, + [50285] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4299), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [50187] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2345), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2347), 1, - aux_sym_access_to_subprogram_definition_token3, - [50197] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3989), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50205] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4301), 1, - anon_sym_SEMI, - ACTIONS(4303), 1, - aux_sym_accept_statement_token2, - [50215] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4305), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [50223] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(394), 1, + aux_sym_iterator_filter_token1, aux_sym_package_specification_token3, - ACTIONS(396), 1, - aux_sym_subprogram_body_token1, - [50233] = 3, + [50293] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4301), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [50301] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4303), 1, + sym_identifier, + ACTIONS(4305), 1, + anon_sym_SEMI, + [50311] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4307), 1, sym_identifier, - ACTIONS(4309), 1, - anon_sym_SEMI, - [50243] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50251] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4311), 1, - sym_identifier, - STATE(453), 1, + STATE(476), 1, sym_reduction_attribute_designator, - [50261] = 2, + [50321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3647), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [50269] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4313), 1, + ACTIONS(4309), 1, sym_identifier, - ACTIONS(4315), 1, + ACTIONS(4311), 1, anon_sym_SEMI, - [50279] = 2, + [50331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4317), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [50287] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4319), 1, + ACTIONS(3380), 1, anon_sym_SEMI, - ACTIONS(4321), 1, + ACTIONS(3822), 1, aux_sym_package_specification_token2, - [50297] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4323), 1, - aux_sym_with_clause_token2, - STATE(1454), 1, - sym_record_extension_part, - [50307] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4323), 1, - aux_sym_with_clause_token2, - STATE(1397), 1, - sym_record_extension_part, - [50317] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4325), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [50325] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4327), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [50333] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4329), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, [50341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4331), 1, - sym_identifier, - ACTIONS(4333), 1, + ACTIONS(4313), 1, anon_sym_SEMI, + ACTIONS(4315), 1, + aux_sym_accept_statement_token2, [50351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4335), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, + ACTIONS(4092), 2, + anon_sym_COMMA, + anon_sym_COLON, [50359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4337), 1, - aux_sym_with_clause_token2, - STATE(1454), 1, - sym_record_extension_part, + ACTIONS(4317), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(4319), 1, + anon_sym_EQ_GT, [50369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4339), 2, + ACTIONS(3597), 2, anon_sym_RPAREN, anon_sym_SEMI, [50377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4341), 2, + ACTIONS(4321), 2, + anon_sym_RPAREN, anon_sym_SEMI, + [50385] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4323), 2, + aux_sym_iterator_filter_token1, aux_sym_with_clause_token2, - [50385] = 3, + [50393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3189), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(3665), 1, - aux_sym_allocator_token1, - [50395] = 3, + ACTIONS(4325), 1, + aux_sym_with_clause_token2, + STATE(1430), 1, + sym_record_extension_part, + [50403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3226), 1, + ACTIONS(4327), 1, anon_sym_SEMI, - ACTIONS(3752), 1, + ACTIONS(4329), 1, aux_sym_package_specification_token2, - [50405] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3913), 2, - anon_sym_COMMA, - anon_sym_COLON, [50413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3778), 1, - anon_sym_COMMA, - ACTIONS(4343), 1, - anon_sym_RBRACK, - [50423] = 3, + ACTIONS(4331), 1, + anon_sym_SEMI, + ACTIONS(4333), 1, + aux_sym_package_specification_token2, + [50423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(4348), 1, - anon_sym_EQ_GT, - [50433] = 3, + ACTIONS(4336), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [50431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3127), 1, - aux_sym_allocator_token1, - ACTIONS(3189), 1, - aux_sym_interface_type_definition_token2, - [50443] = 2, + ACTIONS(4336), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [50439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4350), 2, + ACTIONS(4338), 1, + sym_identifier, + ACTIONS(4340), 1, + anon_sym_SEMI, + [50449] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4342), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [50451] = 2, + [50457] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2900), 1, + aux_sym_result_profile_token1, + STATE(878), 1, + sym_result_profile, + [50467] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4344), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [50475] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3233), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [50483] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4202), 1, + anon_sym_COMMA, + ACTIONS(4346), 1, + anon_sym_RBRACK, + [50493] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3233), 1, + anon_sym_PIPE, + ACTIONS(4349), 1, + anon_sym_EQ_GT, + [50503] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4155), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50511] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4352), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [50459] = 3, + anon_sym_COMMA, + anon_sym_RPAREN, + [50519] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4354), 1, - aux_sym_with_clause_token2, + anon_sym_SEMI, ACTIONS(4356), 1, - aux_sym_expression_token1, - [50469] = 3, + aux_sym_package_specification_token2, + [50529] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4358), 1, sym_identifier, ACTIONS(4360), 1, anon_sym_SEMI, - [50479] = 2, + [50539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4362), 2, + ACTIONS(4362), 1, anon_sym_SEMI, - aux_sym_with_clause_token2, - [50487] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(4364), 1, - sym_identifier, - ACTIONS(4366), 1, - anon_sym_SEMI, - [50497] = 3, + aux_sym_accept_statement_token2, + [50549] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50557] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4368), 1, sym_identifier, ACTIONS(4370), 1, anon_sym_SEMI, - [50507] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3688), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [50515] = 2, + [50567] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4372), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [50523] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4374), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50531] = 3, + [50575] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(4374), 1, + anon_sym_SEMI, ACTIONS(4376), 1, - sym_identifier, - ACTIONS(4378), 1, + aux_sym_package_specification_token2, + [50585] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2421), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2423), 1, + aux_sym_access_to_subprogram_definition_token3, + [50595] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3762), 2, + anon_sym_RPAREN, anon_sym_SEMI, - [50541] = 2, + [50603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 2, - anon_sym_COMMA, + ACTIONS(4378), 2, anon_sym_RPAREN, - [50549] = 2, + anon_sym_SEMI, + [50611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4380), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [50557] = 2, + ACTIONS(2816), 1, + anon_sym_LPAREN, + STATE(1423), 1, + sym_formal_part, + [50621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4382), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50565] = 2, + ACTIONS(4380), 1, + aux_sym_chunk_specification_token1, + ACTIONS(4382), 1, + aux_sym_iterator_specification_token1, + [50631] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4384), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [50573] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4386), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [50581] = 3, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + [50639] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(4386), 1, + aux_sym_compilation_unit_token1, ACTIONS(4388), 1, - sym_identifier, - ACTIONS(4390), 1, - anon_sym_SEMI, - [50591] = 2, + aux_sym_with_clause_token1, + [50649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 2, + ACTIONS(4390), 2, aux_sym_iterator_filter_token1, aux_sym_package_specification_token3, - [50599] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3839), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [50607] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4394), 1, - anon_sym_SEMI, - ACTIONS(4396), 1, - aux_sym_package_specification_token2, - [50617] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4398), 1, - sym_identifier, - ACTIONS(4400), 1, - anon_sym_SEMI, - [50627] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4402), 1, - anon_sym_SEMI, - ACTIONS(4404), 1, - aux_sym_package_specification_token2, - [50637] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4407), 1, - anon_sym_SEMI, - ACTIONS(4409), 1, - aux_sym_package_specification_token2, - [50647] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4323), 1, - aux_sym_with_clause_token2, - STATE(1380), 1, - sym_record_extension_part, [50657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4411), 1, + ACTIONS(4325), 1, + aux_sym_with_clause_token2, + STATE(1457), 1, + sym_record_extension_part, + [50667] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4392), 1, + aux_sym_with_clause_token2, + STATE(1430), 1, + sym_record_extension_part, + [50677] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4181), 1, sym_identifier, - ACTIONS(4413), 1, - anon_sym_SEMI, - [50667] = 2, + ACTIONS(4183), 1, + aux_sym_use_clause_token2, + [50687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [50675] = 2, + ACTIONS(4128), 1, + sym_identifier, + ACTIONS(4130), 1, + aux_sym_use_clause_token2, + [50697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4415), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [50683] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4417), 2, + ACTIONS(4394), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [50691] = 2, + [50705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4419), 2, + ACTIONS(4396), 2, + anon_sym_RPAREN, anon_sym_SEMI, - aux_sym_accept_statement_token2, - [50699] = 2, + [50713] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4398), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [50721] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4400), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [50729] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4051), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50707] = 3, + [50737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4423), 1, - sym_identifier, - ACTIONS(4425), 1, - anon_sym_SEMI, - [50717] = 3, + ACTIONS(3239), 1, + aux_sym_allocator_token1, + ACTIONS(3253), 1, + aux_sym_interface_type_definition_token2, + [50747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4427), 1, - sym_identifier, - ACTIONS(4429), 1, - anon_sym_SEMI, - [50727] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4431), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(4433), 1, - aux_sym_access_to_subprogram_definition_token3, - [50737] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4435), 2, + ACTIONS(4402), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [50745] = 2, + [50755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4437), 2, + ACTIONS(4213), 2, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - [50753] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3017), 1, - aux_sym_iterator_filter_token1, - STATE(1715), 1, - sym_entry_barrier, [50763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 1, + ACTIONS(4404), 1, sym_identifier, - ACTIONS(4441), 1, + ACTIONS(4406), 1, anon_sym_SEMI, [50773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4443), 2, - aux_sym_iterator_filter_token1, - aux_sym_with_clause_token2, - [50781] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4445), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50789] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4447), 1, + ACTIONS(4408), 2, sym_identifier, - ACTIONS(4449), 1, + sym_string_literal, + [50781] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4410), 1, + anon_sym_COMMA, + STATE(1141), 1, + aux_sym_positional_array_aggregate_repeat1, + [50791] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4412), 2, anon_sym_SEMI, + aux_sym_with_clause_token2, [50799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4451), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, + ACTIONS(4414), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, [50807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4453), 1, + ACTIONS(4416), 1, sym_identifier, - ACTIONS(4455), 1, + ACTIONS(4418), 1, anon_sym_SEMI, [50817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4457), 2, - anon_sym_RPAREN, + ACTIONS(4420), 2, anon_sym_SEMI, + aux_sym_with_clause_token2, [50825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4459), 1, - aux_sym_with_clause_token2, - STATE(1380), 1, - sym_record_extension_part, + ACTIONS(4422), 1, + sym_identifier, + ACTIONS(4424), 1, + anon_sym_SEMI, [50835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4461), 2, + ACTIONS(4426), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [50843] = 2, + [50843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3434), 2, - anon_sym_RPAREN, + ACTIONS(4428), 1, + aux_sym_with_clause_token2, + STATE(1503), 1, + sym_record_extension_part, + [50853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3754), 1, anon_sym_SEMI, - [50851] = 3, + ACTIONS(3756), 1, + aux_sym_package_specification_token2, + [50863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4463), 1, + ACTIONS(4430), 1, sym_identifier, - ACTIONS(4465), 1, + ACTIONS(4432), 1, anon_sym_SEMI, - [50861] = 2, + [50873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3428), 2, + ACTIONS(4434), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50881] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4436), 1, + sym_identifier, + ACTIONS(4438), 1, + anon_sym_SEMI, + [50891] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4440), 1, + sym_identifier, + ACTIONS(4442), 1, + anon_sym_SEMI, + [50901] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4122), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50909] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4444), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50917] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4446), 2, anon_sym_RPAREN, anon_sym_SEMI, - [50869] = 3, + [50925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2793), 1, - aux_sym_result_profile_token1, - STATE(848), 1, - sym_result_profile, - [50879] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3700), 2, + ACTIONS(4448), 2, anon_sym_RPAREN, anon_sym_SEMI, - [50887] = 3, + [50933] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4467), 1, + ACTIONS(4450), 2, + anon_sym_SEMI, aux_sym_with_clause_token2, - ACTIONS(4469), 1, - aux_sym_expression_token1, - [50897] = 3, + [50941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 1, - anon_sym_PIPE, - ACTIONS(4471), 1, - anon_sym_EQ_GT, - [50907] = 2, + ACTIONS(4452), 1, + aux_sym_with_clause_token2, + ACTIONS(4454), 1, + aux_sym_expression_token1, + [50951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4456), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(4458), 1, + aux_sym_access_to_subprogram_definition_token3, + [50961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(504), 1, + aux_sym_iterated_element_association_token1, + STATE(1564), 1, + sym_iterated_element_association, + [50971] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3804), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [50979] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3204), 1, + aux_sym_iterator_filter_token1, + STATE(1889), 1, + sym_entry_barrier, + [50989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4325), 1, + aux_sym_with_clause_token2, + STATE(1503), 1, + sym_record_extension_part, + [50999] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4460), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(4462), 1, + aux_sym_access_to_subprogram_definition_token3, + [51009] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3880), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [51017] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4464), 1, + sym_identifier, + ACTIONS(4466), 1, + anon_sym_SEMI, + [51027] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4468), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [51035] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4470), 1, + aux_sym_with_clause_token2, + ACTIONS(4472), 1, + aux_sym_expression_token1, + [51045] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4474), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50915] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4476), 1, - sym_identifier, - ACTIONS(4478), 1, anon_sym_SEMI, - [50925] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4480), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(4482), 1, - aux_sym_access_to_subprogram_definition_token3, - [50935] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50943] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4240), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50951] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4484), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [50959] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4486), 1, - anon_sym_COMMA, - STATE(1116), 1, - aux_sym_positional_array_aggregate_repeat1, - [50969] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4488), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3017), 1, - aux_sym_iterator_filter_token1, - STATE(1850), 1, - sym_entry_barrier, - [50987] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3155), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [50995] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4232), 1, - aux_sym_iterator_filter_token1, - STATE(1472), 1, - sym_case_expression_alternative, - [51005] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3735), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51013] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4490), 1, - aux_sym_compilation_unit_token1, - ACTIONS(4492), 1, aux_sym_with_clause_token2, - [51023] = 3, + [51053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - aux_sym_iterated_element_association_token1, - STATE(1683), 1, - sym_iterated_element_association, - [51033] = 3, + ACTIONS(4476), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [51061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3297), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3419), 1, - aux_sym_allocator_token1, - [51043] = 2, + ACTIONS(4478), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [51069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4494), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51051] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3742), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51059] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3884), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51067] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3698), 1, - aux_sym_compilation_unit_token1, - ACTIONS(4497), 1, - aux_sym_with_clause_token1, + ACTIONS(4480), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, [51077] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4499), 2, + ACTIONS(4482), 2, aux_sym_iterator_filter_token1, aux_sym_package_specification_token3, [51085] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4501), 2, + ACTIONS(3839), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [51093] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2492), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [51101] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4484), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [51109] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4486), 1, + sym_identifier, + ACTIONS(4488), 1, + anon_sym_SEMI, + [51119] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3663), 1, + aux_sym_allocator_token1, + [51129] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4490), 1, + aux_sym_with_clause_token2, + STATE(1457), 1, + sym_record_extension_part, + [51139] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4492), 1, + sym_identifier, + ACTIONS(4494), 1, + anon_sym_SEMI, + [51149] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4496), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [51157] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4498), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [51165] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4500), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [51173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4502), 1, + sym_identifier, + ACTIONS(4504), 1, + anon_sym_SEMI, + [51183] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4506), 1, + sym_identifier, + ACTIONS(4508), 1, + anon_sym_SEMI, + [51193] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4510), 1, + sym_identifier, + ACTIONS(4512), 1, + anon_sym_SEMI, + [51203] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4514), 2, anon_sym_COMMA, anon_sym_RPAREN, - [51093] = 3, + [51211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4503), 1, - aux_sym_with_clause_token2, - ACTIONS(4505), 1, - aux_sym_expression_token1, - [51103] = 2, + ACTIONS(4516), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4507), 1, - aux_sym_result_profile_token1, - [51110] = 2, + ACTIONS(3747), 1, + aux_sym_compilation_unit_token1, + ACTIONS(4518), 1, + aux_sym_with_clause_token1, + [51229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4509), 1, - anon_sym_EQ_GT, - [51117] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4511), 1, - aux_sym_gnatprep_declarative_if_statement_token4, - [51124] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4513), 1, - anon_sym_SEMI, - [51131] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4515), 1, - aux_sym_expression_token2, - [51138] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4517), 1, - aux_sym_if_expression_token1, - [51145] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4519), 1, - anon_sym_RPAREN, - [51152] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4521), 1, - anon_sym_RPAREN, - [51159] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4523), 1, - anon_sym_RBRACK, - [51166] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4523), 1, - anon_sym_RPAREN, - [51173] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4525), 1, - anon_sym_SEMI, - [51180] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4455), 1, - anon_sym_SEMI, - [51187] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4527), 1, - anon_sym_SEMI, - [51194] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4529), 1, - anon_sym_SEMI, - [51201] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4531), 1, - aux_sym_package_specification_token2, - [51208] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4533), 1, - anon_sym_SEMI, - [51215] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4535), 1, - aux_sym_with_clause_token2, - [51222] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4537), 1, - aux_sym_with_clause_token2, - [51229] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4539), 1, - anon_sym_SEMI, - [51236] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4413), 1, - anon_sym_SEMI, - [51243] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4541), 1, - anon_sym_SEMI, - [51250] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4543), 1, + ACTIONS(4520), 1, + anon_sym_COMMA, + ACTIONS(4522), 1, + anon_sym_RPAREN, + [51239] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3204), 1, + aux_sym_iterator_filter_token1, + STATE(1746), 1, + sym_entry_barrier, + [51249] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3885), 2, anon_sym_EQ_GT, + anon_sym_PIPE, [51257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4409), 1, - aux_sym_package_specification_token2, - [51264] = 2, + ACTIONS(4525), 2, + aux_sym_iterator_filter_token1, + aux_sym_with_clause_token2, + [51265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4545), 1, - aux_sym_package_specification_token3, - [51271] = 2, + ACTIONS(4527), 1, + aux_sym_with_clause_token2, + ACTIONS(4529), 1, + aux_sym_expression_token1, + [51275] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4547), 1, - aux_sym_compilation_unit_token1, - [51278] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4549), 1, - aux_sym_compilation_unit_token1, - [51285] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3902), 1, + ACTIONS(4531), 2, anon_sym_SEMI, - [51292] = 2, + aux_sym_with_clause_token2, + [51283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4551), 1, - anon_sym_SEMI, - [51299] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4553), 1, - anon_sym_DOT_DOT, - [51306] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4555), 1, + ACTIONS(352), 1, aux_sym_package_specification_token3, + ACTIONS(354), 1, + aux_sym_subprogram_body_token1, + [51293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4533), 1, + sym_identifier, + ACTIONS(4535), 1, + anon_sym_SEMI, + [51303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3676), 1, + anon_sym_COMMA, + ACTIONS(3678), 1, + anon_sym_RPAREN, [51313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4557), 1, - aux_sym_record_component_association_list_token1, - [51320] = 2, + ACTIONS(4537), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4559), 1, + ACTIONS(4539), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [51329] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3696), 2, + anon_sym_RPAREN, anon_sym_SEMI, - [51327] = 2, + [51337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4561), 1, - aux_sym_range_attribute_designator_token1, - [51334] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4563), 1, + ACTIONS(4541), 2, anon_sym_SEMI, - [51341] = 2, + aux_sym_with_clause_token2, + [51345] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4565), 1, - anon_sym_LT_GT, - [51348] = 2, + ACTIONS(3689), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [51353] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4567), 1, - anon_sym_EQ_GT, - [51355] = 2, + ACTIONS(3829), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4569), 1, - aux_sym_compilation_unit_token1, - [51362] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4571), 1, - sym_tick, + ACTIONS(4543), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, [51369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4573), 1, - anon_sym_SEMI, - [51376] = 2, + ACTIONS(3871), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [51377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4575), 1, + ACTIONS(4545), 1, + anon_sym_COMMA, + ACTIONS(4547), 1, + anon_sym_RPAREN, + [51387] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3936), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51395] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4550), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [51403] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4027), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [51411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4552), 1, + sym_identifier, + ACTIONS(4554), 1, + anon_sym_SEMI, + [51421] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4556), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51429] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4558), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51437] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4560), 1, + anon_sym_SEMI, + ACTIONS(4562), 1, + aux_sym_package_specification_token2, + [51447] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4564), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [51455] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4566), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3253), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3526), 1, + aux_sym_allocator_token1, + [51473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4568), 1, aux_sym_package_specification_token3, - [51383] = 2, + ACTIONS(4570), 1, + aux_sym_subprogram_body_token1, + [51483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4577), 1, - aux_sym_compilation_unit_token1, - [51390] = 2, + ACTIONS(4105), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4579), 1, + ACTIONS(4520), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51499] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 2, anon_sym_SEMI, - [51397] = 2, + aux_sym_accept_statement_token2, + [51507] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 1, + ACTIONS(4574), 2, anon_sym_SEMI, - [51404] = 2, + aux_sym_accept_statement_token2, + [51515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4583), 1, + ACTIONS(4576), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51523] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4578), 1, + sym_identifier, + ACTIONS(4580), 1, anon_sym_SEMI, - [51411] = 2, + [51533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4585), 1, - aux_sym_iterator_specification_token1, - [51418] = 2, + ACTIONS(4582), 1, + aux_sym_iterator_filter_token1, + STATE(1262), 1, + sym_case_expression_alternative, + [51543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4587), 1, - aux_sym_iterator_specification_token1, - [51425] = 2, + ACTIONS(4584), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4589), 1, - aux_sym_iterated_element_association_token2, - [51432] = 2, + ACTIONS(3915), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51559] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4582), 1, + aux_sym_iterator_filter_token1, + STATE(1480), 1, + sym_case_expression_alternative, + [51569] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4587), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51577] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4589), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [51585] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3867), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51593] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4591), 1, - aux_sym_iterated_element_association_token2, - [51439] = 2, - ACTIONS(3), 1, - sym_comment, + sym_identifier, ACTIONS(4593), 1, anon_sym_SEMI, - [51446] = 2, + [51603] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4595), 1, - anon_sym_LT_GT, - [51453] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4132), 1, - anon_sym_SEMI, - [51460] = 2, - ACTIONS(3), 1, - sym_comment, + sym_identifier, ACTIONS(4597), 1, anon_sym_SEMI, - [51467] = 2, + [51613] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4599), 1, - aux_sym_if_expression_token1, - [51474] = 2, + anon_sym_RPAREN, + [51620] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4601), 1, anon_sym_SEMI, - [51481] = 2, + [51627] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4603), 1, - aux_sym_gnatprep_declarative_if_statement_token4, - [51488] = 2, + anon_sym_EQ_GT, + [51634] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4605), 1, - anon_sym_SEMI, - [51495] = 2, + anon_sym_RBRACK, + [51641] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4607), 1, - anon_sym_SEMI, - [51502] = 2, + anon_sym_RPAREN, + [51648] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4609), 1, - aux_sym_expression_token2, - [51509] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4113), 1, anon_sym_SEMI, - [51516] = 2, + [51655] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4611), 1, anon_sym_SEMI, - [51523] = 2, + [51662] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4613), 1, - aux_sym_package_specification_token3, - [51530] = 2, + anon_sym_RPAREN, + [51669] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4615), 1, - anon_sym_SEMI, - [51537] = 2, + anon_sym_RPAREN, + [51676] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4617), 1, - aux_sym_if_expression_token1, - [51544] = 2, + anon_sym_SEMI, + [51683] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4619), 1, - aux_sym_asynchronous_select_token1, - [51551] = 2, + aux_sym_subprogram_body_token1, + [51690] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4621), 1, anon_sym_SEMI, - [51558] = 2, + [51697] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4623), 1, - aux_sym_package_specification_token3, - [51565] = 2, + anon_sym_SEMI, + [51704] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4625), 1, - aux_sym_asynchronous_select_token1, - [51572] = 2, + aux_sym_package_specification_token3, + [51711] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4615), 1, + anon_sym_RBRACK, + [51718] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4627), 1, anon_sym_SEMI, - [51579] = 2, + [51725] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4629), 1, anon_sym_SEMI, - [51586] = 2, + [51732] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4631), 1, anon_sym_SEMI, - [51593] = 2, + [51739] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4633), 1, anon_sym_SEMI, - [51600] = 2, + [51746] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4635), 1, anon_sym_SEMI, - [51607] = 2, + [51753] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4637), 1, - aux_sym_if_expression_token1, - [51614] = 2, + anon_sym_SEMI, + [51760] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4639), 1, - aux_sym_asynchronous_select_token1, - [51621] = 2, + aux_sym_with_clause_token2, + [51767] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4641), 1, - aux_sym_package_specification_token3, - [51628] = 2, + anon_sym_RPAREN, + [51774] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4643), 1, - aux_sym_expression_token2, - [51635] = 2, + aux_sym_loop_statement_token1, + [51781] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4645), 1, - aux_sym_package_specification_token3, - [51642] = 2, + anon_sym_SEMI, + [51788] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4647), 1, - anon_sym_SEMI, - [51649] = 2, + aux_sym_package_specification_token3, + [51795] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4649), 1, - anon_sym_SEMI, - [51656] = 2, + aux_sym_package_specification_token3, + [51802] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4651), 1, - anon_sym_SEMI, - [51663] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4060), 1, - anon_sym_SEMI, - [51670] = 2, + anon_sym_RPAREN, + [51809] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4653), 1, - aux_sym_if_expression_token1, - [51677] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4062), 1, anon_sym_SEMI, - [51684] = 2, + [51816] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4655), 1, - aux_sym_gnatprep_declarative_if_statement_token4, - [51691] = 2, + anon_sym_SEMI, + [51823] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4657), 1, anon_sym_SEMI, - [51698] = 2, + [51830] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4659), 1, - anon_sym_SEMI, - [51705] = 2, + anon_sym_RPAREN, + [51837] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4661), 1, - anon_sym_SEMI, - [51712] = 2, + anon_sym_RPAREN, + [51844] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4663), 1, anon_sym_SEMI, - [51719] = 2, + [51851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(3414), 1, anon_sym_SEMI, - [51726] = 2, + [51858] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4665), 1, - aux_sym_iterated_element_association_token2, - [51733] = 2, + anon_sym_SEMI, + [51865] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4667), 1, - aux_sym_iterated_element_association_token2, - [51740] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4291), 1, - aux_sym_compilation_unit_token1, - [51747] = 2, + anon_sym_LT_GT, + [51872] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4669), 1, - aux_sym_allocator_token1, - [51754] = 2, + aux_sym_compilation_unit_token1, + [51879] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4671), 1, - anon_sym_RPAREN, - [51761] = 2, + anon_sym_SEMI, + [51886] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4673), 1, anon_sym_SEMI, - [51768] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3991), 1, - anon_sym_SEMI, - [51775] = 2, + [51893] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4675), 1, - anon_sym_SEMI, - [51782] = 2, + aux_sym_compilation_unit_token1, + [51900] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4677), 1, + aux_sym_if_expression_token1, + [51907] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3892), 1, anon_sym_SEMI, - [51789] = 2, + [51914] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4679), 1, - anon_sym_SEMI, - [51796] = 2, + aux_sym_if_expression_token1, + [51921] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4681), 1, - aux_sym_record_component_association_list_token1, - [51803] = 2, + aux_sym_expression_token2, + [51928] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4683), 1, - anon_sym_RPAREN, - [51810] = 2, + aux_sym_package_specification_token3, + [51935] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4685), 1, - anon_sym_SEMI, - [51817] = 2, + aux_sym_iterated_element_association_token2, + [51942] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4687), 1, - aux_sym_subprogram_body_token1, - [51824] = 2, + aux_sym_iterated_element_association_token2, + [51949] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4689), 1, anon_sym_SEMI, - [51831] = 2, + [51956] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4691), 1, - aux_sym_package_specification_token3, - [51838] = 2, + anon_sym_SEMI, + [51963] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4693), 1, - anon_sym_SEMI, - [51845] = 2, + aux_sym_asynchronous_select_token1, + [51970] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4695), 1, - anon_sym_SEMI, - [51852] = 2, + aux_sym_package_specification_token3, + [51977] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4697), 1, anon_sym_SEMI, - [51859] = 2, + [51984] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4699), 1, - anon_sym_SEMI, - [51866] = 2, + aux_sym_package_specification_token3, + [51991] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4701), 1, - aux_sym_with_clause_token2, - [51873] = 2, + aux_sym_asynchronous_select_token1, + [51998] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4703), 1, - aux_sym_with_clause_token2, - [51880] = 2, + anon_sym_SEMI, + [52005] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4705), 1, anon_sym_SEMI, - [51887] = 2, + [52012] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4707), 1, + aux_sym_asynchronous_select_token1, + [52019] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4085), 1, anon_sym_SEMI, - [51894] = 2, + [52026] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4709), 1, - aux_sym_package_specification_token3, - [51901] = 2, + aux_sym_result_profile_token1, + [52033] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4711), 1, - anon_sym_EQ_GT, - [51908] = 2, + aux_sym_record_component_association_list_token1, + [52040] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4713), 1, - anon_sym_RBRACK, - [51915] = 2, + aux_sym_if_expression_token1, + [52047] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4715), 1, - anon_sym_EQ_GT, - [51922] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4713), 1, - anon_sym_RPAREN, - [51929] = 2, + aux_sym_if_expression_token1, + [52054] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4717), 1, - anon_sym_RPAREN, - [51936] = 2, + anon_sym_SEMI, + [52061] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4719), 1, - anon_sym_RPAREN, - [51943] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4188), 1, anon_sym_SEMI, - [51950] = 2, + [52068] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4721), 1, - aux_sym_if_expression_token1, - [51957] = 2, + aux_sym_package_specification_token3, + [52075] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4723), 1, anon_sym_SEMI, - [51964] = 2, + [52082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4449), 1, + ACTIONS(3405), 1, anon_sym_SEMI, - [51971] = 2, + [52089] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4177), 1, + anon_sym_SEMI, + [52096] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4725), 1, - anon_sym_SEMI, - [51978] = 2, + aux_sym_iterated_element_association_token2, + [52103] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4727), 1, - aux_sym_with_clause_token2, - [51985] = 2, + anon_sym_SEMI, + [52110] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4729), 1, - aux_sym_with_clause_token2, - [51992] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4478), 1, anon_sym_SEMI, - [51999] = 2, + [52117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, - aux_sym_package_specification_token2, - [52006] = 2, + ACTIONS(4568), 1, + aux_sym_package_specification_token3, + [52124] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4731), 1, - sym_identifier, - [52013] = 2, + aux_sym_asynchronous_select_token1, + [52131] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4733), 1, - sym_identifier, - [52020] = 2, + aux_sym_package_specification_token3, + [52138] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4735), 1, - anon_sym_SEMI, - [52027] = 2, + anon_sym_LT_GT, + [52145] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4737), 1, - aux_sym_package_specification_token3, - [52034] = 2, + anon_sym_LT_GT, + [52152] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4739), 1, - aux_sym_allocator_token1, - [52041] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3698), 1, - aux_sym_compilation_unit_token1, - [52048] = 2, + anon_sym_LT_GT, + [52159] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4741), 1, - aux_sym_allocator_token1, - [52055] = 2, + anon_sym_SEMI, + [52166] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4743), 1, - anon_sym_SEMI, - [52062] = 2, + anon_sym_LT_GT, + [52173] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4745), 1, - aux_sym_package_specification_token2, - [52069] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3800), 1, - anon_sym_SEMI, - [52076] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4407), 1, - anon_sym_SEMI, - [52083] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(348), 1, - aux_sym_private_type_declaration_token1, - [52090] = 2, + anon_sym_LT_GT, + [52180] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4747), 1, anon_sym_SEMI, - [52097] = 2, + [52187] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4749), 1, anon_sym_SEMI, - [52104] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4178), 1, - aux_sym_package_specification_token3, - [52111] = 2, + [52194] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4751), 1, - anon_sym_SEMI, - [52118] = 2, + aux_sym_if_expression_token1, + [52201] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4753), 1, - aux_sym_package_specification_token3, - [52125] = 2, + aux_sym_if_expression_token1, + [52208] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4755), 1, - aux_sym_record_component_association_list_token1, - [52132] = 2, + aux_sym_allocator_token1, + [52215] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4757), 1, anon_sym_SEMI, - [52139] = 2, + [52222] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4759), 1, - anon_sym_RBRACK, - [52146] = 2, + anon_sym_SEMI, + [52229] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4761), 1, - anon_sym_RPAREN, - [52153] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3894), 1, - anon_sym_SEMI, - [52160] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4763), 1, - anon_sym_SEMI, - [52167] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4765), 1, - anon_sym_SEMI, - [52174] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4767), 1, - anon_sym_SEMI, - [52181] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4769), 1, - aux_sym_subprogram_body_token1, - [52188] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4771), 1, - anon_sym_SEMI, - [52195] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4773), 1, - anon_sym_SEMI, - [52202] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3766), 1, - anon_sym_SEMI, - [52209] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4775), 1, - aux_sym_compilation_unit_token1, - [52216] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4777), 1, - aux_sym_package_specification_token3, - [52223] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4779), 1, - anon_sym_SEMI, - [52230] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4781), 1, - aux_sym_with_clause_token2, - [52237] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4783), 1, - anon_sym_SEMI, - [52244] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4785), 1, - anon_sym_SEMI, - [52251] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4787), 1, - anon_sym_SEMI, - [52258] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4789), 1, - anon_sym_RPAREN, - [52265] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4791), 1, - aux_sym_loop_statement_token1, - [52272] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4793), 1, - aux_sym_package_specification_token3, - [52279] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4795), 1, - anon_sym_RPAREN, - [52286] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4797), 1, - anon_sym_SEMI, - [52293] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4799), 1, - anon_sym_SEMI, - [52300] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4801), 1, - anon_sym_SEMI, - [52307] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4803), 1, - anon_sym_SEMI, - [52314] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4805), 1, - anon_sym_SEMI, - [52321] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4807), 1, - anon_sym_RPAREN, - [52328] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4809), 1, - aux_sym_with_clause_token2, - [52335] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4811), 1, - anon_sym_RPAREN, - [52342] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4813), 1, - sym_identifier, - [52349] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4815), 1, - anon_sym_RPAREN, - [52356] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4817), 1, - aux_sym_package_specification_token2, - [52363] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4819), 1, - aux_sym_package_specification_token2, - [52370] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3350), 1, - anon_sym_SEMI, - [52377] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4821), 1, - anon_sym_EQ_GT, - [52384] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4823), 1, - anon_sym_SEMI, - [52391] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4825), 1, - anon_sym_SEMI, - [52398] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4827), 1, - anon_sym_SEMI, - [52405] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4829), 1, aux_sym_if_expression_token1, - [52412] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4831), 1, - aux_sym_package_specification_token3, - [52419] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4833), 1, - aux_sym_asynchronous_select_token1, - [52426] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4835), 1, - aux_sym_package_specification_token3, - [52433] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4837), 1, - anon_sym_SEMI, - [52440] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4839), 1, - aux_sym_package_specification_token3, - [52447] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4841), 1, - aux_sym_if_expression_token1, - [52454] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4843), 1, - aux_sym_asynchronous_select_token1, - [52461] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4845), 1, - aux_sym_gnatprep_declarative_if_statement_token4, - [52468] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4847), 1, - anon_sym_SEMI, - [52475] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4849), 1, - aux_sym_asynchronous_select_token1, - [52482] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4851), 1, - aux_sym_if_expression_token1, - [52489] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4853), 1, - anon_sym_SEMI, - [52496] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3257), 1, - anon_sym_SEMI, - [52503] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4855), 1, - anon_sym_RPAREN, - [52510] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4857), 1, - aux_sym_expression_token2, - [52517] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3870), 1, - anon_sym_SEMI, - [52524] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4859), 1, - aux_sym_iterated_element_association_token2, - [52531] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4861), 1, - anon_sym_LT_GT, - [52538] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4863), 1, - anon_sym_LT_GT, - [52545] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4865), 1, - anon_sym_RPAREN, - [52552] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4865), 1, - anon_sym_RBRACK, - [52559] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4867), 1, - anon_sym_LT_GT, - [52566] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4869), 1, - anon_sym_SEMI, - [52573] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4871), 1, - anon_sym_SEMI, - [52580] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4873), 1, - anon_sym_SEMI, - [52587] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4875), 1, - anon_sym_LT_GT, - [52594] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - aux_sym_with_clause_token2, - [52601] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4879), 1, - anon_sym_LT_GT, - [52608] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4273), 1, - anon_sym_SEMI, - [52615] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 1, - aux_sym_allocator_token1, - [52622] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(406), 1, - aux_sym_subprogram_body_token1, - [52629] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4883), 1, - aux_sym_package_specification_token3, - [52636] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4277), 1, - anon_sym_SEMI, - [52643] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4885), 1, - anon_sym_SEMI, - [52650] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4887), 1, - anon_sym_SEMI, - [52657] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4889), 1, - aux_sym_with_clause_token2, - [52664] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4891), 1, - anon_sym_SEMI, - [52671] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4893), 1, - aux_sym_compilation_unit_token1, - [52678] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4895), 1, - aux_sym_case_expression_token1, - [52685] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4897), 1, - anon_sym_EQ_GT, - [52692] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4899), 1, - aux_sym_with_clause_token2, - [52699] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4901), 1, - anon_sym_RPAREN, - [52706] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(342), 1, - aux_sym_private_type_declaration_token1, - [52713] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4903), 1, - anon_sym_EQ_GT, - [52720] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4906), 1, - anon_sym_RPAREN, - [52727] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4908), 1, - anon_sym_EQ_GT, - [52734] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4267), 1, - anon_sym_SEMI, - [52741] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4910), 1, - sym_identifier, - [52748] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4912), 1, - aux_sym_package_specification_token2, - [52755] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4914), 1, - anon_sym_SEMI, - [52762] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4916), 1, - anon_sym_SEMI, - [52769] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4918), 1, - aux_sym_with_clause_token2, - [52776] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4920), 1, - anon_sym_SEMI, - [52783] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4922), 1, - anon_sym_SEMI, - [52790] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4309), 1, - anon_sym_SEMI, - [52797] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4924), 1, - anon_sym_EQ_GT, - [52804] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4926), 1, - aux_sym_if_expression_token1, - [52811] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4928), 1, - anon_sym_COLON, - [52818] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4930), 1, - aux_sym_package_body_token1, - [52825] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4932), 1, - anon_sym_SEMI, - [52832] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4934), 1, - aux_sym_package_body_token1, - [52839] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4936), 1, - aux_sym_package_specification_token3, - [52846] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4938), 1, - aux_sym_package_body_token1, - [52853] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3822), 1, - anon_sym_SEMI, - [52860] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4940), 1, - anon_sym_SEMI, - [52867] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4942), 1, - aux_sym_if_expression_token1, - [52874] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3419), 1, - aux_sym_allocator_token1, - [52881] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4944), 1, - aux_sym_allocator_token1, - [52888] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4946), 1, - aux_sym_package_specification_token3, - [52895] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4948), 1, - anon_sym_COLON, - [52902] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4950), 1, - sym_identifier, - [52909] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4952), 1, - aux_sym_component_list_token1, - [52916] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4954), 1, - anon_sym_DOT_DOT, - [52923] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4046), 1, - anon_sym_SEMI, - [52930] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4956), 1, - anon_sym_RPAREN, - [52937] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4958), 1, - anon_sym_SEMI, - [52944] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4960), 1, - anon_sym_SEMI, - [52951] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3226), 1, - anon_sym_SEMI, - [52958] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4962), 1, - aux_sym_package_specification_token3, - [52965] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4964), 1, - aux_sym_attribute_designator_token4, - [52972] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4966), 1, - aux_sym_record_component_association_list_token1, - [52979] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4968), 1, - anon_sym_SEMI, - [52986] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4970), 1, - anon_sym_EQ_GT, - [52993] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4972), 1, - anon_sym_SEMI, - [53000] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4974), 1, - anon_sym_DOT_DOT, - [53007] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4976), 1, - aux_sym__aspect_mark_token1, - [53014] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4978), 1, - anon_sym_SEMI, - [53021] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4980), 1, - aux_sym_package_specification_token3, - [53028] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3980), 1, - anon_sym_SEMI, - [53035] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4008), 1, - anon_sym_SEMI, - [53042] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(408), 1, - aux_sym_subprogram_body_token1, - [53049] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4982), 1, - anon_sym_SEMI, - [53056] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4984), 1, - aux_sym_allocator_token1, - [53063] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4986), 1, - aux_sym_package_specification_token3, - [53070] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4988), 1, - aux_sym_loop_statement_token1, - [53077] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4990), 1, - anon_sym_SEMI, - [53084] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4042), 1, - anon_sym_SEMI, - [53091] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3317), 1, - anon_sym_SEMI, - [53098] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4992), 1, - anon_sym_SEMI, - [53105] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4994), 1, - anon_sym_SEMI, - [53112] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_EQ_GT, - [53119] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4998), 1, - aux_sym_case_expression_token1, - [53126] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5000), 1, - anon_sym_SEMI, - [53133] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, - anon_sym_SEMI, - [53140] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5004), 1, - anon_sym_SEMI, - [53147] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5006), 1, - aux_sym_package_specification_token3, - [53154] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5008), 1, - anon_sym_RPAREN, - [53161] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5010), 1, - anon_sym_SEMI, - [53168] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3411), 1, - aux_sym_package_specification_token3, - [53175] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5012), 1, - aux_sym_with_clause_token2, - [53182] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5014), 1, - anon_sym_SEMI, - [53189] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5016), 1, - anon_sym_SEMI, - [53196] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5018), 1, - aux_sym_compilation_unit_token1, - [53203] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5020), 1, - aux_sym_compilation_unit_token1, - [53210] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5022), 1, - aux_sym_asynchronous_select_token1, - [53217] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5024), 1, - anon_sym_SEMI, - [53224] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5026), 1, - aux_sym_package_specification_token3, - [53231] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5028), 1, - aux_sym_package_specification_token3, - [53238] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3770), 1, - aux_sym_package_specification_token2, - [53245] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5030), 1, - anon_sym_EQ_GT, - [53252] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3726), 1, - anon_sym_RPAREN, - [53259] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5032), 1, - anon_sym_SEMI, - [53266] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5034), 1, - aux_sym_iterated_element_association_token2, - [53273] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5036), 1, - aux_sym_chunk_specification_token1, - [53280] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5038), 1, - anon_sym_SEMI, - [53287] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5040), 1, - aux_sym_package_specification_token2, - [53294] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5042), 1, - anon_sym_SEMI, - [53301] = 2, + [52236] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(416), 1, aux_sym_subprogram_body_token1, - [53308] = 2, + [52243] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(340), 1, + aux_sym_private_type_declaration_token1, + [52250] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4560), 1, + anon_sym_SEMI, + [52257] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4763), 1, + anon_sym_SEMI, + [52264] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4374), 1, + anon_sym_SEMI, + [52271] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4765), 1, + anon_sym_SEMI, + [52278] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4767), 1, + aux_sym_with_clause_token2, + [52285] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4769), 1, + anon_sym_SEMI, + [52292] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4771), 1, + aux_sym_if_expression_token1, + [52299] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4773), 1, + aux_sym_if_expression_token1, + [52306] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4775), 1, + aux_sym_case_expression_token1, + [52313] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4777), 1, + anon_sym_EQ_GT, + [52320] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4779), 1, + anon_sym_SEMI, + [52327] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4781), 1, + anon_sym_SEMI, + [52334] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4783), 1, + anon_sym_SEMI, + [52341] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4785), 1, + anon_sym_EQ_GT, + [52348] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4787), 1, + anon_sym_RPAREN, + [52355] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4789), 1, + anon_sym_SEMI, + [52362] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4791), 1, + aux_sym_if_expression_token1, + [52369] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4793), 1, + anon_sym_SEMI, + [52376] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4795), 1, + anon_sym_SEMI, + [52383] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4797), 1, + anon_sym_EQ_GT, + [52390] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4799), 1, + anon_sym_SEMI, + [52397] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4801), 1, + anon_sym_RPAREN, + [52404] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4803), 1, + anon_sym_SEMI, + [52411] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4805), 1, + aux_sym_package_specification_token2, + [52418] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4807), 1, + anon_sym_EQ_GT, + [52425] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4810), 1, + anon_sym_EQ_GT, + [52432] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4812), 1, + anon_sym_RPAREN, + [52439] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4814), 1, + aux_sym_package_specification_token3, + [52446] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4816), 1, + aux_sym_record_component_association_list_token1, + [52453] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 1, + anon_sym_SEMI, + [52460] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4818), 1, + aux_sym_package_specification_token2, + [52467] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4820), 1, + aux_sym_allocator_token1, + [52474] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3747), 1, + aux_sym_compilation_unit_token1, + [52481] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + aux_sym_allocator_token1, + [52488] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4824), 1, + aux_sym_if_expression_token1, + [52495] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4512), 1, + anon_sym_SEMI, + [52502] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4826), 1, + sym_identifier, + [52509] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4828), 1, + anon_sym_SEMI, + [52516] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4830), 1, + aux_sym_package_specification_token2, + [52523] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4832), 1, + anon_sym_SEMI, + [52530] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + anon_sym_SEMI, + [52537] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + aux_sym_with_clause_token2, + [52544] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4504), 1, + anon_sym_SEMI, + [52551] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4838), 1, + anon_sym_SEMI, + [52558] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4840), 1, + anon_sym_EQ_GT, + [52565] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4842), 1, + anon_sym_COLON, + [52572] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4844), 1, + aux_sym_package_specification_token3, + [52579] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4846), 1, + sym_identifier, + [52586] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4848), 1, + aux_sym_package_body_token1, + [52593] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4850), 1, + aux_sym_with_clause_token2, + [52600] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4852), 1, + sym_identifier, + [52607] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4854), 1, + aux_sym_package_body_token1, + [52614] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4856), 1, + aux_sym_package_body_token1, + [52621] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3822), 1, + aux_sym_package_specification_token2, + [52628] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4858), 1, + anon_sym_SEMI, + [52635] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4860), 1, + anon_sym_SEMI, + [52642] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4069), 1, + anon_sym_SEMI, + [52649] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4488), 1, + anon_sym_SEMI, + [52656] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3663), 1, + aux_sym_allocator_token1, + [52663] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4862), 1, + aux_sym_package_specification_token3, + [52670] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4864), 1, + aux_sym_allocator_token1, + [52677] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4494), 1, + anon_sym_SEMI, + [52684] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4866), 1, + aux_sym_package_specification_token3, + [52691] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4868), 1, + anon_sym_COLON, + [52698] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4100), 1, + anon_sym_SEMI, + [52705] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4870), 1, + sym_identifier, + [52712] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4872), 1, + aux_sym_with_clause_token2, + [52719] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4874), 1, + aux_sym_component_list_token1, + [52726] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4876), 1, + anon_sym_EQ_GT, + [52733] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4376), 1, + aux_sym_package_specification_token2, + [52740] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 1, + anon_sym_DOT_DOT, + [52747] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4225), 1, + anon_sym_SEMI, + [52754] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4880), 1, + aux_sym_compilation_unit_token1, + [52761] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4882), 1, + aux_sym_with_clause_token2, + [52768] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4144), 1, + anon_sym_SEMI, + [52775] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4884), 1, + aux_sym_with_clause_token2, + [52782] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4886), 1, + anon_sym_SEMI, + [52789] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4466), 1, + anon_sym_SEMI, + [52796] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_SEMI, + [52803] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4890), 1, + aux_sym_expression_token2, + [52810] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4892), 1, + anon_sym_SEMI, + [52817] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4894), 1, + anon_sym_SEMI, + [52824] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3380), 1, + anon_sym_SEMI, + [52831] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(346), 1, + aux_sym_private_type_declaration_token1, + [52838] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + aux_sym_package_specification_token3, + [52845] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 1, + anon_sym_SEMI, + [52852] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4900), 1, + anon_sym_SEMI, + [52859] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4902), 1, + anon_sym_SEMI, + [52866] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4904), 1, + aux_sym_attribute_designator_token4, + [52873] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4906), 1, + aux_sym_with_clause_token2, + [52880] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4908), 1, + aux_sym_record_component_association_list_token1, + [52887] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4910), 1, + sym_identifier, + [52894] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4912), 1, + anon_sym_RPAREN, + [52901] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4914), 1, + aux_sym_package_specification_token2, + [52908] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4916), 1, + aux_sym_package_specification_token2, + [52915] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4918), 1, + anon_sym_SEMI, + [52922] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4920), 1, + aux_sym_if_expression_token1, + [52929] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4922), 1, + anon_sym_EQ_GT, + [52936] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4924), 1, + anon_sym_SEMI, + [52943] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + aux_sym_compilation_unit_token1, + [52950] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4928), 1, + anon_sym_SEMI, + [52957] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4930), 1, + aux_sym_if_expression_token1, + [52964] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4932), 1, + anon_sym_SEMI, + [52971] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4934), 1, + aux_sym_compilation_unit_token1, + [52978] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4305), 1, + anon_sym_SEMI, + [52985] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4936), 1, + aux_sym__aspect_mark_token1, + [52992] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4938), 1, + anon_sym_SEMI, + [52999] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4940), 1, + anon_sym_SEMI, + [53006] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4942), 1, + aux_sym_if_expression_token1, + [53013] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4944), 1, + aux_sym_if_expression_token1, + [53020] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4946), 1, + aux_sym_package_specification_token3, + [53027] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4948), 1, + anon_sym_SEMI, + [53034] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4950), 1, + anon_sym_SEMI, + [53041] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4952), 1, + aux_sym_if_expression_token1, + [53048] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4053), 1, + anon_sym_SEMI, + [53055] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3910), 1, + anon_sym_SEMI, + [53062] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_SEMI, + [53069] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4954), 1, + anon_sym_RPAREN, + [53076] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(428), 1, + aux_sym_subprogram_body_token1, + [53083] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4956), 1, + anon_sym_RPAREN, + [53090] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4958), 1, + aux_sym_expression_token2, + [53097] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4960), 1, + anon_sym_SEMI, + [53104] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4962), 1, + aux_sym_allocator_token1, + [53111] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4964), 1, + aux_sym_package_specification_token3, + [53118] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4966), 1, + aux_sym_loop_statement_token1, + [53125] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4968), 1, + anon_sym_RPAREN, + [53132] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4968), 1, + anon_sym_RBRACK, + [53139] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4098), 1, + anon_sym_SEMI, + [53146] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4970), 1, + anon_sym_SEMI, + [53153] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4972), 1, + anon_sym_SEMI, + [53160] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4974), 1, + anon_sym_SEMI, + [53167] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3403), 1, + anon_sym_SEMI, + [53174] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4976), 1, + aux_sym_with_clause_token2, + [53181] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_SEMI, + [53188] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4442), 1, + anon_sym_SEMI, + [53195] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4980), 1, + anon_sym_SEMI, + [53202] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4982), 1, + anon_sym_RPAREN, + [53209] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4984), 1, + aux_sym_package_specification_token3, + [53216] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4986), 1, + anon_sym_SEMI, + [53223] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4988), 1, + anon_sym_RPAREN, + [53230] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4990), 1, + anon_sym_SEMI, + [53237] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4992), 1, + anon_sym_SEMI, + [53244] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4994), 1, + aux_sym_if_expression_token1, + [53251] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4996), 1, + aux_sym_compilation_unit_token1, + [53258] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4998), 1, + aux_sym_package_specification_token3, + [53265] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5000), 1, + anon_sym_RPAREN, + [53272] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 1, + aux_sym_with_clause_token2, + [53279] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + anon_sym_SEMI, + [53286] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3613), 1, + aux_sym_package_specification_token3, + [53293] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5006), 1, + anon_sym_SEMI, + [53300] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5008), 1, + aux_sym_asynchronous_select_token1, + [53307] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5010), 1, + aux_sym_package_specification_token3, + [53314] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5012), 1, + aux_sym_package_specification_token3, + [53321] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4142), 1, + anon_sym_SEMI, + [53328] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5014), 1, + anon_sym_EQ_GT, + [53335] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4231), 1, + anon_sym_RPAREN, + [53342] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4150), 1, + aux_sym_package_specification_token2, + [53349] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5016), 1, + aux_sym_iterated_element_association_token2, + [53356] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5018), 1, + anon_sym_SEMI, + [53363] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5020), 1, + anon_sym_SEMI, + [53370] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5022), 1, + anon_sym_RPAREN, + [53377] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5024), 1, + aux_sym_package_specification_token2, + [53384] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5026), 1, + aux_sym_if_expression_token1, + [53391] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5028), 1, + anon_sym_SEMI, + [53398] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5030), 1, + anon_sym_RPAREN, + [53405] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5032), 1, + anon_sym_SEMI, + [53412] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4988), 1, + anon_sym_RBRACK, + [53419] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5034), 1, + aux_sym_package_specification_token3, + [53426] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5036), 1, + aux_sym_package_specification_token2, + [53433] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5038), 1, + anon_sym_EQ_GT, + [53440] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5040), 1, + anon_sym_SEMI, + [53447] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5042), 1, + anon_sym_SEMI, + [53454] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5044), 1, - aux_sym_package_specification_token2, - [53315] = 2, + aux_sym_if_expression_token1, + [53461] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3225), 1, + aux_sym_entry_declaration_token1, + [53468] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5046), 1, - anon_sym_RPAREN, - [53322] = 2, + anon_sym_SEMI, + [53475] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5048), 1, - aux_sym_package_specification_token2, - [53329] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3175), 1, - aux_sym_entry_declaration_token1, - [53336] = 2, + anon_sym_SEMI, + [53482] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5050), 1, anon_sym_SEMI, - [53343] = 2, + [53489] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5052), 1, aux_sym_attribute_designator_token2, - [53350] = 2, + [53496] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5054), 1, - aux_sym_expression_token2, - [53357] = 2, + anon_sym_SEMI, + [53503] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5056), 1, - anon_sym_SEMI, - [53364] = 2, + aux_sym_expression_token2, + [53510] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5058), 1, - aux_sym_if_expression_token1, - [53371] = 2, + aux_sym_package_specification_token2, + [53517] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5060), 1, - aux_sym_package_specification_token2, - [53378] = 2, + anon_sym_COLON, + [53524] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5062), 1, - anon_sym_COLON, - [53385] = 2, + sym_identifier, + [53531] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5064), 1, sym_identifier, - [53392] = 2, + [53538] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + anon_sym_RPAREN, + [53545] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5066), 1, - anon_sym_RPAREN, - [53399] = 2, + anon_sym_SEMI, + [53552] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5068), 1, sym_identifier, - [53406] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3868), 1, - anon_sym_RPAREN, - [53413] = 2, + [53559] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5070), 1, - sym_identifier, - [53420] = 2, + aux_sym_with_clause_token2, + [53566] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5072), 1, - anon_sym_SEMI, - [53427] = 2, + aux_sym_package_specification_token3, + [53573] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5074), 1, - aux_sym_package_specification_token3, - [53434] = 2, + anon_sym_SEMI, + [53580] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5076), 1, - anon_sym_RPAREN, - [53441] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4390), 1, - anon_sym_SEMI, - [53448] = 2, + anon_sym_DOT_DOT, + [53587] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5078), 1, - anon_sym_COLON, - [53455] = 2, + anon_sym_RPAREN, + [53594] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5080), 1, - aux_sym_package_specification_token2, - [53462] = 2, + anon_sym_COLON, + [53601] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5082), 1, - anon_sym_SEMI, - [53469] = 2, + anon_sym_DOT_DOT, + [53608] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5084), 1, - aux_sym_with_clause_token2, - [53476] = 2, + aux_sym_package_specification_token2, + [53615] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5086), 1, - aux_sym_compilation_unit_token1, - [53483] = 2, + anon_sym_LPAREN, + [53622] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5088), 1, - aux_sym_compilation_unit_token1, - [53490] = 2, + anon_sym_SEMI, + [53629] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5090), 1, anon_sym_SEMI, - [53497] = 2, + [53636] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4406), 1, + anon_sym_SEMI, + [53643] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5092), 1, anon_sym_SEMI, - [53504] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4212), 1, - anon_sym_SEMI, - [53511] = 2, + [53650] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5094), 1, - anon_sym_SEMI, - [53518] = 2, + aux_sym_package_specification_token3, + [53657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3189), 1, + ACTIONS(3253), 1, aux_sym_interface_type_definition_token2, - [53525] = 2, + [53664] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5096), 1, - aux_sym_record_component_association_list_token1, - [53532] = 2, + aux_sym_subprogram_body_token1, + [53671] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5098), 1, - anon_sym_RPAREN, - [53539] = 2, + aux_sym_record_component_association_list_token1, + [53678] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5100), 1, - anon_sym_COLON, - [53546] = 2, + anon_sym_SEMI, + [53685] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5102), 1, - anon_sym_SEMI, - [53553] = 2, + anon_sym_RPAREN, + [53692] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5104), 1, - anon_sym_RPAREN, - [53560] = 2, + anon_sym_SEMI, + [53699] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5106), 1, - anon_sym_SEMI, - [53567] = 2, + anon_sym_COLON, + [53706] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5108), 1, - anon_sym_SEMI, - [53574] = 2, + anon_sym_RPAREN, + [53713] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5110), 1, - aux_sym_package_specification_token2, - [53581] = 2, + anon_sym_EQ_GT, + [53720] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5112), 1, - aux_sym_subunit_token1, - [53588] = 2, + aux_sym_case_expression_token1, + [53727] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5114), 1, anon_sym_SEMI, - [53595] = 2, + [53734] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5116), 1, - anon_sym_LPAREN, - [53602] = 2, + anon_sym_SEMI, + [53741] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5118), 1, anon_sym_SEMI, - [53609] = 2, + [53748] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4067), 1, + anon_sym_SEMI, + [53755] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5120), 1, anon_sym_SEMI, - [53616] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2206), 1, - anon_sym_DOT_DOT, - [53623] = 2, + [53762] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5122), 1, - sym_tick, - [53630] = 2, + aux_sym_package_specification_token2, + [53769] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5124), 1, - anon_sym_RPAREN, - [53637] = 2, + aux_sym_subunit_token1, + [53776] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5126), 1, - anon_sym_RPAREN, - [53644] = 2, + aux_sym_with_clause_token2, + [53783] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5128), 1, anon_sym_SEMI, - [53651] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(346), 1, - aux_sym_subprogram_body_token1, - [53658] = 2, + [53790] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5130), 1, - aux_sym_primary_null_token1, - [53665] = 2, + anon_sym_SEMI, + [53797] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5132), 1, - aux_sym_package_specification_token3, - [53672] = 2, + aux_sym_compilation_unit_token1, + [53804] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5134), 1, - aux_sym_subprogram_body_token1, - [53679] = 2, + aux_sym_compilation_unit_token1, + [53811] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5136), 1, anon_sym_SEMI, - [53686] = 2, + [53818] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5138), 1, anon_sym_SEMI, - [53693] = 2, + [53825] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5140), 1, - anon_sym_SEMI, - [53700] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3165), 1, anon_sym_RPAREN, - [53707] = 2, + [53832] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5142), 1, - anon_sym_LPAREN, - [53714] = 2, + anon_sym_SEMI, + [53839] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5144), 1, - anon_sym_SEMI, - [53721] = 2, + aux_sym_allocator_token1, + [53846] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5146), 1, - anon_sym_EQ_GT, - [53728] = 2, + aux_sym_package_specification_token3, + [53853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4097), 1, - anon_sym_RPAREN, - [53735] = 2, + ACTIONS(4386), 1, + aux_sym_compilation_unit_token1, + [53860] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5148), 1, - anon_sym_RPAREN, - [53742] = 2, + anon_sym_SEMI, + [53867] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2264), 1, + anon_sym_DOT_DOT, + [53874] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5150), 1, - anon_sym_SEMI, - [53749] = 2, + aux_sym_chunk_specification_token1, + [53881] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5152), 1, - aux_sym_compilation_unit_token1, - [53756] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1798), 1, - anon_sym_EQ_GT, - [53763] = 2, + aux_sym_iterated_element_association_token2, + [53888] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5154), 1, - aux_sym_loop_statement_token1, - [53770] = 2, + sym_tick, + [53895] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5156), 1, - anon_sym_SEMI, - [53777] = 2, + anon_sym_RPAREN, + [53902] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(414), 1, + aux_sym_subprogram_body_token1, + [53909] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5158), 1, - aux_sym_with_clause_token2, - [53784] = 2, + aux_sym_package_specification_token2, + [53916] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5160), 1, - anon_sym_SEMI, - [53791] = 2, + anon_sym_RPAREN, + [53923] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5162), 1, - aux_sym_asynchronous_select_token2, - [53798] = 2, + aux_sym_iterated_element_association_token2, + [53930] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3580), 1, + anon_sym_SEMI, + [53937] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5164), 1, - aux_sym_asynchronous_select_token1, - [53805] = 2, + anon_sym_SEMI, + [53944] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5166), 1, - anon_sym_SEMI, - [53812] = 2, + aux_sym_record_component_association_list_token1, + [53951] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(338), 1, + aux_sym_subprogram_body_token1, + [53958] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5168), 1, - aux_sym_asynchronous_select_token2, - [53819] = 2, + anon_sym_SEMI, + [53965] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5170), 1, - anon_sym_EQ_GT, - [53826] = 2, + anon_sym_SEMI, + [53972] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5172), 1, - sym_identifier, - [53833] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(412), 1, - aux_sym_subprogram_body_token1, - [53840] = 2, + aux_sym_if_expression_token1, + [53979] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5174), 1, - aux_sym_package_specification_token3, - [53847] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3291), 1, anon_sym_SEMI, - [53854] = 2, + [53986] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5176), 1, - aux_sym_chunk_specification_token1, - [53861] = 2, + aux_sym_primary_null_token1, + [53993] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5178), 1, - anon_sym_RBRACK, - [53868] = 2, + anon_sym_SEMI, + [54000] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5180), 1, - anon_sym_EQ_GT, - [53875] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5178), 1, - anon_sym_RPAREN, - [53882] = 2, + aux_sym_range_attribute_designator_token1, + [54007] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5182), 1, - anon_sym_SEMI, - [53889] = 2, + aux_sym_package_specification_token3, + [54014] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5184), 1, anon_sym_RPAREN, - [53896] = 2, + [54021] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5186), 1, - anon_sym_EQ_GT, - [53903] = 2, + aux_sym_subprogram_body_token1, + [54028] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5188), 1, anon_sym_SEMI, - [53910] = 2, + [54035] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5190), 1, - anon_sym_SEMI, - [53917] = 2, + aux_sym_chunk_specification_token1, + [54042] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5192), 1, anon_sym_SEMI, - [53924] = 2, + [54049] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5194), 1, - aux_sym_compilation_unit_token1, - [53931] = 2, + anon_sym_LPAREN, + [54056] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5196), 1, - aux_sym_expression_token2, - [53938] = 2, + anon_sym_EQ_GT, + [54063] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4370), 1, + anon_sym_SEMI, + [54070] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5198), 1, - aux_sym_package_specification_token3, - [53945] = 2, + anon_sym_SEMI, + [54077] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4038), 1, + anon_sym_RPAREN, + [54084] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5200), 1, - aux_sym_with_clause_token2, - [53952] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(462), 1, - aux_sym_allocator_token1, - [53959] = 2, + anon_sym_RPAREN, + [54091] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5202), 1, - aux_sym_package_specification_token2, - [53966] = 2, + aux_sym_with_clause_token2, + [54098] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5204), 1, - anon_sym_SEMI, - [53973] = 2, + aux_sym_compilation_unit_token1, + [54105] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5206), 1, - anon_sym_SEMI, - [53980] = 2, + aux_sym_compilation_unit_token1, + [54112] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1878), 1, + anon_sym_EQ_GT, + [54119] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5208), 1, - aux_sym_package_specification_token2, - [53987] = 2, + anon_sym_SEMI, + [54126] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5210), 1, - anon_sym_SEMI, - [53994] = 2, + aux_sym_loop_statement_token1, + [54133] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5212), 1, anon_sym_SEMI, - [54001] = 2, + [54140] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5214), 1, anon_sym_SEMI, - [54008] = 2, + [54147] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5216), 1, - aux_sym_at_clause_token1, - [54015] = 2, + anon_sym_SEMI, + [54154] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5218), 1, - sym_tick, - [54022] = 2, + anon_sym_SEMI, + [54161] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5220), 1, - anon_sym_SEMI, - [54029] = 2, + aux_sym_asynchronous_select_token2, + [54168] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5222), 1, - anon_sym_RBRACK, - [54036] = 2, + anon_sym_SEMI, + [54175] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5224), 1, - aux_sym_object_renaming_declaration_token1, - [54043] = 2, + aux_sym_asynchronous_select_token1, + [54182] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5226), 1, anon_sym_SEMI, - [54050] = 2, + [54189] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5228), 1, - aux_sym_object_renaming_declaration_token1, - [54057] = 2, + aux_sym_asynchronous_select_token2, + [54196] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5230), 1, - aux_sym_primary_null_token1, - [54064] = 2, + anon_sym_SEMI, + [54203] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5232), 1, - aux_sym_primary_null_token1, - [54071] = 2, + anon_sym_EQ_GT, + [54210] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5234), 1, sym_identifier, - [54078] = 2, + [54217] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5236), 1, - aux_sym_loop_statement_token1, - [54085] = 2, + anon_sym_SEMI, + [54224] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3370), 1, + anon_sym_SEMI, + [54231] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5238), 1, + anon_sym_EQ_GT, + [54238] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4140), 1, anon_sym_SEMI, - [54092] = 2, + [54245] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5240), 1, - anon_sym_SEMI, - [54099] = 2, + anon_sym_RBRACK, + [54252] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5242), 1, - aux_sym_package_specification_token2, - [54106] = 2, + anon_sym_SEMI, + [54259] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5244), 1, - anon_sym_SEMI, - [54113] = 2, + anon_sym_EQ_GT, + [54266] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5240), 1, + anon_sym_RPAREN, + [54273] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5246), 1, - aux_sym_loop_statement_token1, - [54120] = 2, + anon_sym_RPAREN, + [54280] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5248), 1, - anon_sym_SEMI, - [54127] = 2, + anon_sym_EQ_GT, + [54287] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 1, + anon_sym_RPAREN, + [54294] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5250), 1, - aux_sym_compilation_unit_token1, - [54134] = 2, + anon_sym_SEMI, + [54301] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5252), 1, aux_sym_package_specification_token3, - [54141] = 2, + [54308] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5254), 1, - anon_sym_RPAREN, - [54148] = 2, + anon_sym_SEMI, + [54315] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5256), 1, - aux_sym_package_specification_token3, - [54155] = 2, + anon_sym_SEMI, + [54322] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5258), 1, - anon_sym_SEMI, - [54162] = 2, + aux_sym_expression_token2, + [54329] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5260), 1, - aux_sym_expression_token2, - [54169] = 2, + anon_sym_SEMI, + [54336] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5262), 1, - aux_sym_subprogram_body_token1, - [54176] = 2, + aux_sym_package_specification_token3, + [54343] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5264), 1, - aux_sym_expression_token2, - [54183] = 2, + sym_tick, + [54350] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5266), 1, - sym_identifier, - [54190] = 2, + anon_sym_SEMI, + [54357] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(518), 1, + aux_sym_allocator_token1, + [54364] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5268), 1, anon_sym_SEMI, - [54197] = 2, + [54371] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5270), 1, - aux_sym_expression_token2, - [54204] = 2, + aux_sym_package_specification_token2, + [54378] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5272), 1, - anon_sym_GT_GT, - [54211] = 2, + anon_sym_SEMI, + [54385] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5274), 1, aux_sym_compilation_unit_token1, - [54218] = 2, + [54392] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5276), 1, - anon_sym_COLON, - [54225] = 2, + aux_sym_expression_token2, + [54399] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5278), 1, - sym_identifier, - [54232] = 2, + aux_sym_if_expression_token1, + [54406] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5280), 1, - sym_identifier, - [54239] = 2, + anon_sym_SEMI, + [54413] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5282), 1, - sym_identifier, - [54246] = 2, + aux_sym_with_clause_token2, + [54420] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5284), 1, - aux_sym_package_specification_token2, - [54253] = 2, + anon_sym_SEMI, + [54427] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5286), 1, anon_sym_SEMI, - [54260] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(418), 1, - aux_sym_subprogram_body_token1, - [54267] = 2, + [54434] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5288), 1, - anon_sym_SEMI, - [54274] = 2, + aux_sym_package_specification_token2, + [54441] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5290), 1, - sym_identifier, - [54281] = 2, + anon_sym_SEMI, + [54448] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5292), 1, - sym_identifier, - [54288] = 2, + anon_sym_SEMI, + [54455] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5294), 1, - aux_sym_package_specification_token3, - [54295] = 2, + aux_sym_with_clause_token2, + [54462] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5296), 1, anon_sym_SEMI, - [54302] = 2, + [54469] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(418), 1, + aux_sym_subprogram_body_token1, + [54476] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5298), 1, aux_sym_package_specification_token3, - [54309] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4206), 1, - anon_sym_SEMI, - [54316] = 2, + [54483] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5300), 1, - aux_sym_with_clause_token2, - [54323] = 2, + aux_sym_at_clause_token1, + [54490] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5302), 1, - anon_sym_SEMI, - [54330] = 2, + aux_sym_asynchronous_select_token1, + [54497] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5304), 1, - aux_sym_use_clause_token2, - [54337] = 2, + aux_sym_asynchronous_select_token1, + [54504] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5306), 1, - aux_sym_loop_statement_token1, - [54344] = 2, + sym_tick, + [54511] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5308), 1, - anon_sym_RBRACK, - [54351] = 2, + anon_sym_SEMI, + [54518] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5310), 1, - sym_identifier, - [54358] = 2, + anon_sym_RBRACK, + [54525] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5312), 1, anon_sym_SEMI, - [54365] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4360), 1, - anon_sym_SEMI, - [54372] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3201), 1, - aux_sym_loop_statement_token1, - [54379] = 2, + [54532] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5314), 1, - anon_sym_SEMI, - [54386] = 2, + aux_sym_object_renaming_declaration_token1, + [54539] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5316), 1, - aux_sym_package_specification_token3, - [54393] = 2, + aux_sym_object_renaming_declaration_token1, + [54546] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5318), 1, - sym_tick, - [54400] = 2, + aux_sym_primary_null_token1, + [54553] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5320), 1, - anon_sym_COLON, - [54407] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4400), 1, anon_sym_SEMI, - [54414] = 2, + [54560] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5322), 1, - ts_builtin_sym_end, - [54421] = 2, + aux_sym_package_specification_token3, + [54567] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5324), 1, - sym_identifier, - [54428] = 2, + anon_sym_SEMI, + [54574] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5326), 1, - anon_sym_SEMI, - [54435] = 2, + aux_sym_compilation_unit_token1, + [54581] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5328), 1, - sym_identifier, - [54442] = 2, + aux_sym_package_specification_token3, + [54588] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5330), 1, - sym_identifier, - [54449] = 2, + aux_sym_primary_null_token1, + [54595] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5332), 1, - sym_identifier, - [54456] = 2, + aux_sym_with_clause_token2, + [54602] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5334), 1, sym_identifier, - [54463] = 2, + [54609] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5336), 1, - anon_sym_SEMI, - [54470] = 2, + aux_sym_loop_statement_token1, + [54616] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5338), 1, - aux_sym_global_mode_token1, - [54477] = 2, + anon_sym_SEMI, + [54623] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5340), 1, + anon_sym_SEMI, + [54630] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5342), 1, + anon_sym_SEMI, + [54637] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5344), 1, + anon_sym_SEMI, + [54644] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5346), 1, + anon_sym_SEMI, + [54651] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5348), 1, + aux_sym_package_specification_token2, + [54658] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5350), 1, + aux_sym_loop_statement_token1, + [54665] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5352), 1, + aux_sym_package_specification_token3, + [54672] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_SEMI, + [54679] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5356), 1, + anon_sym_SEMI, + [54686] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5358), 1, + aux_sym_expression_token2, + [54693] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5360), 1, + anon_sym_SEMI, + [54700] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5362), 1, + aux_sym_expression_token2, + [54707] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_SEMI, + [54714] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5366), 1, + anon_sym_SEMI, + [54721] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5368), 1, + anon_sym_SEMI, + [54728] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5370), 1, + anon_sym_SEMI, + [54735] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5372), 1, + aux_sym_iterator_specification_token1, + [54742] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5374), 1, + aux_sym_iterator_specification_token1, + [54749] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5376), 1, + aux_sym_expression_token2, + [54756] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5378), 1, + anon_sym_SEMI, + [54763] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5380), 1, + anon_sym_LT_GT, + [54770] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5382), 1, + anon_sym_SEMI, + [54777] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5384), 1, + aux_sym_compilation_unit_token1, + [54784] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5386), 1, + anon_sym_GT_GT, + [54791] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5388), 1, + anon_sym_RPAREN, + [54798] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5390), 1, + aux_sym_package_specification_token3, + [54805] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5392), 1, + anon_sym_COLON, + [54812] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4200), 1, + anon_sym_SEMI, + [54819] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5394), 1, + aux_sym_subprogram_body_token1, + [54826] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5396), 1, + anon_sym_SEMI, + [54833] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5398), 1, + sym_identifier, + [54840] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5400), 1, + sym_identifier, + [54847] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5402), 1, + sym_identifier, + [54854] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5404), 1, + aux_sym_package_specification_token2, + [54861] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5406), 1, + aux_sym_compilation_unit_token1, + [54868] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(420), 1, + aux_sym_subprogram_body_token1, + [54875] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5408), 1, + sym_identifier, + [54882] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5410), 1, + sym_identifier, + [54889] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5412), 1, + anon_sym_SEMI, + [54896] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5414), 1, + aux_sym_package_specification_token3, + [54903] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5416), 1, + anon_sym_SEMI, + [54910] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5418), 1, + anon_sym_SEMI, + [54917] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5420), 1, + anon_sym_SEMI, + [54924] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5422), 1, + aux_sym_with_clause_token2, + [54931] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5424), 1, + anon_sym_SEMI, + [54938] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5426), 1, + aux_sym_use_clause_token2, + [54945] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5428), 1, + aux_sym_if_expression_token1, + [54952] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5430), 1, + aux_sym_package_specification_token3, + [54959] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4271), 1, + anon_sym_SEMI, + [54966] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5432), 1, + aux_sym_loop_statement_token1, + [54973] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5434), 1, + anon_sym_RBRACK, + [54980] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5436), 1, + sym_identifier, + [54987] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3267), 1, + aux_sym_loop_statement_token1, + [54994] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5438), 1, + anon_sym_SEMI, + [55001] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5440), 1, + sym_tick, + [55008] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5442), 1, + anon_sym_SEMI, + [55015] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4267), 1, + anon_sym_SEMI, + [55022] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5444), 1, + anon_sym_COLON, + [55029] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5446), 1, + aux_sym_if_expression_token1, + [55036] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5448), 1, + aux_sym_package_specification_token3, + [55043] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5450), 1, + ts_builtin_sym_end, + [55050] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5452), 1, + sym_identifier, + [55057] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4263), 1, + anon_sym_SEMI, + [55064] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5454), 1, + aux_sym_if_expression_token1, + [55071] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5456), 1, + sym_identifier, + [55078] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5458), 1, + anon_sym_SEMI, + [55085] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5460), 1, + sym_identifier, + [55092] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5462), 1, + sym_identifier, + [55099] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5464), 1, + sym_identifier, + [55106] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5466), 1, + anon_sym_SEMI, + [55113] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5468), 1, + aux_sym_global_mode_token1, + [55120] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5470), 1, anon_sym_LPAREN, + [55127] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5472), 1, + sym_identifier, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(82)] = 0, - [SMALL_STATE(83)] = 130, - [SMALL_STATE(84)] = 268, - [SMALL_STATE(85)] = 388, - [SMALL_STATE(86)] = 518, - [SMALL_STATE(87)] = 635, - [SMALL_STATE(88)] = 752, - [SMALL_STATE(89)] = 867, - [SMALL_STATE(90)] = 984, - [SMALL_STATE(91)] = 1101, - [SMALL_STATE(92)] = 1215, - [SMALL_STATE(93)] = 1329, - [SMALL_STATE(94)] = 1443, - [SMALL_STATE(95)] = 1557, - [SMALL_STATE(96)] = 1671, - [SMALL_STATE(97)] = 1785, - [SMALL_STATE(98)] = 1917, - [SMALL_STATE(99)] = 2046, - [SMALL_STATE(100)] = 2175, - [SMALL_STATE(101)] = 2299, - [SMALL_STATE(102)] = 2425, - [SMALL_STATE(103)] = 2540, - [SMALL_STATE(104)] = 2661, - [SMALL_STATE(105)] = 2772, - [SMALL_STATE(106)] = 2884, - [SMALL_STATE(107)] = 2996, - [SMALL_STATE(108)] = 3108, - [SMALL_STATE(109)] = 3220, - [SMALL_STATE(110)] = 3281, - [SMALL_STATE(111)] = 3342, - [SMALL_STATE(112)] = 3403, - [SMALL_STATE(113)] = 3464, - [SMALL_STATE(114)] = 3525, - [SMALL_STATE(115)] = 3586, - [SMALL_STATE(116)] = 3647, - [SMALL_STATE(117)] = 3708, - [SMALL_STATE(118)] = 3769, - [SMALL_STATE(119)] = 3830, - [SMALL_STATE(120)] = 3891, - [SMALL_STATE(121)] = 3952, - [SMALL_STATE(122)] = 4013, - [SMALL_STATE(123)] = 4074, - [SMALL_STATE(124)] = 4135, - [SMALL_STATE(125)] = 4196, - [SMALL_STATE(126)] = 4257, - [SMALL_STATE(127)] = 4318, - [SMALL_STATE(128)] = 4379, - [SMALL_STATE(129)] = 4440, - [SMALL_STATE(130)] = 4501, - [SMALL_STATE(131)] = 4562, - [SMALL_STATE(132)] = 4623, - [SMALL_STATE(133)] = 4684, - [SMALL_STATE(134)] = 4745, - [SMALL_STATE(135)] = 4806, - [SMALL_STATE(136)] = 4867, - [SMALL_STATE(137)] = 4928, - [SMALL_STATE(138)] = 4989, - [SMALL_STATE(139)] = 5050, - [SMALL_STATE(140)] = 5111, - [SMALL_STATE(141)] = 5172, - [SMALL_STATE(142)] = 5233, - [SMALL_STATE(143)] = 5294, - [SMALL_STATE(144)] = 5403, - [SMALL_STATE(145)] = 5464, - [SMALL_STATE(146)] = 5525, - [SMALL_STATE(147)] = 5586, - [SMALL_STATE(148)] = 5647, - [SMALL_STATE(149)] = 5708, - [SMALL_STATE(150)] = 5769, - [SMALL_STATE(151)] = 5830, - [SMALL_STATE(152)] = 5891, - [SMALL_STATE(153)] = 5952, - [SMALL_STATE(154)] = 6013, - [SMALL_STATE(155)] = 6074, - [SMALL_STATE(156)] = 6135, - [SMALL_STATE(157)] = 6196, - [SMALL_STATE(158)] = 6257, - [SMALL_STATE(159)] = 6318, - [SMALL_STATE(160)] = 6379, - [SMALL_STATE(161)] = 6440, - [SMALL_STATE(162)] = 6501, - [SMALL_STATE(163)] = 6562, - [SMALL_STATE(164)] = 6623, - [SMALL_STATE(165)] = 6684, - [SMALL_STATE(166)] = 6745, - [SMALL_STATE(167)] = 6806, - [SMALL_STATE(168)] = 6867, - [SMALL_STATE(169)] = 6928, - [SMALL_STATE(170)] = 6989, - [SMALL_STATE(171)] = 7050, - [SMALL_STATE(172)] = 7111, - [SMALL_STATE(173)] = 7172, - [SMALL_STATE(174)] = 7233, - [SMALL_STATE(175)] = 7294, - [SMALL_STATE(176)] = 7355, - [SMALL_STATE(177)] = 7463, - [SMALL_STATE(178)] = 7566, - [SMALL_STATE(179)] = 7669, - [SMALL_STATE(180)] = 7774, - [SMALL_STATE(181)] = 7877, - [SMALL_STATE(182)] = 7982, - [SMALL_STATE(183)] = 8086, - [SMALL_STATE(184)] = 8190, - [SMALL_STATE(185)] = 8290, - [SMALL_STATE(186)] = 8394, - [SMALL_STATE(187)] = 8494, - [SMALL_STATE(188)] = 8593, - [SMALL_STATE(189)] = 8690, - [SMALL_STATE(190)] = 8787, - [SMALL_STATE(191)] = 8884, - [SMALL_STATE(192)] = 8981, - [SMALL_STATE(193)] = 9078, - [SMALL_STATE(194)] = 9175, - [SMALL_STATE(195)] = 9272, - [SMALL_STATE(196)] = 9369, - [SMALL_STATE(197)] = 9466, - [SMALL_STATE(198)] = 9563, - [SMALL_STATE(199)] = 9660, - [SMALL_STATE(200)] = 9757, - [SMALL_STATE(201)] = 9851, - [SMALL_STATE(202)] = 9945, - [SMALL_STATE(203)] = 10001, - [SMALL_STATE(204)] = 10095, - [SMALL_STATE(205)] = 10151, - [SMALL_STATE(206)] = 10245, - [SMALL_STATE(207)] = 10339, - [SMALL_STATE(208)] = 10433, - [SMALL_STATE(209)] = 10527, - [SMALL_STATE(210)] = 10621, - [SMALL_STATE(211)] = 10715, - [SMALL_STATE(212)] = 10813, - [SMALL_STATE(213)] = 10869, - [SMALL_STATE(214)] = 10963, - [SMALL_STATE(215)] = 11057, - [SMALL_STATE(216)] = 11113, - [SMALL_STATE(217)] = 11207, - [SMALL_STATE(218)] = 11263, - [SMALL_STATE(219)] = 11357, - [SMALL_STATE(220)] = 11413, - [SMALL_STATE(221)] = 11507, - [SMALL_STATE(222)] = 11601, - [SMALL_STATE(223)] = 11695, - [SMALL_STATE(224)] = 11789, - [SMALL_STATE(225)] = 11883, - [SMALL_STATE(226)] = 11939, - [SMALL_STATE(227)] = 12033, - [SMALL_STATE(228)] = 12127, - [SMALL_STATE(229)] = 12221, - [SMALL_STATE(230)] = 12315, - [SMALL_STATE(231)] = 12409, - [SMALL_STATE(232)] = 12503, - [SMALL_STATE(233)] = 12597, - [SMALL_STATE(234)] = 12691, - [SMALL_STATE(235)] = 12785, - [SMALL_STATE(236)] = 12879, - [SMALL_STATE(237)] = 12973, - [SMALL_STATE(238)] = 13067, - [SMALL_STATE(239)] = 13161, - [SMALL_STATE(240)] = 13255, - [SMALL_STATE(241)] = 13349, - [SMALL_STATE(242)] = 13443, - [SMALL_STATE(243)] = 13537, - [SMALL_STATE(244)] = 13631, - [SMALL_STATE(245)] = 13687, - [SMALL_STATE(246)] = 13781, - [SMALL_STATE(247)] = 13875, - [SMALL_STATE(248)] = 13969, - [SMALL_STATE(249)] = 14063, - [SMALL_STATE(250)] = 14157, - [SMALL_STATE(251)] = 14213, - [SMALL_STATE(252)] = 14307, - [SMALL_STATE(253)] = 14401, - [SMALL_STATE(254)] = 14495, - [SMALL_STATE(255)] = 14589, - [SMALL_STATE(256)] = 14683, - [SMALL_STATE(257)] = 14738, - [SMALL_STATE(258)] = 14793, - [SMALL_STATE(259)] = 14848, - [SMALL_STATE(260)] = 14903, - [SMALL_STATE(261)] = 14958, - [SMALL_STATE(262)] = 15013, - [SMALL_STATE(263)] = 15068, - [SMALL_STATE(264)] = 15123, - [SMALL_STATE(265)] = 15178, - [SMALL_STATE(266)] = 15233, - [SMALL_STATE(267)] = 15288, - [SMALL_STATE(268)] = 15343, - [SMALL_STATE(269)] = 15438, - [SMALL_STATE(270)] = 15493, - [SMALL_STATE(271)] = 15548, - [SMALL_STATE(272)] = 15603, - [SMALL_STATE(273)] = 15658, - [SMALL_STATE(274)] = 15713, - [SMALL_STATE(275)] = 15768, - [SMALL_STATE(276)] = 15823, - [SMALL_STATE(277)] = 15878, - [SMALL_STATE(278)] = 15933, - [SMALL_STATE(279)] = 15988, - [SMALL_STATE(280)] = 16043, - [SMALL_STATE(281)] = 16098, - [SMALL_STATE(282)] = 16153, - [SMALL_STATE(283)] = 16208, - [SMALL_STATE(284)] = 16263, - [SMALL_STATE(285)] = 16318, - [SMALL_STATE(286)] = 16373, - [SMALL_STATE(287)] = 16428, - [SMALL_STATE(288)] = 16483, - [SMALL_STATE(289)] = 16538, - [SMALL_STATE(290)] = 16593, - [SMALL_STATE(291)] = 16648, - [SMALL_STATE(292)] = 16703, - [SMALL_STATE(293)] = 16758, - [SMALL_STATE(294)] = 16813, - [SMALL_STATE(295)] = 16868, - [SMALL_STATE(296)] = 16923, - [SMALL_STATE(297)] = 16978, - [SMALL_STATE(298)] = 17033, - [SMALL_STATE(299)] = 17088, - [SMALL_STATE(300)] = 17143, - [SMALL_STATE(301)] = 17198, - [SMALL_STATE(302)] = 17289, - [SMALL_STATE(303)] = 17344, - [SMALL_STATE(304)] = 17399, - [SMALL_STATE(305)] = 17454, - [SMALL_STATE(306)] = 17509, - [SMALL_STATE(307)] = 17564, - [SMALL_STATE(308)] = 17619, - [SMALL_STATE(309)] = 17674, - [SMALL_STATE(310)] = 17729, - [SMALL_STATE(311)] = 17784, - [SMALL_STATE(312)] = 17839, - [SMALL_STATE(313)] = 17894, - [SMALL_STATE(314)] = 17949, - [SMALL_STATE(315)] = 18004, - [SMALL_STATE(316)] = 18059, - [SMALL_STATE(317)] = 18114, - [SMALL_STATE(318)] = 18169, - [SMALL_STATE(319)] = 18224, - [SMALL_STATE(320)] = 18319, - [SMALL_STATE(321)] = 18374, - [SMALL_STATE(322)] = 18429, - [SMALL_STATE(323)] = 18484, - [SMALL_STATE(324)] = 18539, - [SMALL_STATE(325)] = 18594, - [SMALL_STATE(326)] = 18649, - [SMALL_STATE(327)] = 18704, - [SMALL_STATE(328)] = 18759, - [SMALL_STATE(329)] = 18814, - [SMALL_STATE(330)] = 18869, - [SMALL_STATE(331)] = 18924, - [SMALL_STATE(332)] = 18979, - [SMALL_STATE(333)] = 19034, - [SMALL_STATE(334)] = 19089, - [SMALL_STATE(335)] = 19144, - [SMALL_STATE(336)] = 19199, - [SMALL_STATE(337)] = 19254, - [SMALL_STATE(338)] = 19309, - [SMALL_STATE(339)] = 19404, - [SMALL_STATE(340)] = 19459, - [SMALL_STATE(341)] = 19514, - [SMALL_STATE(342)] = 19609, - [SMALL_STATE(343)] = 19664, - [SMALL_STATE(344)] = 19719, - [SMALL_STATE(345)] = 19774, - [SMALL_STATE(346)] = 19829, - [SMALL_STATE(347)] = 19884, - [SMALL_STATE(348)] = 19939, - [SMALL_STATE(349)] = 19994, - [SMALL_STATE(350)] = 20049, - [SMALL_STATE(351)] = 20104, - [SMALL_STATE(352)] = 20159, - [SMALL_STATE(353)] = 20214, - [SMALL_STATE(354)] = 20269, - [SMALL_STATE(355)] = 20324, - [SMALL_STATE(356)] = 20379, - [SMALL_STATE(357)] = 20434, - [SMALL_STATE(358)] = 20489, - [SMALL_STATE(359)] = 20544, - [SMALL_STATE(360)] = 20599, - [SMALL_STATE(361)] = 20654, - [SMALL_STATE(362)] = 20709, - [SMALL_STATE(363)] = 20764, - [SMALL_STATE(364)] = 20819, - [SMALL_STATE(365)] = 20874, - [SMALL_STATE(366)] = 20929, - [SMALL_STATE(367)] = 20984, - [SMALL_STATE(368)] = 21039, - [SMALL_STATE(369)] = 21094, - [SMALL_STATE(370)] = 21149, - [SMALL_STATE(371)] = 21204, - [SMALL_STATE(372)] = 21259, - [SMALL_STATE(373)] = 21314, - [SMALL_STATE(374)] = 21369, - [SMALL_STATE(375)] = 21424, - [SMALL_STATE(376)] = 21479, - [SMALL_STATE(377)] = 21534, - [SMALL_STATE(378)] = 21589, - [SMALL_STATE(379)] = 21644, - [SMALL_STATE(380)] = 21699, - [SMALL_STATE(381)] = 21754, - [SMALL_STATE(382)] = 21809, - [SMALL_STATE(383)] = 21864, - [SMALL_STATE(384)] = 21955, - [SMALL_STATE(385)] = 22010, - [SMALL_STATE(386)] = 22065, - [SMALL_STATE(387)] = 22120, - [SMALL_STATE(388)] = 22175, - [SMALL_STATE(389)] = 22230, - [SMALL_STATE(390)] = 22285, - [SMALL_STATE(391)] = 22376, - [SMALL_STATE(392)] = 22431, - [SMALL_STATE(393)] = 22486, - [SMALL_STATE(394)] = 22541, - [SMALL_STATE(395)] = 22596, - [SMALL_STATE(396)] = 22651, - [SMALL_STATE(397)] = 22706, - [SMALL_STATE(398)] = 22761, - [SMALL_STATE(399)] = 22816, - [SMALL_STATE(400)] = 22871, - [SMALL_STATE(401)] = 22926, - [SMALL_STATE(402)] = 22981, - [SMALL_STATE(403)] = 23036, - [SMALL_STATE(404)] = 23091, - [SMALL_STATE(405)] = 23146, - [SMALL_STATE(406)] = 23201, - [SMALL_STATE(407)] = 23256, - [SMALL_STATE(408)] = 23351, - [SMALL_STATE(409)] = 23406, - [SMALL_STATE(410)] = 23461, - [SMALL_STATE(411)] = 23516, - [SMALL_STATE(412)] = 23571, - [SMALL_STATE(413)] = 23626, - [SMALL_STATE(414)] = 23681, - [SMALL_STATE(415)] = 23736, - [SMALL_STATE(416)] = 23791, - [SMALL_STATE(417)] = 23846, - [SMALL_STATE(418)] = 23901, - [SMALL_STATE(419)] = 23956, - [SMALL_STATE(420)] = 24011, - [SMALL_STATE(421)] = 24066, - [SMALL_STATE(422)] = 24121, - [SMALL_STATE(423)] = 24176, - [SMALL_STATE(424)] = 24231, - [SMALL_STATE(425)] = 24286, - [SMALL_STATE(426)] = 24341, - [SMALL_STATE(427)] = 24396, - [SMALL_STATE(428)] = 24451, - [SMALL_STATE(429)] = 24506, - [SMALL_STATE(430)] = 24561, - [SMALL_STATE(431)] = 24616, - [SMALL_STATE(432)] = 24671, - [SMALL_STATE(433)] = 24726, - [SMALL_STATE(434)] = 24781, - [SMALL_STATE(435)] = 24836, - [SMALL_STATE(436)] = 24890, - [SMALL_STATE(437)] = 24944, - [SMALL_STATE(438)] = 24998, - [SMALL_STATE(439)] = 25052, - [SMALL_STATE(440)] = 25106, - [SMALL_STATE(441)] = 25196, - [SMALL_STATE(442)] = 25250, - [SMALL_STATE(443)] = 25304, - [SMALL_STATE(444)] = 25358, - [SMALL_STATE(445)] = 25412, - [SMALL_STATE(446)] = 25466, - [SMALL_STATE(447)] = 25520, - [SMALL_STATE(448)] = 25574, - [SMALL_STATE(449)] = 25628, - [SMALL_STATE(450)] = 25682, - [SMALL_STATE(451)] = 25736, - [SMALL_STATE(452)] = 25806, - [SMALL_STATE(453)] = 25860, - [SMALL_STATE(454)] = 25914, - [SMALL_STATE(455)] = 25968, - [SMALL_STATE(456)] = 26022, - [SMALL_STATE(457)] = 26076, - [SMALL_STATE(458)] = 26166, - [SMALL_STATE(459)] = 26253, - [SMALL_STATE(460)] = 26306, - [SMALL_STATE(461)] = 26359, - [SMALL_STATE(462)] = 26412, - [SMALL_STATE(463)] = 26474, - [SMALL_STATE(464)] = 26560, - [SMALL_STATE(465)] = 26612, - [SMALL_STATE(466)] = 26664, - [SMALL_STATE(467)] = 26750, - [SMALL_STATE(468)] = 26802, - [SMALL_STATE(469)] = 26854, - [SMALL_STATE(470)] = 26906, - [SMALL_STATE(471)] = 26958, - [SMALL_STATE(472)] = 27010, - [SMALL_STATE(473)] = 27062, - [SMALL_STATE(474)] = 27114, - [SMALL_STATE(475)] = 27166, - [SMALL_STATE(476)] = 27218, - [SMALL_STATE(477)] = 27270, - [SMALL_STATE(478)] = 27322, - [SMALL_STATE(479)] = 27374, - [SMALL_STATE(480)] = 27426, - [SMALL_STATE(481)] = 27488, - [SMALL_STATE(482)] = 27571, - [SMALL_STATE(483)] = 27622, - [SMALL_STATE(484)] = 27705, - [SMALL_STATE(485)] = 27788, - [SMALL_STATE(486)] = 27871, - [SMALL_STATE(487)] = 27922, - [SMALL_STATE(488)] = 27973, - [SMALL_STATE(489)] = 28024, - [SMALL_STATE(490)] = 28083, - [SMALL_STATE(491)] = 28166, - [SMALL_STATE(492)] = 28249, - [SMALL_STATE(493)] = 28332, - [SMALL_STATE(494)] = 28383, - [SMALL_STATE(495)] = 28466, - [SMALL_STATE(496)] = 28549, - [SMALL_STATE(497)] = 28600, - [SMALL_STATE(498)] = 28683, - [SMALL_STATE(499)] = 28766, - [SMALL_STATE(500)] = 28817, - [SMALL_STATE(501)] = 28874, - [SMALL_STATE(502)] = 28940, - [SMALL_STATE(503)] = 28996, - [SMALL_STATE(504)] = 29052, - [SMALL_STATE(505)] = 29108, - [SMALL_STATE(506)] = 29155, - [SMALL_STATE(507)] = 29204, - [SMALL_STATE(508)] = 29251, - [SMALL_STATE(509)] = 29322, - [SMALL_STATE(510)] = 29369, - [SMALL_STATE(511)] = 29416, - [SMALL_STATE(512)] = 29483, - [SMALL_STATE(513)] = 29550, - [SMALL_STATE(514)] = 29621, - [SMALL_STATE(515)] = 29668, - [SMALL_STATE(516)] = 29715, - [SMALL_STATE(517)] = 29762, - [SMALL_STATE(518)] = 29830, - [SMALL_STATE(519)] = 29914, - [SMALL_STATE(520)] = 29960, - [SMALL_STATE(521)] = 30006, - [SMALL_STATE(522)] = 30052, - [SMALL_STATE(523)] = 30098, - [SMALL_STATE(524)] = 30148, - [SMALL_STATE(525)] = 30227, - [SMALL_STATE(526)] = 30285, - [SMALL_STATE(527)] = 30337, - [SMALL_STATE(528)] = 30381, - [SMALL_STATE(529)] = 30433, - [SMALL_STATE(530)] = 30485, - [SMALL_STATE(531)] = 30537, - [SMALL_STATE(532)] = 30589, - [SMALL_STATE(533)] = 30670, - [SMALL_STATE(534)] = 30751, - [SMALL_STATE(535)] = 30793, - [SMALL_STATE(536)] = 30849, - [SMALL_STATE(537)] = 30903, - [SMALL_STATE(538)] = 30959, - [SMALL_STATE(539)] = 31015, - [SMALL_STATE(540)] = 31071, - [SMALL_STATE(541)] = 31114, - [SMALL_STATE(542)] = 31184, - [SMALL_STATE(543)] = 31234, - [SMALL_STATE(544)] = 31283, - [SMALL_STATE(545)] = 31328, - [SMALL_STATE(546)] = 31370, - [SMALL_STATE(547)] = 31425, - [SMALL_STATE(548)] = 31466, - [SMALL_STATE(549)] = 31522, - [SMALL_STATE(550)] = 31562, - [SMALL_STATE(551)] = 31618, - [SMALL_STATE(552)] = 31674, - [SMALL_STATE(553)] = 31710, - [SMALL_STATE(554)] = 31766, - [SMALL_STATE(555)] = 31822, - [SMALL_STATE(556)] = 31859, - [SMALL_STATE(557)] = 31916, - [SMALL_STATE(558)] = 31973, - [SMALL_STATE(559)] = 32030, - [SMALL_STATE(560)] = 32087, - [SMALL_STATE(561)] = 32134, - [SMALL_STATE(562)] = 32191, - [SMALL_STATE(563)] = 32245, - [SMALL_STATE(564)] = 32299, - [SMALL_STATE(565)] = 32331, - [SMALL_STATE(566)] = 32371, - [SMALL_STATE(567)] = 32421, - [SMALL_STATE(568)] = 32475, - [SMALL_STATE(569)] = 32529, - [SMALL_STATE(570)] = 32587, - [SMALL_STATE(571)] = 32641, - [SMALL_STATE(572)] = 32675, - [SMALL_STATE(573)] = 32729, - [SMALL_STATE(574)] = 32770, - [SMALL_STATE(575)] = 32799, - [SMALL_STATE(576)] = 32828, - [SMALL_STATE(577)] = 32879, - [SMALL_STATE(578)] = 32930, - [SMALL_STATE(579)] = 32985, - [SMALL_STATE(580)] = 33036, - [SMALL_STATE(581)] = 33087, - [SMALL_STATE(582)] = 33136, - [SMALL_STATE(583)] = 33187, - [SMALL_STATE(584)] = 33242, - [SMALL_STATE(585)] = 33293, - [SMALL_STATE(586)] = 33322, - [SMALL_STATE(587)] = 33377, - [SMALL_STATE(588)] = 33429, - [SMALL_STATE(589)] = 33481, - [SMALL_STATE(590)] = 33533, - [SMALL_STATE(591)] = 33582, - [SMALL_STATE(592)] = 33633, - [SMALL_STATE(593)] = 33680, - [SMALL_STATE(594)] = 33723, - [SMALL_STATE(595)] = 33772, - [SMALL_STATE(596)] = 33821, - [SMALL_STATE(597)] = 33852, - [SMALL_STATE(598)] = 33901, - [SMALL_STATE(599)] = 33932, - [SMALL_STATE(600)] = 33975, - [SMALL_STATE(601)] = 34006, - [SMALL_STATE(602)] = 34035, - [SMALL_STATE(603)] = 34086, - [SMALL_STATE(604)] = 34137, - [SMALL_STATE(605)] = 34178, - [SMALL_STATE(606)] = 34204, - [SMALL_STATE(607)] = 34230, - [SMALL_STATE(608)] = 34258, - [SMALL_STATE(609)] = 34284, - [SMALL_STATE(610)] = 34312, - [SMALL_STATE(611)] = 34358, - [SMALL_STATE(612)] = 34404, - [SMALL_STATE(613)] = 34430, - [SMALL_STATE(614)] = 34474, - [SMALL_STATE(615)] = 34520, - [SMALL_STATE(616)] = 34548, - [SMALL_STATE(617)] = 34574, - [SMALL_STATE(618)] = 34602, - [SMALL_STATE(619)] = 34645, - [SMALL_STATE(620)] = 34690, - [SMALL_STATE(621)] = 34727, - [SMALL_STATE(622)] = 34772, - [SMALL_STATE(623)] = 34817, - [SMALL_STATE(624)] = 34862, - [SMALL_STATE(625)] = 34905, - [SMALL_STATE(626)] = 34940, - [SMALL_STATE(627)] = 34969, - [SMALL_STATE(628)] = 35010, - [SMALL_STATE(629)] = 35055, - [SMALL_STATE(630)] = 35084, - [SMALL_STATE(631)] = 35113, - [SMALL_STATE(632)] = 35142, - [SMALL_STATE(633)] = 35171, - [SMALL_STATE(634)] = 35216, - [SMALL_STATE(635)] = 35251, - [SMALL_STATE(636)] = 35280, - [SMALL_STATE(637)] = 35323, - [SMALL_STATE(638)] = 35347, - [SMALL_STATE(639)] = 35371, - [SMALL_STATE(640)] = 35413, - [SMALL_STATE(641)] = 35437, - [SMALL_STATE(642)] = 35461, - [SMALL_STATE(643)] = 35501, - [SMALL_STATE(644)] = 35525, - [SMALL_STATE(645)] = 35565, - [SMALL_STATE(646)] = 35607, - [SMALL_STATE(647)] = 35647, - [SMALL_STATE(648)] = 35687, - [SMALL_STATE(649)] = 35727, - [SMALL_STATE(650)] = 35765, - [SMALL_STATE(651)] = 35807, - [SMALL_STATE(652)] = 35847, - [SMALL_STATE(653)] = 35887, - [SMALL_STATE(654)] = 35927, - [SMALL_STATE(655)] = 35969, - [SMALL_STATE(656)] = 36009, - [SMALL_STATE(657)] = 36051, - [SMALL_STATE(658)] = 36086, - [SMALL_STATE(659)] = 36125, - [SMALL_STATE(660)] = 36162, - [SMALL_STATE(661)] = 36199, - [SMALL_STATE(662)] = 36238, - [SMALL_STATE(663)] = 36277, - [SMALL_STATE(664)] = 36316, - [SMALL_STATE(665)] = 36355, - [SMALL_STATE(666)] = 36394, - [SMALL_STATE(667)] = 36421, - [SMALL_STATE(668)] = 36460, - [SMALL_STATE(669)] = 36487, - [SMALL_STATE(670)] = 36524, - [SMALL_STATE(671)] = 36563, - [SMALL_STATE(672)] = 36602, - [SMALL_STATE(673)] = 36639, - [SMALL_STATE(674)] = 36676, - [SMALL_STATE(675)] = 36711, - [SMALL_STATE(676)] = 36750, - [SMALL_STATE(677)] = 36789, - [SMALL_STATE(678)] = 36828, - [SMALL_STATE(679)] = 36867, - [SMALL_STATE(680)] = 36906, - [SMALL_STATE(681)] = 36941, - [SMALL_STATE(682)] = 36976, - [SMALL_STATE(683)] = 37012, - [SMALL_STATE(684)] = 37046, - [SMALL_STATE(685)] = 37078, - [SMALL_STATE(686)] = 37114, - [SMALL_STATE(687)] = 37150, - [SMALL_STATE(688)] = 37184, - [SMALL_STATE(689)] = 37224, - [SMALL_STATE(690)] = 37258, - [SMALL_STATE(691)] = 37294, - [SMALL_STATE(692)] = 37328, - [SMALL_STATE(693)] = 37360, - [SMALL_STATE(694)] = 37393, - [SMALL_STATE(695)] = 37422, - [SMALL_STATE(696)] = 37451, - [SMALL_STATE(697)] = 37480, - [SMALL_STATE(698)] = 37501, - [SMALL_STATE(699)] = 37530, - [SMALL_STATE(700)] = 37559, - [SMALL_STATE(701)] = 37588, - [SMALL_STATE(702)] = 37609, - [SMALL_STATE(703)] = 37638, - [SMALL_STATE(704)] = 37667, - [SMALL_STATE(705)] = 37696, - [SMALL_STATE(706)] = 37725, - [SMALL_STATE(707)] = 37756, - [SMALL_STATE(708)] = 37785, - [SMALL_STATE(709)] = 37806, - [SMALL_STATE(710)] = 37835, - [SMALL_STATE(711)] = 37864, - [SMALL_STATE(712)] = 37893, - [SMALL_STATE(713)] = 37922, - [SMALL_STATE(714)] = 37951, - [SMALL_STATE(715)] = 37980, - [SMALL_STATE(716)] = 38009, - [SMALL_STATE(717)] = 38038, - [SMALL_STATE(718)] = 38067, - [SMALL_STATE(719)] = 38096, - [SMALL_STATE(720)] = 38127, - [SMALL_STATE(721)] = 38156, - [SMALL_STATE(722)] = 38185, - [SMALL_STATE(723)] = 38214, - [SMALL_STATE(724)] = 38243, - [SMALL_STATE(725)] = 38272, - [SMALL_STATE(726)] = 38301, - [SMALL_STATE(727)] = 38330, - [SMALL_STATE(728)] = 38359, - [SMALL_STATE(729)] = 38388, - [SMALL_STATE(730)] = 38419, - [SMALL_STATE(731)] = 38450, - [SMALL_STATE(732)] = 38479, - [SMALL_STATE(733)] = 38508, - [SMALL_STATE(734)] = 38529, - [SMALL_STATE(735)] = 38550, - [SMALL_STATE(736)] = 38579, - [SMALL_STATE(737)] = 38600, - [SMALL_STATE(738)] = 38629, - [SMALL_STATE(739)] = 38660, - [SMALL_STATE(740)] = 38691, - [SMALL_STATE(741)] = 38720, - [SMALL_STATE(742)] = 38749, - [SMALL_STATE(743)] = 38778, - [SMALL_STATE(744)] = 38807, - [SMALL_STATE(745)] = 38836, - [SMALL_STATE(746)] = 38857, - [SMALL_STATE(747)] = 38886, - [SMALL_STATE(748)] = 38915, - [SMALL_STATE(749)] = 38944, - [SMALL_STATE(750)] = 38975, - [SMALL_STATE(751)] = 39004, - [SMALL_STATE(752)] = 39025, - [SMALL_STATE(753)] = 39054, - [SMALL_STATE(754)] = 39083, - [SMALL_STATE(755)] = 39112, - [SMALL_STATE(756)] = 39141, - [SMALL_STATE(757)] = 39170, - [SMALL_STATE(758)] = 39201, - [SMALL_STATE(759)] = 39232, - [SMALL_STATE(760)] = 39261, - [SMALL_STATE(761)] = 39292, - [SMALL_STATE(762)] = 39321, - [SMALL_STATE(763)] = 39350, - [SMALL_STATE(764)] = 39372, - [SMALL_STATE(765)] = 39398, - [SMALL_STATE(766)] = 39424, - [SMALL_STATE(767)] = 39450, - [SMALL_STATE(768)] = 39474, - [SMALL_STATE(769)] = 39500, - [SMALL_STATE(770)] = 39528, - [SMALL_STATE(771)] = 39554, - [SMALL_STATE(772)] = 39582, - [SMALL_STATE(773)] = 39608, - [SMALL_STATE(774)] = 39634, - [SMALL_STATE(775)] = 39660, - [SMALL_STATE(776)] = 39686, - [SMALL_STATE(777)] = 39712, - [SMALL_STATE(778)] = 39738, - [SMALL_STATE(779)] = 39764, - [SMALL_STATE(780)] = 39792, - [SMALL_STATE(781)] = 39818, - [SMALL_STATE(782)] = 39846, - [SMALL_STATE(783)] = 39874, - [SMALL_STATE(784)] = 39902, - [SMALL_STATE(785)] = 39928, - [SMALL_STATE(786)] = 39954, - [SMALL_STATE(787)] = 39980, - [SMALL_STATE(788)] = 40006, - [SMALL_STATE(789)] = 40032, - [SMALL_STATE(790)] = 40058, - [SMALL_STATE(791)] = 40084, - [SMALL_STATE(792)] = 40116, - [SMALL_STATE(793)] = 40142, - [SMALL_STATE(794)] = 40168, - [SMALL_STATE(795)] = 40194, - [SMALL_STATE(796)] = 40222, - [SMALL_STATE(797)] = 40248, - [SMALL_STATE(798)] = 40274, - [SMALL_STATE(799)] = 40300, - [SMALL_STATE(800)] = 40326, - [SMALL_STATE(801)] = 40352, - [SMALL_STATE(802)] = 40378, - [SMALL_STATE(803)] = 40404, - [SMALL_STATE(804)] = 40430, - [SMALL_STATE(805)] = 40458, - [SMALL_STATE(806)] = 40484, - [SMALL_STATE(807)] = 40510, - [SMALL_STATE(808)] = 40536, - [SMALL_STATE(809)] = 40562, - [SMALL_STATE(810)] = 40588, - [SMALL_STATE(811)] = 40614, - [SMALL_STATE(812)] = 40640, - [SMALL_STATE(813)] = 40666, - [SMALL_STATE(814)] = 40692, - [SMALL_STATE(815)] = 40718, - [SMALL_STATE(816)] = 40744, - [SMALL_STATE(817)] = 40770, - [SMALL_STATE(818)] = 40796, - [SMALL_STATE(819)] = 40822, - [SMALL_STATE(820)] = 40848, - [SMALL_STATE(821)] = 40874, - [SMALL_STATE(822)] = 40900, - [SMALL_STATE(823)] = 40926, - [SMALL_STATE(824)] = 40952, - [SMALL_STATE(825)] = 40978, - [SMALL_STATE(826)] = 41001, - [SMALL_STATE(827)] = 41022, - [SMALL_STATE(828)] = 41045, - [SMALL_STATE(829)] = 41068, - [SMALL_STATE(830)] = 41103, - [SMALL_STATE(831)] = 41124, - [SMALL_STATE(832)] = 41144, - [SMALL_STATE(833)] = 41166, - [SMALL_STATE(834)] = 41184, - [SMALL_STATE(835)] = 41206, - [SMALL_STATE(836)] = 41228, - [SMALL_STATE(837)] = 41248, - [SMALL_STATE(838)] = 41268, - [SMALL_STATE(839)] = 41287, - [SMALL_STATE(840)] = 41306, - [SMALL_STATE(841)] = 41325, - [SMALL_STATE(842)] = 41354, - [SMALL_STATE(843)] = 41383, - [SMALL_STATE(844)] = 41412, - [SMALL_STATE(845)] = 41431, - [SMALL_STATE(846)] = 41460, - [SMALL_STATE(847)] = 41489, - [SMALL_STATE(848)] = 41505, - [SMALL_STATE(849)] = 41521, - [SMALL_STATE(850)] = 41537, - [SMALL_STATE(851)] = 41553, - [SMALL_STATE(852)] = 41585, - [SMALL_STATE(853)] = 41617, - [SMALL_STATE(854)] = 41633, - [SMALL_STATE(855)] = 41665, - [SMALL_STATE(856)] = 41697, - [SMALL_STATE(857)] = 41726, - [SMALL_STATE(858)] = 41753, - [SMALL_STATE(859)] = 41780, - [SMALL_STATE(860)] = 41807, - [SMALL_STATE(861)] = 41836, - [SMALL_STATE(862)] = 41863, - [SMALL_STATE(863)] = 41890, - [SMALL_STATE(864)] = 41921, - [SMALL_STATE(865)] = 41948, - [SMALL_STATE(866)] = 41973, - [SMALL_STATE(867)] = 42000, - [SMALL_STATE(868)] = 42027, - [SMALL_STATE(869)] = 42054, - [SMALL_STATE(870)] = 42085, - [SMALL_STATE(871)] = 42116, - [SMALL_STATE(872)] = 42132, - [SMALL_STATE(873)] = 42148, - [SMALL_STATE(874)] = 42164, - [SMALL_STATE(875)] = 42180, - [SMALL_STATE(876)] = 42196, - [SMALL_STATE(877)] = 42212, - [SMALL_STATE(878)] = 42228, - [SMALL_STATE(879)] = 42250, - [SMALL_STATE(880)] = 42266, - [SMALL_STATE(881)] = 42282, - [SMALL_STATE(882)] = 42298, - [SMALL_STATE(883)] = 42314, - [SMALL_STATE(884)] = 42330, - [SMALL_STATE(885)] = 42356, - [SMALL_STATE(886)] = 42372, - [SMALL_STATE(887)] = 42388, - [SMALL_STATE(888)] = 42404, - [SMALL_STATE(889)] = 42420, - [SMALL_STATE(890)] = 42446, - [SMALL_STATE(891)] = 42462, - [SMALL_STATE(892)] = 42478, - [SMALL_STATE(893)] = 42494, - [SMALL_STATE(894)] = 42520, + [SMALL_STATE(98)] = 0, + [SMALL_STATE(99)] = 138, + [SMALL_STATE(100)] = 268, + [SMALL_STATE(101)] = 398, + [SMALL_STATE(102)] = 518, + [SMALL_STATE(103)] = 635, + [SMALL_STATE(104)] = 752, + [SMALL_STATE(105)] = 867, + [SMALL_STATE(106)] = 984, + [SMALL_STATE(107)] = 1101, + [SMALL_STATE(108)] = 1215, + [SMALL_STATE(109)] = 1347, + [SMALL_STATE(110)] = 1461, + [SMALL_STATE(111)] = 1575, + [SMALL_STATE(112)] = 1689, + [SMALL_STATE(113)] = 1803, + [SMALL_STATE(114)] = 1917, + [SMALL_STATE(115)] = 2046, + [SMALL_STATE(116)] = 2175, + [SMALL_STATE(117)] = 2299, + [SMALL_STATE(118)] = 2425, + [SMALL_STATE(119)] = 2540, + [SMALL_STATE(120)] = 2661, + [SMALL_STATE(121)] = 2772, + [SMALL_STATE(122)] = 2884, + [SMALL_STATE(123)] = 2996, + [SMALL_STATE(124)] = 3108, + [SMALL_STATE(125)] = 3220, + [SMALL_STATE(126)] = 3281, + [SMALL_STATE(127)] = 3342, + [SMALL_STATE(128)] = 3403, + [SMALL_STATE(129)] = 3464, + [SMALL_STATE(130)] = 3525, + [SMALL_STATE(131)] = 3586, + [SMALL_STATE(132)] = 3647, + [SMALL_STATE(133)] = 3708, + [SMALL_STATE(134)] = 3769, + [SMALL_STATE(135)] = 3830, + [SMALL_STATE(136)] = 3891, + [SMALL_STATE(137)] = 3952, + [SMALL_STATE(138)] = 4013, + [SMALL_STATE(139)] = 4074, + [SMALL_STATE(140)] = 4135, + [SMALL_STATE(141)] = 4196, + [SMALL_STATE(142)] = 4257, + [SMALL_STATE(143)] = 4318, + [SMALL_STATE(144)] = 4379, + [SMALL_STATE(145)] = 4440, + [SMALL_STATE(146)] = 4501, + [SMALL_STATE(147)] = 4562, + [SMALL_STATE(148)] = 4623, + [SMALL_STATE(149)] = 4684, + [SMALL_STATE(150)] = 4745, + [SMALL_STATE(151)] = 4806, + [SMALL_STATE(152)] = 4867, + [SMALL_STATE(153)] = 4928, + [SMALL_STATE(154)] = 4989, + [SMALL_STATE(155)] = 5050, + [SMALL_STATE(156)] = 5111, + [SMALL_STATE(157)] = 5172, + [SMALL_STATE(158)] = 5233, + [SMALL_STATE(159)] = 5294, + [SMALL_STATE(160)] = 5355, + [SMALL_STATE(161)] = 5416, + [SMALL_STATE(162)] = 5477, + [SMALL_STATE(163)] = 5538, + [SMALL_STATE(164)] = 5599, + [SMALL_STATE(165)] = 5660, + [SMALL_STATE(166)] = 5721, + [SMALL_STATE(167)] = 5782, + [SMALL_STATE(168)] = 5843, + [SMALL_STATE(169)] = 5904, + [SMALL_STATE(170)] = 5965, + [SMALL_STATE(171)] = 6026, + [SMALL_STATE(172)] = 6087, + [SMALL_STATE(173)] = 6148, + [SMALL_STATE(174)] = 6209, + [SMALL_STATE(175)] = 6270, + [SMALL_STATE(176)] = 6331, + [SMALL_STATE(177)] = 6392, + [SMALL_STATE(178)] = 6453, + [SMALL_STATE(179)] = 6514, + [SMALL_STATE(180)] = 6575, + [SMALL_STATE(181)] = 6636, + [SMALL_STATE(182)] = 6697, + [SMALL_STATE(183)] = 6758, + [SMALL_STATE(184)] = 6819, + [SMALL_STATE(185)] = 6880, + [SMALL_STATE(186)] = 6941, + [SMALL_STATE(187)] = 7002, + [SMALL_STATE(188)] = 7063, + [SMALL_STATE(189)] = 7124, + [SMALL_STATE(190)] = 7185, + [SMALL_STATE(191)] = 7294, + [SMALL_STATE(192)] = 7355, + [SMALL_STATE(193)] = 7416, + [SMALL_STATE(194)] = 7477, + [SMALL_STATE(195)] = 7538, + [SMALL_STATE(196)] = 7599, + [SMALL_STATE(197)] = 7660, + [SMALL_STATE(198)] = 7721, + [SMALL_STATE(199)] = 7829, + [SMALL_STATE(200)] = 7934, + [SMALL_STATE(201)] = 8037, + [SMALL_STATE(202)] = 8140, + [SMALL_STATE(203)] = 8245, + [SMALL_STATE(204)] = 8348, + [SMALL_STATE(205)] = 8452, + [SMALL_STATE(206)] = 8556, + [SMALL_STATE(207)] = 8656, + [SMALL_STATE(208)] = 8760, + [SMALL_STATE(209)] = 8860, + [SMALL_STATE(210)] = 8957, + [SMALL_STATE(211)] = 9054, + [SMALL_STATE(212)] = 9151, + [SMALL_STATE(213)] = 9248, + [SMALL_STATE(214)] = 9345, + [SMALL_STATE(215)] = 9442, + [SMALL_STATE(216)] = 9539, + [SMALL_STATE(217)] = 9638, + [SMALL_STATE(218)] = 9735, + [SMALL_STATE(219)] = 9832, + [SMALL_STATE(220)] = 9929, + [SMALL_STATE(221)] = 10026, + [SMALL_STATE(222)] = 10123, + [SMALL_STATE(223)] = 10217, + [SMALL_STATE(224)] = 10273, + [SMALL_STATE(225)] = 10367, + [SMALL_STATE(226)] = 10461, + [SMALL_STATE(227)] = 10555, + [SMALL_STATE(228)] = 10649, + [SMALL_STATE(229)] = 10743, + [SMALL_STATE(230)] = 10837, + [SMALL_STATE(231)] = 10931, + [SMALL_STATE(232)] = 11025, + [SMALL_STATE(233)] = 11119, + [SMALL_STATE(234)] = 11213, + [SMALL_STATE(235)] = 11269, + [SMALL_STATE(236)] = 11363, + [SMALL_STATE(237)] = 11457, + [SMALL_STATE(238)] = 11551, + [SMALL_STATE(239)] = 11645, + [SMALL_STATE(240)] = 11739, + [SMALL_STATE(241)] = 11833, + [SMALL_STATE(242)] = 11889, + [SMALL_STATE(243)] = 11983, + [SMALL_STATE(244)] = 12077, + [SMALL_STATE(245)] = 12133, + [SMALL_STATE(246)] = 12227, + [SMALL_STATE(247)] = 12321, + [SMALL_STATE(248)] = 12415, + [SMALL_STATE(249)] = 12509, + [SMALL_STATE(250)] = 12603, + [SMALL_STATE(251)] = 12697, + [SMALL_STATE(252)] = 12753, + [SMALL_STATE(253)] = 12847, + [SMALL_STATE(254)] = 12941, + [SMALL_STATE(255)] = 13039, + [SMALL_STATE(256)] = 13133, + [SMALL_STATE(257)] = 13227, + [SMALL_STATE(258)] = 13321, + [SMALL_STATE(259)] = 13415, + [SMALL_STATE(260)] = 13509, + [SMALL_STATE(261)] = 13603, + [SMALL_STATE(262)] = 13697, + [SMALL_STATE(263)] = 13753, + [SMALL_STATE(264)] = 13847, + [SMALL_STATE(265)] = 13941, + [SMALL_STATE(266)] = 14035, + [SMALL_STATE(267)] = 14129, + [SMALL_STATE(268)] = 14223, + [SMALL_STATE(269)] = 14317, + [SMALL_STATE(270)] = 14411, + [SMALL_STATE(271)] = 14467, + [SMALL_STATE(272)] = 14561, + [SMALL_STATE(273)] = 14655, + [SMALL_STATE(274)] = 14711, + [SMALL_STATE(275)] = 14805, + [SMALL_STATE(276)] = 14861, + [SMALL_STATE(277)] = 14955, + [SMALL_STATE(278)] = 15049, + [SMALL_STATE(279)] = 15104, + [SMALL_STATE(280)] = 15159, + [SMALL_STATE(281)] = 15214, + [SMALL_STATE(282)] = 15269, + [SMALL_STATE(283)] = 15324, + [SMALL_STATE(284)] = 15379, + [SMALL_STATE(285)] = 15474, + [SMALL_STATE(286)] = 15529, + [SMALL_STATE(287)] = 15584, + [SMALL_STATE(288)] = 15639, + [SMALL_STATE(289)] = 15694, + [SMALL_STATE(290)] = 15749, + [SMALL_STATE(291)] = 15804, + [SMALL_STATE(292)] = 15859, + [SMALL_STATE(293)] = 15914, + [SMALL_STATE(294)] = 15969, + [SMALL_STATE(295)] = 16024, + [SMALL_STATE(296)] = 16079, + [SMALL_STATE(297)] = 16134, + [SMALL_STATE(298)] = 16189, + [SMALL_STATE(299)] = 16244, + [SMALL_STATE(300)] = 16299, + [SMALL_STATE(301)] = 16354, + [SMALL_STATE(302)] = 16445, + [SMALL_STATE(303)] = 16500, + [SMALL_STATE(304)] = 16555, + [SMALL_STATE(305)] = 16610, + [SMALL_STATE(306)] = 16665, + [SMALL_STATE(307)] = 16720, + [SMALL_STATE(308)] = 16775, + [SMALL_STATE(309)] = 16870, + [SMALL_STATE(310)] = 16925, + [SMALL_STATE(311)] = 16980, + [SMALL_STATE(312)] = 17035, + [SMALL_STATE(313)] = 17090, + [SMALL_STATE(314)] = 17145, + [SMALL_STATE(315)] = 17200, + [SMALL_STATE(316)] = 17255, + [SMALL_STATE(317)] = 17310, + [SMALL_STATE(318)] = 17365, + [SMALL_STATE(319)] = 17420, + [SMALL_STATE(320)] = 17475, + [SMALL_STATE(321)] = 17530, + [SMALL_STATE(322)] = 17585, + [SMALL_STATE(323)] = 17640, + [SMALL_STATE(324)] = 17695, + [SMALL_STATE(325)] = 17750, + [SMALL_STATE(326)] = 17805, + [SMALL_STATE(327)] = 17860, + [SMALL_STATE(328)] = 17915, + [SMALL_STATE(329)] = 17970, + [SMALL_STATE(330)] = 18025, + [SMALL_STATE(331)] = 18080, + [SMALL_STATE(332)] = 18135, + [SMALL_STATE(333)] = 18190, + [SMALL_STATE(334)] = 18245, + [SMALL_STATE(335)] = 18300, + [SMALL_STATE(336)] = 18355, + [SMALL_STATE(337)] = 18410, + [SMALL_STATE(338)] = 18465, + [SMALL_STATE(339)] = 18520, + [SMALL_STATE(340)] = 18575, + [SMALL_STATE(341)] = 18630, + [SMALL_STATE(342)] = 18685, + [SMALL_STATE(343)] = 18740, + [SMALL_STATE(344)] = 18795, + [SMALL_STATE(345)] = 18850, + [SMALL_STATE(346)] = 18905, + [SMALL_STATE(347)] = 18960, + [SMALL_STATE(348)] = 19015, + [SMALL_STATE(349)] = 19070, + [SMALL_STATE(350)] = 19125, + [SMALL_STATE(351)] = 19180, + [SMALL_STATE(352)] = 19235, + [SMALL_STATE(353)] = 19290, + [SMALL_STATE(354)] = 19345, + [SMALL_STATE(355)] = 19400, + [SMALL_STATE(356)] = 19455, + [SMALL_STATE(357)] = 19510, + [SMALL_STATE(358)] = 19565, + [SMALL_STATE(359)] = 19620, + [SMALL_STATE(360)] = 19675, + [SMALL_STATE(361)] = 19730, + [SMALL_STATE(362)] = 19785, + [SMALL_STATE(363)] = 19840, + [SMALL_STATE(364)] = 19895, + [SMALL_STATE(365)] = 19950, + [SMALL_STATE(366)] = 20005, + [SMALL_STATE(367)] = 20060, + [SMALL_STATE(368)] = 20115, + [SMALL_STATE(369)] = 20170, + [SMALL_STATE(370)] = 20225, + [SMALL_STATE(371)] = 20280, + [SMALL_STATE(372)] = 20335, + [SMALL_STATE(373)] = 20390, + [SMALL_STATE(374)] = 20445, + [SMALL_STATE(375)] = 20500, + [SMALL_STATE(376)] = 20555, + [SMALL_STATE(377)] = 20610, + [SMALL_STATE(378)] = 20665, + [SMALL_STATE(379)] = 20720, + [SMALL_STATE(380)] = 20775, + [SMALL_STATE(381)] = 20830, + [SMALL_STATE(382)] = 20885, + [SMALL_STATE(383)] = 20940, + [SMALL_STATE(384)] = 20995, + [SMALL_STATE(385)] = 21050, + [SMALL_STATE(386)] = 21105, + [SMALL_STATE(387)] = 21160, + [SMALL_STATE(388)] = 21251, + [SMALL_STATE(389)] = 21342, + [SMALL_STATE(390)] = 21397, + [SMALL_STATE(391)] = 21452, + [SMALL_STATE(392)] = 21507, + [SMALL_STATE(393)] = 21562, + [SMALL_STATE(394)] = 21617, + [SMALL_STATE(395)] = 21672, + [SMALL_STATE(396)] = 21727, + [SMALL_STATE(397)] = 21782, + [SMALL_STATE(398)] = 21837, + [SMALL_STATE(399)] = 21892, + [SMALL_STATE(400)] = 21947, + [SMALL_STATE(401)] = 22002, + [SMALL_STATE(402)] = 22057, + [SMALL_STATE(403)] = 22112, + [SMALL_STATE(404)] = 22167, + [SMALL_STATE(405)] = 22222, + [SMALL_STATE(406)] = 22277, + [SMALL_STATE(407)] = 22332, + [SMALL_STATE(408)] = 22387, + [SMALL_STATE(409)] = 22442, + [SMALL_STATE(410)] = 22497, + [SMALL_STATE(411)] = 22552, + [SMALL_STATE(412)] = 22647, + [SMALL_STATE(413)] = 22702, + [SMALL_STATE(414)] = 22757, + [SMALL_STATE(415)] = 22812, + [SMALL_STATE(416)] = 22867, + [SMALL_STATE(417)] = 22922, + [SMALL_STATE(418)] = 22977, + [SMALL_STATE(419)] = 23032, + [SMALL_STATE(420)] = 23087, + [SMALL_STATE(421)] = 23142, + [SMALL_STATE(422)] = 23197, + [SMALL_STATE(423)] = 23252, + [SMALL_STATE(424)] = 23307, + [SMALL_STATE(425)] = 23362, + [SMALL_STATE(426)] = 23417, + [SMALL_STATE(427)] = 23472, + [SMALL_STATE(428)] = 23527, + [SMALL_STATE(429)] = 23582, + [SMALL_STATE(430)] = 23637, + [SMALL_STATE(431)] = 23692, + [SMALL_STATE(432)] = 23787, + [SMALL_STATE(433)] = 23842, + [SMALL_STATE(434)] = 23897, + [SMALL_STATE(435)] = 23952, + [SMALL_STATE(436)] = 24007, + [SMALL_STATE(437)] = 24062, + [SMALL_STATE(438)] = 24117, + [SMALL_STATE(439)] = 24172, + [SMALL_STATE(440)] = 24227, + [SMALL_STATE(441)] = 24282, + [SMALL_STATE(442)] = 24337, + [SMALL_STATE(443)] = 24392, + [SMALL_STATE(444)] = 24447, + [SMALL_STATE(445)] = 24502, + [SMALL_STATE(446)] = 24557, + [SMALL_STATE(447)] = 24612, + [SMALL_STATE(448)] = 24707, + [SMALL_STATE(449)] = 24762, + [SMALL_STATE(450)] = 24817, + [SMALL_STATE(451)] = 24872, + [SMALL_STATE(452)] = 24927, + [SMALL_STATE(453)] = 24982, + [SMALL_STATE(454)] = 25037, + [SMALL_STATE(455)] = 25092, + [SMALL_STATE(456)] = 25147, + [SMALL_STATE(457)] = 25202, + [SMALL_STATE(458)] = 25256, + [SMALL_STATE(459)] = 25310, + [SMALL_STATE(460)] = 25364, + [SMALL_STATE(461)] = 25418, + [SMALL_STATE(462)] = 25472, + [SMALL_STATE(463)] = 25526, + [SMALL_STATE(464)] = 25580, + [SMALL_STATE(465)] = 25634, + [SMALL_STATE(466)] = 25724, + [SMALL_STATE(467)] = 25778, + [SMALL_STATE(468)] = 25832, + [SMALL_STATE(469)] = 25922, + [SMALL_STATE(470)] = 25976, + [SMALL_STATE(471)] = 26030, + [SMALL_STATE(472)] = 26084, + [SMALL_STATE(473)] = 26138, + [SMALL_STATE(474)] = 26192, + [SMALL_STATE(475)] = 26246, + [SMALL_STATE(476)] = 26300, + [SMALL_STATE(477)] = 26354, + [SMALL_STATE(478)] = 26408, + [SMALL_STATE(479)] = 26478, + [SMALL_STATE(480)] = 26532, + [SMALL_STATE(481)] = 26619, + [SMALL_STATE(482)] = 26672, + [SMALL_STATE(483)] = 26725, + [SMALL_STATE(484)] = 26778, + [SMALL_STATE(485)] = 26830, + [SMALL_STATE(486)] = 26882, + [SMALL_STATE(487)] = 26934, + [SMALL_STATE(488)] = 26996, + [SMALL_STATE(489)] = 27048, + [SMALL_STATE(490)] = 27100, + [SMALL_STATE(491)] = 27162, + [SMALL_STATE(492)] = 27214, + [SMALL_STATE(493)] = 27300, + [SMALL_STATE(494)] = 27352, + [SMALL_STATE(495)] = 27404, + [SMALL_STATE(496)] = 27456, + [SMALL_STATE(497)] = 27508, + [SMALL_STATE(498)] = 27560, + [SMALL_STATE(499)] = 27612, + [SMALL_STATE(500)] = 27664, + [SMALL_STATE(501)] = 27716, + [SMALL_STATE(502)] = 27802, + [SMALL_STATE(503)] = 27854, + [SMALL_STATE(504)] = 27937, + [SMALL_STATE(505)] = 28020, + [SMALL_STATE(506)] = 28071, + [SMALL_STATE(507)] = 28154, + [SMALL_STATE(508)] = 28237, + [SMALL_STATE(509)] = 28320, + [SMALL_STATE(510)] = 28371, + [SMALL_STATE(511)] = 28422, + [SMALL_STATE(512)] = 28505, + [SMALL_STATE(513)] = 28556, + [SMALL_STATE(514)] = 28607, + [SMALL_STATE(515)] = 28666, + [SMALL_STATE(516)] = 28749, + [SMALL_STATE(517)] = 28832, + [SMALL_STATE(518)] = 28883, + [SMALL_STATE(519)] = 28966, + [SMALL_STATE(520)] = 29049, + [SMALL_STATE(521)] = 29100, + [SMALL_STATE(522)] = 29183, + [SMALL_STATE(523)] = 29240, + [SMALL_STATE(524)] = 29296, + [SMALL_STATE(525)] = 29352, + [SMALL_STATE(526)] = 29408, + [SMALL_STATE(527)] = 29474, + [SMALL_STATE(528)] = 29521, + [SMALL_STATE(529)] = 29570, + [SMALL_STATE(530)] = 29617, + [SMALL_STATE(531)] = 29664, + [SMALL_STATE(532)] = 29711, + [SMALL_STATE(533)] = 29782, + [SMALL_STATE(534)] = 29829, + [SMALL_STATE(535)] = 29896, + [SMALL_STATE(536)] = 29963, + [SMALL_STATE(537)] = 30010, + [SMALL_STATE(538)] = 30081, + [SMALL_STATE(539)] = 30128, + [SMALL_STATE(540)] = 30212, + [SMALL_STATE(541)] = 30258, + [SMALL_STATE(542)] = 30304, + [SMALL_STATE(543)] = 30350, + [SMALL_STATE(544)] = 30418, + [SMALL_STATE(545)] = 30464, + [SMALL_STATE(546)] = 30543, + [SMALL_STATE(547)] = 30595, + [SMALL_STATE(548)] = 30647, + [SMALL_STATE(549)] = 30705, + [SMALL_STATE(550)] = 30757, + [SMALL_STATE(551)] = 30809, + [SMALL_STATE(552)] = 30861, + [SMALL_STATE(553)] = 30942, + [SMALL_STATE(554)] = 31023, + [SMALL_STATE(555)] = 31070, + [SMALL_STATE(556)] = 31112, + [SMALL_STATE(557)] = 31153, + [SMALL_STATE(558)] = 31207, + [SMALL_STATE(559)] = 31263, + [SMALL_STATE(560)] = 31319, + [SMALL_STATE(561)] = 31375, + [SMALL_STATE(562)] = 31431, + [SMALL_STATE(563)] = 31474, + [SMALL_STATE(564)] = 31524, + [SMALL_STATE(565)] = 31594, + [SMALL_STATE(566)] = 31639, + [SMALL_STATE(567)] = 31688, + [SMALL_STATE(568)] = 31730, + [SMALL_STATE(569)] = 31785, + [SMALL_STATE(570)] = 31826, + [SMALL_STATE(571)] = 31866, + [SMALL_STATE(572)] = 31922, + [SMALL_STATE(573)] = 31978, + [SMALL_STATE(574)] = 32034, + [SMALL_STATE(575)] = 32090, + [SMALL_STATE(576)] = 32126, + [SMALL_STATE(577)] = 32182, + [SMALL_STATE(578)] = 32229, + [SMALL_STATE(579)] = 32286, + [SMALL_STATE(580)] = 32343, + [SMALL_STATE(581)] = 32400, + [SMALL_STATE(582)] = 32457, + [SMALL_STATE(583)] = 32514, + [SMALL_STATE(584)] = 32551, + [SMALL_STATE(585)] = 32605, + [SMALL_STATE(586)] = 32663, + [SMALL_STATE(587)] = 32717, + [SMALL_STATE(588)] = 32749, + [SMALL_STATE(589)] = 32803, + [SMALL_STATE(590)] = 32857, + [SMALL_STATE(591)] = 32911, + [SMALL_STATE(592)] = 32945, + [SMALL_STATE(593)] = 32985, + [SMALL_STATE(594)] = 33035, + [SMALL_STATE(595)] = 33089, + [SMALL_STATE(596)] = 33144, + [SMALL_STATE(597)] = 33195, + [SMALL_STATE(598)] = 33246, + [SMALL_STATE(599)] = 33295, + [SMALL_STATE(600)] = 33350, + [SMALL_STATE(601)] = 33405, + [SMALL_STATE(602)] = 33434, + [SMALL_STATE(603)] = 33463, + [SMALL_STATE(604)] = 33514, + [SMALL_STATE(605)] = 33543, + [SMALL_STATE(606)] = 33594, + [SMALL_STATE(607)] = 33645, + [SMALL_STATE(608)] = 33686, + [SMALL_STATE(609)] = 33737, + [SMALL_STATE(610)] = 33789, + [SMALL_STATE(611)] = 33841, + [SMALL_STATE(612)] = 33893, + [SMALL_STATE(613)] = 33944, + [SMALL_STATE(614)] = 33985, + [SMALL_STATE(615)] = 34036, + [SMALL_STATE(616)] = 34085, + [SMALL_STATE(617)] = 34128, + [SMALL_STATE(618)] = 34159, + [SMALL_STATE(619)] = 34188, + [SMALL_STATE(620)] = 34219, + [SMALL_STATE(621)] = 34268, + [SMALL_STATE(622)] = 34317, + [SMALL_STATE(623)] = 34366, + [SMALL_STATE(624)] = 34413, + [SMALL_STATE(625)] = 34444, + [SMALL_STATE(626)] = 34495, + [SMALL_STATE(627)] = 34538, + [SMALL_STATE(628)] = 34564, + [SMALL_STATE(629)] = 34592, + [SMALL_STATE(630)] = 34618, + [SMALL_STATE(631)] = 34662, + [SMALL_STATE(632)] = 34690, + [SMALL_STATE(633)] = 34716, + [SMALL_STATE(634)] = 34762, + [SMALL_STATE(635)] = 34788, + [SMALL_STATE(636)] = 34816, + [SMALL_STATE(637)] = 34844, + [SMALL_STATE(638)] = 34872, + [SMALL_STATE(639)] = 34900, + [SMALL_STATE(640)] = 34928, + [SMALL_STATE(641)] = 34956, + [SMALL_STATE(642)] = 35002, + [SMALL_STATE(643)] = 35048, + [SMALL_STATE(644)] = 35076, + [SMALL_STATE(645)] = 35102, + [SMALL_STATE(646)] = 35130, + [SMALL_STATE(647)] = 35175, + [SMALL_STATE(648)] = 35218, + [SMALL_STATE(649)] = 35247, + [SMALL_STATE(650)] = 35276, + [SMALL_STATE(651)] = 35311, + [SMALL_STATE(652)] = 35352, + [SMALL_STATE(653)] = 35387, + [SMALL_STATE(654)] = 35430, + [SMALL_STATE(655)] = 35475, + [SMALL_STATE(656)] = 35504, + [SMALL_STATE(657)] = 35547, + [SMALL_STATE(658)] = 35592, + [SMALL_STATE(659)] = 35637, + [SMALL_STATE(660)] = 35666, + [SMALL_STATE(661)] = 35711, + [SMALL_STATE(662)] = 35748, + [SMALL_STATE(663)] = 35777, + [SMALL_STATE(664)] = 35806, + [SMALL_STATE(665)] = 35851, + [SMALL_STATE(666)] = 35893, + [SMALL_STATE(667)] = 35935, + [SMALL_STATE(668)] = 35975, + [SMALL_STATE(669)] = 36015, + [SMALL_STATE(670)] = 36053, + [SMALL_STATE(671)] = 36093, + [SMALL_STATE(672)] = 36133, + [SMALL_STATE(673)] = 36175, + [SMALL_STATE(674)] = 36217, + [SMALL_STATE(675)] = 36257, + [SMALL_STATE(676)] = 36297, + [SMALL_STATE(677)] = 36337, + [SMALL_STATE(678)] = 36361, + [SMALL_STATE(679)] = 36403, + [SMALL_STATE(680)] = 36443, + [SMALL_STATE(681)] = 36483, + [SMALL_STATE(682)] = 36507, + [SMALL_STATE(683)] = 36531, + [SMALL_STATE(684)] = 36555, + [SMALL_STATE(685)] = 36579, + [SMALL_STATE(686)] = 36614, + [SMALL_STATE(687)] = 36653, + [SMALL_STATE(688)] = 36690, + [SMALL_STATE(689)] = 36717, + [SMALL_STATE(690)] = 36756, + [SMALL_STATE(691)] = 36795, + [SMALL_STATE(692)] = 36834, + [SMALL_STATE(693)] = 36873, + [SMALL_STATE(694)] = 36912, + [SMALL_STATE(695)] = 36951, + [SMALL_STATE(696)] = 36990, + [SMALL_STATE(697)] = 37027, + [SMALL_STATE(698)] = 37054, + [SMALL_STATE(699)] = 37091, + [SMALL_STATE(700)] = 37126, + [SMALL_STATE(701)] = 37163, + [SMALL_STATE(702)] = 37202, + [SMALL_STATE(703)] = 37241, + [SMALL_STATE(704)] = 37280, + [SMALL_STATE(705)] = 37319, + [SMALL_STATE(706)] = 37358, + [SMALL_STATE(707)] = 37395, + [SMALL_STATE(708)] = 37434, + [SMALL_STATE(709)] = 37469, + [SMALL_STATE(710)] = 37504, + [SMALL_STATE(711)] = 37538, + [SMALL_STATE(712)] = 37574, + [SMALL_STATE(713)] = 37606, + [SMALL_STATE(714)] = 37642, + [SMALL_STATE(715)] = 37674, + [SMALL_STATE(716)] = 37708, + [SMALL_STATE(717)] = 37744, + [SMALL_STATE(718)] = 37778, + [SMALL_STATE(719)] = 37812, + [SMALL_STATE(720)] = 37848, + [SMALL_STATE(721)] = 37888, + [SMALL_STATE(722)] = 37909, + [SMALL_STATE(723)] = 37930, + [SMALL_STATE(724)] = 37959, + [SMALL_STATE(725)] = 37988, + [SMALL_STATE(726)] = 38017, + [SMALL_STATE(727)] = 38048, + [SMALL_STATE(728)] = 38077, + [SMALL_STATE(729)] = 38106, + [SMALL_STATE(730)] = 38137, + [SMALL_STATE(731)] = 38166, + [SMALL_STATE(732)] = 38195, + [SMALL_STATE(733)] = 38224, + [SMALL_STATE(734)] = 38253, + [SMALL_STATE(735)] = 38284, + [SMALL_STATE(736)] = 38313, + [SMALL_STATE(737)] = 38342, + [SMALL_STATE(738)] = 38371, + [SMALL_STATE(739)] = 38400, + [SMALL_STATE(740)] = 38429, + [SMALL_STATE(741)] = 38458, + [SMALL_STATE(742)] = 38491, + [SMALL_STATE(743)] = 38520, + [SMALL_STATE(744)] = 38549, + [SMALL_STATE(745)] = 38578, + [SMALL_STATE(746)] = 38607, + [SMALL_STATE(747)] = 38636, + [SMALL_STATE(748)] = 38657, + [SMALL_STATE(749)] = 38686, + [SMALL_STATE(750)] = 38715, + [SMALL_STATE(751)] = 38744, + [SMALL_STATE(752)] = 38773, + [SMALL_STATE(753)] = 38802, + [SMALL_STATE(754)] = 38831, + [SMALL_STATE(755)] = 38860, + [SMALL_STATE(756)] = 38891, + [SMALL_STATE(757)] = 38912, + [SMALL_STATE(758)] = 38941, + [SMALL_STATE(759)] = 38970, + [SMALL_STATE(760)] = 38999, + [SMALL_STATE(761)] = 39030, + [SMALL_STATE(762)] = 39061, + [SMALL_STATE(763)] = 39092, + [SMALL_STATE(764)] = 39121, + [SMALL_STATE(765)] = 39142, + [SMALL_STATE(766)] = 39171, + [SMALL_STATE(767)] = 39192, + [SMALL_STATE(768)] = 39221, + [SMALL_STATE(769)] = 39250, + [SMALL_STATE(770)] = 39271, + [SMALL_STATE(771)] = 39300, + [SMALL_STATE(772)] = 39329, + [SMALL_STATE(773)] = 39358, + [SMALL_STATE(774)] = 39387, + [SMALL_STATE(775)] = 39416, + [SMALL_STATE(776)] = 39445, + [SMALL_STATE(777)] = 39474, + [SMALL_STATE(778)] = 39503, + [SMALL_STATE(779)] = 39532, + [SMALL_STATE(780)] = 39561, + [SMALL_STATE(781)] = 39590, + [SMALL_STATE(782)] = 39619, + [SMALL_STATE(783)] = 39648, + [SMALL_STATE(784)] = 39679, + [SMALL_STATE(785)] = 39708, + [SMALL_STATE(786)] = 39739, + [SMALL_STATE(787)] = 39768, + [SMALL_STATE(788)] = 39797, + [SMALL_STATE(789)] = 39826, + [SMALL_STATE(790)] = 39847, + [SMALL_STATE(791)] = 39878, + [SMALL_STATE(792)] = 39904, + [SMALL_STATE(793)] = 39930, + [SMALL_STATE(794)] = 39956, + [SMALL_STATE(795)] = 39982, + [SMALL_STATE(796)] = 40008, + [SMALL_STATE(797)] = 40030, + [SMALL_STATE(798)] = 40056, + [SMALL_STATE(799)] = 40084, + [SMALL_STATE(800)] = 40110, + [SMALL_STATE(801)] = 40136, + [SMALL_STATE(802)] = 40162, + [SMALL_STATE(803)] = 40188, + [SMALL_STATE(804)] = 40214, + [SMALL_STATE(805)] = 40240, + [SMALL_STATE(806)] = 40266, + [SMALL_STATE(807)] = 40292, + [SMALL_STATE(808)] = 40318, + [SMALL_STATE(809)] = 40344, + [SMALL_STATE(810)] = 40370, + [SMALL_STATE(811)] = 40396, + [SMALL_STATE(812)] = 40422, + [SMALL_STATE(813)] = 40448, + [SMALL_STATE(814)] = 40472, + [SMALL_STATE(815)] = 40498, + [SMALL_STATE(816)] = 40524, + [SMALL_STATE(817)] = 40550, + [SMALL_STATE(818)] = 40576, + [SMALL_STATE(819)] = 40602, + [SMALL_STATE(820)] = 40628, + [SMALL_STATE(821)] = 40654, + [SMALL_STATE(822)] = 40680, + [SMALL_STATE(823)] = 40706, + [SMALL_STATE(824)] = 40732, + [SMALL_STATE(825)] = 40758, + [SMALL_STATE(826)] = 40784, + [SMALL_STATE(827)] = 40810, + [SMALL_STATE(828)] = 40836, + [SMALL_STATE(829)] = 40862, + [SMALL_STATE(830)] = 40888, + [SMALL_STATE(831)] = 40914, + [SMALL_STATE(832)] = 40942, + [SMALL_STATE(833)] = 40968, + [SMALL_STATE(834)] = 41000, + [SMALL_STATE(835)] = 41026, + [SMALL_STATE(836)] = 41054, + [SMALL_STATE(837)] = 41080, + [SMALL_STATE(838)] = 41106, + [SMALL_STATE(839)] = 41132, + [SMALL_STATE(840)] = 41160, + [SMALL_STATE(841)] = 41186, + [SMALL_STATE(842)] = 41212, + [SMALL_STATE(843)] = 41240, + [SMALL_STATE(844)] = 41266, + [SMALL_STATE(845)] = 41292, + [SMALL_STATE(846)] = 41320, + [SMALL_STATE(847)] = 41346, + [SMALL_STATE(848)] = 41372, + [SMALL_STATE(849)] = 41400, + [SMALL_STATE(850)] = 41428, + [SMALL_STATE(851)] = 41454, + [SMALL_STATE(852)] = 41480, + [SMALL_STATE(853)] = 41506, + [SMALL_STATE(854)] = 41529, + [SMALL_STATE(855)] = 41550, + [SMALL_STATE(856)] = 41585, + [SMALL_STATE(857)] = 41608, + [SMALL_STATE(858)] = 41631, + [SMALL_STATE(859)] = 41652, + [SMALL_STATE(860)] = 41674, + [SMALL_STATE(861)] = 41694, + [SMALL_STATE(862)] = 41716, + [SMALL_STATE(863)] = 41736, + [SMALL_STATE(864)] = 41754, + [SMALL_STATE(865)] = 41774, + [SMALL_STATE(866)] = 41796, + [SMALL_STATE(867)] = 41825, + [SMALL_STATE(868)] = 41844, + [SMALL_STATE(869)] = 41863, + [SMALL_STATE(870)] = 41892, + [SMALL_STATE(871)] = 41921, + [SMALL_STATE(872)] = 41940, + [SMALL_STATE(873)] = 41959, + [SMALL_STATE(874)] = 41988, + [SMALL_STATE(875)] = 42017, + [SMALL_STATE(876)] = 42049, + [SMALL_STATE(877)] = 42081, + [SMALL_STATE(878)] = 42113, + [SMALL_STATE(879)] = 42129, + [SMALL_STATE(880)] = 42145, + [SMALL_STATE(881)] = 42161, + [SMALL_STATE(882)] = 42177, + [SMALL_STATE(883)] = 42193, + [SMALL_STATE(884)] = 42225, + [SMALL_STATE(885)] = 42250, + [SMALL_STATE(886)] = 42279, + [SMALL_STATE(887)] = 42308, + [SMALL_STATE(888)] = 42335, + [SMALL_STATE(889)] = 42362, + [SMALL_STATE(890)] = 42389, + [SMALL_STATE(891)] = 42420, + [SMALL_STATE(892)] = 42447, + [SMALL_STATE(893)] = 42478, + [SMALL_STATE(894)] = 42509, [SMALL_STATE(895)] = 42536, - [SMALL_STATE(896)] = 42552, - [SMALL_STATE(897)] = 42568, - [SMALL_STATE(898)] = 42594, - [SMALL_STATE(899)] = 42610, - [SMALL_STATE(900)] = 42634, - [SMALL_STATE(901)] = 42650, - [SMALL_STATE(902)] = 42666, - [SMALL_STATE(903)] = 42682, - [SMALL_STATE(904)] = 42698, - [SMALL_STATE(905)] = 42714, - [SMALL_STATE(906)] = 42730, - [SMALL_STATE(907)] = 42746, - [SMALL_STATE(908)] = 42762, - [SMALL_STATE(909)] = 42778, - [SMALL_STATE(910)] = 42804, - [SMALL_STATE(911)] = 42832, - [SMALL_STATE(912)] = 42848, - [SMALL_STATE(913)] = 42870, - [SMALL_STATE(914)] = 42886, - [SMALL_STATE(915)] = 42912, - [SMALL_STATE(916)] = 42928, - [SMALL_STATE(917)] = 42944, - [SMALL_STATE(918)] = 42960, - [SMALL_STATE(919)] = 42976, - [SMALL_STATE(920)] = 43001, - [SMALL_STATE(921)] = 43016, - [SMALL_STATE(922)] = 43041, - [SMALL_STATE(923)] = 43066, - [SMALL_STATE(924)] = 43087, - [SMALL_STATE(925)] = 43112, - [SMALL_STATE(926)] = 43137, - [SMALL_STATE(927)] = 43162, - [SMALL_STATE(928)] = 43187, - [SMALL_STATE(929)] = 43200, - [SMALL_STATE(930)] = 43223, - [SMALL_STATE(931)] = 43236, - [SMALL_STATE(932)] = 43249, - [SMALL_STATE(933)] = 43274, - [SMALL_STATE(934)] = 43299, - [SMALL_STATE(935)] = 43312, - [SMALL_STATE(936)] = 43337, - [SMALL_STATE(937)] = 43362, - [SMALL_STATE(938)] = 43387, - [SMALL_STATE(939)] = 43402, - [SMALL_STATE(940)] = 43417, - [SMALL_STATE(941)] = 43430, - [SMALL_STATE(942)] = 43451, - [SMALL_STATE(943)] = 43466, - [SMALL_STATE(944)] = 43481, - [SMALL_STATE(945)] = 43502, - [SMALL_STATE(946)] = 43517, - [SMALL_STATE(947)] = 43542, - [SMALL_STATE(948)] = 43567, - [SMALL_STATE(949)] = 43592, - [SMALL_STATE(950)] = 43617, - [SMALL_STATE(951)] = 43642, - [SMALL_STATE(952)] = 43667, - [SMALL_STATE(953)] = 43692, - [SMALL_STATE(954)] = 43717, - [SMALL_STATE(955)] = 43742, - [SMALL_STATE(956)] = 43763, - [SMALL_STATE(957)] = 43779, - [SMALL_STATE(958)] = 43799, - [SMALL_STATE(959)] = 43815, - [SMALL_STATE(960)] = 43827, - [SMALL_STATE(961)] = 43849, - [SMALL_STATE(962)] = 43871, - [SMALL_STATE(963)] = 43893, - [SMALL_STATE(964)] = 43915, - [SMALL_STATE(965)] = 43937, - [SMALL_STATE(966)] = 43957, - [SMALL_STATE(967)] = 43975, - [SMALL_STATE(968)] = 43995, - [SMALL_STATE(969)] = 44015, - [SMALL_STATE(970)] = 44031, - [SMALL_STATE(971)] = 44049, - [SMALL_STATE(972)] = 44069, - [SMALL_STATE(973)] = 44091, - [SMALL_STATE(974)] = 44113, - [SMALL_STATE(975)] = 44127, - [SMALL_STATE(976)] = 44147, - [SMALL_STATE(977)] = 44169, - [SMALL_STATE(978)] = 44183, - [SMALL_STATE(979)] = 44205, - [SMALL_STATE(980)] = 44227, - [SMALL_STATE(981)] = 44239, - [SMALL_STATE(982)] = 44257, - [SMALL_STATE(983)] = 44273, - [SMALL_STATE(984)] = 44295, - [SMALL_STATE(985)] = 44317, - [SMALL_STATE(986)] = 44336, - [SMALL_STATE(987)] = 44355, - [SMALL_STATE(988)] = 44374, - [SMALL_STATE(989)] = 44389, - [SMALL_STATE(990)] = 44408, - [SMALL_STATE(991)] = 44427, - [SMALL_STATE(992)] = 44446, - [SMALL_STATE(993)] = 44465, - [SMALL_STATE(994)] = 44484, - [SMALL_STATE(995)] = 44495, - [SMALL_STATE(996)] = 44512, - [SMALL_STATE(997)] = 44531, - [SMALL_STATE(998)] = 44544, - [SMALL_STATE(999)] = 44563, - [SMALL_STATE(1000)] = 44582, - [SMALL_STATE(1001)] = 44601, - [SMALL_STATE(1002)] = 44620, - [SMALL_STATE(1003)] = 44637, - [SMALL_STATE(1004)] = 44656, - [SMALL_STATE(1005)] = 44675, - [SMALL_STATE(1006)] = 44686, - [SMALL_STATE(1007)] = 44703, - [SMALL_STATE(1008)] = 44722, - [SMALL_STATE(1009)] = 44741, - [SMALL_STATE(1010)] = 44758, - [SMALL_STATE(1011)] = 44777, - [SMALL_STATE(1012)] = 44792, - [SMALL_STATE(1013)] = 44811, - [SMALL_STATE(1014)] = 44822, - [SMALL_STATE(1015)] = 44841, - [SMALL_STATE(1016)] = 44860, - [SMALL_STATE(1017)] = 44879, - [SMALL_STATE(1018)] = 44898, - [SMALL_STATE(1019)] = 44917, - [SMALL_STATE(1020)] = 44936, - [SMALL_STATE(1021)] = 44955, - [SMALL_STATE(1022)] = 44974, - [SMALL_STATE(1023)] = 44993, - [SMALL_STATE(1024)] = 45010, - [SMALL_STATE(1025)] = 45025, - [SMALL_STATE(1026)] = 45044, - [SMALL_STATE(1027)] = 45057, - [SMALL_STATE(1028)] = 45076, - [SMALL_STATE(1029)] = 45095, - [SMALL_STATE(1030)] = 45110, - [SMALL_STATE(1031)] = 45123, - [SMALL_STATE(1032)] = 45142, - [SMALL_STATE(1033)] = 45161, - [SMALL_STATE(1034)] = 45176, - [SMALL_STATE(1035)] = 45191, - [SMALL_STATE(1036)] = 45210, - [SMALL_STATE(1037)] = 45229, - [SMALL_STATE(1038)] = 45248, - [SMALL_STATE(1039)] = 45267, - [SMALL_STATE(1040)] = 45286, - [SMALL_STATE(1041)] = 45303, - [SMALL_STATE(1042)] = 45318, - [SMALL_STATE(1043)] = 45337, - [SMALL_STATE(1044)] = 45354, - [SMALL_STATE(1045)] = 45373, - [SMALL_STATE(1046)] = 45392, - [SMALL_STATE(1047)] = 45411, - [SMALL_STATE(1048)] = 45430, - [SMALL_STATE(1049)] = 45449, - [SMALL_STATE(1050)] = 45468, - [SMALL_STATE(1051)] = 45487, - [SMALL_STATE(1052)] = 45506, - [SMALL_STATE(1053)] = 45525, - [SMALL_STATE(1054)] = 45544, - [SMALL_STATE(1055)] = 45563, - [SMALL_STATE(1056)] = 45582, - [SMALL_STATE(1057)] = 45601, - [SMALL_STATE(1058)] = 45620, - [SMALL_STATE(1059)] = 45639, - [SMALL_STATE(1060)] = 45658, - [SMALL_STATE(1061)] = 45675, - [SMALL_STATE(1062)] = 45692, - [SMALL_STATE(1063)] = 45703, - [SMALL_STATE(1064)] = 45714, - [SMALL_STATE(1065)] = 45733, - [SMALL_STATE(1066)] = 45752, - [SMALL_STATE(1067)] = 45769, - [SMALL_STATE(1068)] = 45788, - [SMALL_STATE(1069)] = 45803, - [SMALL_STATE(1070)] = 45818, - [SMALL_STATE(1071)] = 45829, - [SMALL_STATE(1072)] = 45844, - [SMALL_STATE(1073)] = 45863, - [SMALL_STATE(1074)] = 45877, - [SMALL_STATE(1075)] = 45893, - [SMALL_STATE(1076)] = 45909, - [SMALL_STATE(1077)] = 45925, - [SMALL_STATE(1078)] = 45939, - [SMALL_STATE(1079)] = 45953, - [SMALL_STATE(1080)] = 45967, - [SMALL_STATE(1081)] = 45979, - [SMALL_STATE(1082)] = 45993, - [SMALL_STATE(1083)] = 46007, - [SMALL_STATE(1084)] = 46023, - [SMALL_STATE(1085)] = 46039, - [SMALL_STATE(1086)] = 46055, - [SMALL_STATE(1087)] = 46069, - [SMALL_STATE(1088)] = 46085, - [SMALL_STATE(1089)] = 46101, - [SMALL_STATE(1090)] = 46117, - [SMALL_STATE(1091)] = 46129, - [SMALL_STATE(1092)] = 46143, - [SMALL_STATE(1093)] = 46159, - [SMALL_STATE(1094)] = 46175, - [SMALL_STATE(1095)] = 46191, - [SMALL_STATE(1096)] = 46201, - [SMALL_STATE(1097)] = 46211, - [SMALL_STATE(1098)] = 46223, - [SMALL_STATE(1099)] = 46237, - [SMALL_STATE(1100)] = 46253, - [SMALL_STATE(1101)] = 46263, - [SMALL_STATE(1102)] = 46273, - [SMALL_STATE(1103)] = 46289, - [SMALL_STATE(1104)] = 46303, - [SMALL_STATE(1105)] = 46317, - [SMALL_STATE(1106)] = 46333, - [SMALL_STATE(1107)] = 46345, - [SMALL_STATE(1108)] = 46361, - [SMALL_STATE(1109)] = 46377, - [SMALL_STATE(1110)] = 46391, - [SMALL_STATE(1111)] = 46407, - [SMALL_STATE(1112)] = 46421, - [SMALL_STATE(1113)] = 46431, - [SMALL_STATE(1114)] = 46447, - [SMALL_STATE(1115)] = 46463, - [SMALL_STATE(1116)] = 46479, - [SMALL_STATE(1117)] = 46493, - [SMALL_STATE(1118)] = 46509, - [SMALL_STATE(1119)] = 46525, - [SMALL_STATE(1120)] = 46539, - [SMALL_STATE(1121)] = 46555, - [SMALL_STATE(1122)] = 46569, - [SMALL_STATE(1123)] = 46581, - [SMALL_STATE(1124)] = 46597, - [SMALL_STATE(1125)] = 46611, - [SMALL_STATE(1126)] = 46625, - [SMALL_STATE(1127)] = 46635, - [SMALL_STATE(1128)] = 46649, - [SMALL_STATE(1129)] = 46659, - [SMALL_STATE(1130)] = 46675, - [SMALL_STATE(1131)] = 46691, - [SMALL_STATE(1132)] = 46707, - [SMALL_STATE(1133)] = 46723, - [SMALL_STATE(1134)] = 46739, - [SMALL_STATE(1135)] = 46749, - [SMALL_STATE(1136)] = 46765, - [SMALL_STATE(1137)] = 46777, - [SMALL_STATE(1138)] = 46791, - [SMALL_STATE(1139)] = 46805, - [SMALL_STATE(1140)] = 46821, - [SMALL_STATE(1141)] = 46837, - [SMALL_STATE(1142)] = 46849, - [SMALL_STATE(1143)] = 46863, - [SMALL_STATE(1144)] = 46875, - [SMALL_STATE(1145)] = 46891, - [SMALL_STATE(1146)] = 46903, - [SMALL_STATE(1147)] = 46919, - [SMALL_STATE(1148)] = 46933, - [SMALL_STATE(1149)] = 46949, - [SMALL_STATE(1150)] = 46959, - [SMALL_STATE(1151)] = 46973, - [SMALL_STATE(1152)] = 46987, - [SMALL_STATE(1153)] = 47001, - [SMALL_STATE(1154)] = 47013, - [SMALL_STATE(1155)] = 47029, - [SMALL_STATE(1156)] = 47043, - [SMALL_STATE(1157)] = 47057, - [SMALL_STATE(1158)] = 47073, - [SMALL_STATE(1159)] = 47089, - [SMALL_STATE(1160)] = 47103, - [SMALL_STATE(1161)] = 47119, - [SMALL_STATE(1162)] = 47135, - [SMALL_STATE(1163)] = 47149, - [SMALL_STATE(1164)] = 47163, - [SMALL_STATE(1165)] = 47179, - [SMALL_STATE(1166)] = 47195, - [SMALL_STATE(1167)] = 47205, - [SMALL_STATE(1168)] = 47221, - [SMALL_STATE(1169)] = 47235, - [SMALL_STATE(1170)] = 47245, - [SMALL_STATE(1171)] = 47261, - [SMALL_STATE(1172)] = 47277, - [SMALL_STATE(1173)] = 47293, - [SMALL_STATE(1174)] = 47306, - [SMALL_STATE(1175)] = 47319, - [SMALL_STATE(1176)] = 47328, - [SMALL_STATE(1177)] = 47337, - [SMALL_STATE(1178)] = 47350, - [SMALL_STATE(1179)] = 47359, - [SMALL_STATE(1180)] = 47372, - [SMALL_STATE(1181)] = 47385, - [SMALL_STATE(1182)] = 47398, - [SMALL_STATE(1183)] = 47407, - [SMALL_STATE(1184)] = 47420, - [SMALL_STATE(1185)] = 47433, - [SMALL_STATE(1186)] = 47442, - [SMALL_STATE(1187)] = 47453, - [SMALL_STATE(1188)] = 47466, - [SMALL_STATE(1189)] = 47479, - [SMALL_STATE(1190)] = 47492, - [SMALL_STATE(1191)] = 47501, - [SMALL_STATE(1192)] = 47514, - [SMALL_STATE(1193)] = 47527, - [SMALL_STATE(1194)] = 47540, - [SMALL_STATE(1195)] = 47553, - [SMALL_STATE(1196)] = 47566, - [SMALL_STATE(1197)] = 47579, - [SMALL_STATE(1198)] = 47588, - [SMALL_STATE(1199)] = 47601, - [SMALL_STATE(1200)] = 47610, - [SMALL_STATE(1201)] = 47623, - [SMALL_STATE(1202)] = 47636, - [SMALL_STATE(1203)] = 47645, - [SMALL_STATE(1204)] = 47658, - [SMALL_STATE(1205)] = 47667, - [SMALL_STATE(1206)] = 47676, - [SMALL_STATE(1207)] = 47685, - [SMALL_STATE(1208)] = 47694, - [SMALL_STATE(1209)] = 47707, - [SMALL_STATE(1210)] = 47720, - [SMALL_STATE(1211)] = 47729, - [SMALL_STATE(1212)] = 47738, - [SMALL_STATE(1213)] = 47747, - [SMALL_STATE(1214)] = 47760, - [SMALL_STATE(1215)] = 47773, - [SMALL_STATE(1216)] = 47784, - [SMALL_STATE(1217)] = 47795, - [SMALL_STATE(1218)] = 47804, - [SMALL_STATE(1219)] = 47817, - [SMALL_STATE(1220)] = 47830, - [SMALL_STATE(1221)] = 47839, - [SMALL_STATE(1222)] = 47852, - [SMALL_STATE(1223)] = 47861, - [SMALL_STATE(1224)] = 47874, - [SMALL_STATE(1225)] = 47885, - [SMALL_STATE(1226)] = 47898, - [SMALL_STATE(1227)] = 47911, - [SMALL_STATE(1228)] = 47920, - [SMALL_STATE(1229)] = 47929, - [SMALL_STATE(1230)] = 47942, - [SMALL_STATE(1231)] = 47955, - [SMALL_STATE(1232)] = 47968, - [SMALL_STATE(1233)] = 47981, - [SMALL_STATE(1234)] = 47994, - [SMALL_STATE(1235)] = 48007, - [SMALL_STATE(1236)] = 48020, - [SMALL_STATE(1237)] = 48033, - [SMALL_STATE(1238)] = 48046, - [SMALL_STATE(1239)] = 48059, - [SMALL_STATE(1240)] = 48072, - [SMALL_STATE(1241)] = 48085, - [SMALL_STATE(1242)] = 48098, - [SMALL_STATE(1243)] = 48107, - [SMALL_STATE(1244)] = 48120, - [SMALL_STATE(1245)] = 48133, - [SMALL_STATE(1246)] = 48146, - [SMALL_STATE(1247)] = 48159, - [SMALL_STATE(1248)] = 48172, - [SMALL_STATE(1249)] = 48185, - [SMALL_STATE(1250)] = 48194, - [SMALL_STATE(1251)] = 48207, - [SMALL_STATE(1252)] = 48220, - [SMALL_STATE(1253)] = 48233, - [SMALL_STATE(1254)] = 48246, - [SMALL_STATE(1255)] = 48259, - [SMALL_STATE(1256)] = 48272, - [SMALL_STATE(1257)] = 48285, - [SMALL_STATE(1258)] = 48298, - [SMALL_STATE(1259)] = 48311, - [SMALL_STATE(1260)] = 48324, - [SMALL_STATE(1261)] = 48335, - [SMALL_STATE(1262)] = 48348, - [SMALL_STATE(1263)] = 48361, - [SMALL_STATE(1264)] = 48370, - [SMALL_STATE(1265)] = 48379, - [SMALL_STATE(1266)] = 48388, - [SMALL_STATE(1267)] = 48401, - [SMALL_STATE(1268)] = 48410, - [SMALL_STATE(1269)] = 48423, - [SMALL_STATE(1270)] = 48432, - [SMALL_STATE(1271)] = 48445, - [SMALL_STATE(1272)] = 48458, - [SMALL_STATE(1273)] = 48467, - [SMALL_STATE(1274)] = 48476, - [SMALL_STATE(1275)] = 48489, - [SMALL_STATE(1276)] = 48502, - [SMALL_STATE(1277)] = 48515, - [SMALL_STATE(1278)] = 48524, - [SMALL_STATE(1279)] = 48537, - [SMALL_STATE(1280)] = 48546, - [SMALL_STATE(1281)] = 48559, - [SMALL_STATE(1282)] = 48572, - [SMALL_STATE(1283)] = 48581, - [SMALL_STATE(1284)] = 48590, - [SMALL_STATE(1285)] = 48603, - [SMALL_STATE(1286)] = 48616, - [SMALL_STATE(1287)] = 48625, - [SMALL_STATE(1288)] = 48638, - [SMALL_STATE(1289)] = 48651, - [SMALL_STATE(1290)] = 48664, - [SMALL_STATE(1291)] = 48677, - [SMALL_STATE(1292)] = 48690, - [SMALL_STATE(1293)] = 48703, - [SMALL_STATE(1294)] = 48714, - [SMALL_STATE(1295)] = 48727, - [SMALL_STATE(1296)] = 48738, - [SMALL_STATE(1297)] = 48747, - [SMALL_STATE(1298)] = 48756, - [SMALL_STATE(1299)] = 48765, - [SMALL_STATE(1300)] = 48778, - [SMALL_STATE(1301)] = 48787, - [SMALL_STATE(1302)] = 48800, - [SMALL_STATE(1303)] = 48813, - [SMALL_STATE(1304)] = 48826, - [SMALL_STATE(1305)] = 48839, - [SMALL_STATE(1306)] = 48848, - [SMALL_STATE(1307)] = 48861, - [SMALL_STATE(1308)] = 48874, - [SMALL_STATE(1309)] = 48887, - [SMALL_STATE(1310)] = 48900, - [SMALL_STATE(1311)] = 48909, - [SMALL_STATE(1312)] = 48922, - [SMALL_STATE(1313)] = 48935, - [SMALL_STATE(1314)] = 48948, - [SMALL_STATE(1315)] = 48961, - [SMALL_STATE(1316)] = 48974, - [SMALL_STATE(1317)] = 48985, - [SMALL_STATE(1318)] = 48998, - [SMALL_STATE(1319)] = 49011, - [SMALL_STATE(1320)] = 49024, - [SMALL_STATE(1321)] = 49035, - [SMALL_STATE(1322)] = 49048, - [SMALL_STATE(1323)] = 49061, - [SMALL_STATE(1324)] = 49074, - [SMALL_STATE(1325)] = 49087, - [SMALL_STATE(1326)] = 49100, - [SMALL_STATE(1327)] = 49113, - [SMALL_STATE(1328)] = 49122, - [SMALL_STATE(1329)] = 49135, - [SMALL_STATE(1330)] = 49144, - [SMALL_STATE(1331)] = 49153, - [SMALL_STATE(1332)] = 49166, - [SMALL_STATE(1333)] = 49175, - [SMALL_STATE(1334)] = 49188, - [SMALL_STATE(1335)] = 49197, - [SMALL_STATE(1336)] = 49210, - [SMALL_STATE(1337)] = 49223, - [SMALL_STATE(1338)] = 49234, - [SMALL_STATE(1339)] = 49243, - [SMALL_STATE(1340)] = 49256, - [SMALL_STATE(1341)] = 49269, - [SMALL_STATE(1342)] = 49282, - [SMALL_STATE(1343)] = 49295, - [SMALL_STATE(1344)] = 49308, - [SMALL_STATE(1345)] = 49317, - [SMALL_STATE(1346)] = 49330, - [SMALL_STATE(1347)] = 49343, - [SMALL_STATE(1348)] = 49356, - [SMALL_STATE(1349)] = 49369, - [SMALL_STATE(1350)] = 49382, - [SMALL_STATE(1351)] = 49395, - [SMALL_STATE(1352)] = 49408, - [SMALL_STATE(1353)] = 49417, - [SMALL_STATE(1354)] = 49430, - [SMALL_STATE(1355)] = 49443, - [SMALL_STATE(1356)] = 49456, - [SMALL_STATE(1357)] = 49465, - [SMALL_STATE(1358)] = 49478, - [SMALL_STATE(1359)] = 49491, - [SMALL_STATE(1360)] = 49502, - [SMALL_STATE(1361)] = 49515, - [SMALL_STATE(1362)] = 49528, - [SMALL_STATE(1363)] = 49537, - [SMALL_STATE(1364)] = 49550, - [SMALL_STATE(1365)] = 49559, - [SMALL_STATE(1366)] = 49568, - [SMALL_STATE(1367)] = 49581, - [SMALL_STATE(1368)] = 49594, - [SMALL_STATE(1369)] = 49603, - [SMALL_STATE(1370)] = 49612, - [SMALL_STATE(1371)] = 49625, - [SMALL_STATE(1372)] = 49638, - [SMALL_STATE(1373)] = 49647, - [SMALL_STATE(1374)] = 49655, - [SMALL_STATE(1375)] = 49663, - [SMALL_STATE(1376)] = 49671, - [SMALL_STATE(1377)] = 49681, - [SMALL_STATE(1378)] = 49689, - [SMALL_STATE(1379)] = 49699, - [SMALL_STATE(1380)] = 49709, - [SMALL_STATE(1381)] = 49717, - [SMALL_STATE(1382)] = 49727, - [SMALL_STATE(1383)] = 49737, - [SMALL_STATE(1384)] = 49747, - [SMALL_STATE(1385)] = 49757, - [SMALL_STATE(1386)] = 49767, - [SMALL_STATE(1387)] = 49775, - [SMALL_STATE(1388)] = 49785, - [SMALL_STATE(1389)] = 49795, - [SMALL_STATE(1390)] = 49803, - [SMALL_STATE(1391)] = 49811, - [SMALL_STATE(1392)] = 49819, - [SMALL_STATE(1393)] = 49829, - [SMALL_STATE(1394)] = 49837, - [SMALL_STATE(1395)] = 49847, - [SMALL_STATE(1396)] = 49857, - [SMALL_STATE(1397)] = 49867, - [SMALL_STATE(1398)] = 49875, - [SMALL_STATE(1399)] = 49885, - [SMALL_STATE(1400)] = 49895, - [SMALL_STATE(1401)] = 49903, - [SMALL_STATE(1402)] = 49911, - [SMALL_STATE(1403)] = 49921, - [SMALL_STATE(1404)] = 49929, - [SMALL_STATE(1405)] = 49937, - [SMALL_STATE(1406)] = 49947, - [SMALL_STATE(1407)] = 49957, - [SMALL_STATE(1408)] = 49967, - [SMALL_STATE(1409)] = 49975, - [SMALL_STATE(1410)] = 49983, - [SMALL_STATE(1411)] = 49993, - [SMALL_STATE(1412)] = 50003, - [SMALL_STATE(1413)] = 50013, - [SMALL_STATE(1414)] = 50023, - [SMALL_STATE(1415)] = 50031, - [SMALL_STATE(1416)] = 50039, - [SMALL_STATE(1417)] = 50047, - [SMALL_STATE(1418)] = 50057, - [SMALL_STATE(1419)] = 50065, - [SMALL_STATE(1420)] = 50075, - [SMALL_STATE(1421)] = 50083, - [SMALL_STATE(1422)] = 50093, - [SMALL_STATE(1423)] = 50101, - [SMALL_STATE(1424)] = 50111, - [SMALL_STATE(1425)] = 50119, - [SMALL_STATE(1426)] = 50127, - [SMALL_STATE(1427)] = 50135, - [SMALL_STATE(1428)] = 50143, - [SMALL_STATE(1429)] = 50151, - [SMALL_STATE(1430)] = 50159, - [SMALL_STATE(1431)] = 50169, - [SMALL_STATE(1432)] = 50179, - [SMALL_STATE(1433)] = 50187, - [SMALL_STATE(1434)] = 50197, - [SMALL_STATE(1435)] = 50205, - [SMALL_STATE(1436)] = 50215, - [SMALL_STATE(1437)] = 50223, - [SMALL_STATE(1438)] = 50233, - [SMALL_STATE(1439)] = 50243, - [SMALL_STATE(1440)] = 50251, - [SMALL_STATE(1441)] = 50261, - [SMALL_STATE(1442)] = 50269, - [SMALL_STATE(1443)] = 50279, - [SMALL_STATE(1444)] = 50287, - [SMALL_STATE(1445)] = 50297, - [SMALL_STATE(1446)] = 50307, - [SMALL_STATE(1447)] = 50317, - [SMALL_STATE(1448)] = 50325, - [SMALL_STATE(1449)] = 50333, - [SMALL_STATE(1450)] = 50341, - [SMALL_STATE(1451)] = 50351, - [SMALL_STATE(1452)] = 50359, - [SMALL_STATE(1453)] = 50369, - [SMALL_STATE(1454)] = 50377, - [SMALL_STATE(1455)] = 50385, - [SMALL_STATE(1456)] = 50395, - [SMALL_STATE(1457)] = 50405, - [SMALL_STATE(1458)] = 50413, - [SMALL_STATE(1459)] = 50423, - [SMALL_STATE(1460)] = 50433, - [SMALL_STATE(1461)] = 50443, - [SMALL_STATE(1462)] = 50451, - [SMALL_STATE(1463)] = 50459, - [SMALL_STATE(1464)] = 50469, - [SMALL_STATE(1465)] = 50479, - [SMALL_STATE(1466)] = 50487, - [SMALL_STATE(1467)] = 50497, - [SMALL_STATE(1468)] = 50507, - [SMALL_STATE(1469)] = 50515, - [SMALL_STATE(1470)] = 50523, - [SMALL_STATE(1471)] = 50531, - [SMALL_STATE(1472)] = 50541, - [SMALL_STATE(1473)] = 50549, - [SMALL_STATE(1474)] = 50557, - [SMALL_STATE(1475)] = 50565, - [SMALL_STATE(1476)] = 50573, - [SMALL_STATE(1477)] = 50581, - [SMALL_STATE(1478)] = 50591, - [SMALL_STATE(1479)] = 50599, - [SMALL_STATE(1480)] = 50607, - [SMALL_STATE(1481)] = 50617, - [SMALL_STATE(1482)] = 50627, - [SMALL_STATE(1483)] = 50637, - [SMALL_STATE(1484)] = 50647, - [SMALL_STATE(1485)] = 50657, - [SMALL_STATE(1486)] = 50667, - [SMALL_STATE(1487)] = 50675, - [SMALL_STATE(1488)] = 50683, - [SMALL_STATE(1489)] = 50691, - [SMALL_STATE(1490)] = 50699, - [SMALL_STATE(1491)] = 50707, - [SMALL_STATE(1492)] = 50717, - [SMALL_STATE(1493)] = 50727, - [SMALL_STATE(1494)] = 50737, - [SMALL_STATE(1495)] = 50745, - [SMALL_STATE(1496)] = 50753, - [SMALL_STATE(1497)] = 50763, - [SMALL_STATE(1498)] = 50773, - [SMALL_STATE(1499)] = 50781, - [SMALL_STATE(1500)] = 50789, - [SMALL_STATE(1501)] = 50799, - [SMALL_STATE(1502)] = 50807, - [SMALL_STATE(1503)] = 50817, - [SMALL_STATE(1504)] = 50825, - [SMALL_STATE(1505)] = 50835, - [SMALL_STATE(1506)] = 50843, - [SMALL_STATE(1507)] = 50851, - [SMALL_STATE(1508)] = 50861, - [SMALL_STATE(1509)] = 50869, - [SMALL_STATE(1510)] = 50879, - [SMALL_STATE(1511)] = 50887, - [SMALL_STATE(1512)] = 50897, - [SMALL_STATE(1513)] = 50907, - [SMALL_STATE(1514)] = 50915, - [SMALL_STATE(1515)] = 50925, - [SMALL_STATE(1516)] = 50935, - [SMALL_STATE(1517)] = 50943, - [SMALL_STATE(1518)] = 50951, - [SMALL_STATE(1519)] = 50959, - [SMALL_STATE(1520)] = 50969, - [SMALL_STATE(1521)] = 50977, - [SMALL_STATE(1522)] = 50987, - [SMALL_STATE(1523)] = 50995, - [SMALL_STATE(1524)] = 51005, - [SMALL_STATE(1525)] = 51013, - [SMALL_STATE(1526)] = 51023, - [SMALL_STATE(1527)] = 51033, - [SMALL_STATE(1528)] = 51043, - [SMALL_STATE(1529)] = 51051, - [SMALL_STATE(1530)] = 51059, - [SMALL_STATE(1531)] = 51067, - [SMALL_STATE(1532)] = 51077, - [SMALL_STATE(1533)] = 51085, - [SMALL_STATE(1534)] = 51093, - [SMALL_STATE(1535)] = 51103, - [SMALL_STATE(1536)] = 51110, - [SMALL_STATE(1537)] = 51117, - [SMALL_STATE(1538)] = 51124, - [SMALL_STATE(1539)] = 51131, - [SMALL_STATE(1540)] = 51138, - [SMALL_STATE(1541)] = 51145, - [SMALL_STATE(1542)] = 51152, - [SMALL_STATE(1543)] = 51159, - [SMALL_STATE(1544)] = 51166, - [SMALL_STATE(1545)] = 51173, - [SMALL_STATE(1546)] = 51180, - [SMALL_STATE(1547)] = 51187, - [SMALL_STATE(1548)] = 51194, - [SMALL_STATE(1549)] = 51201, - [SMALL_STATE(1550)] = 51208, - [SMALL_STATE(1551)] = 51215, - [SMALL_STATE(1552)] = 51222, - [SMALL_STATE(1553)] = 51229, - [SMALL_STATE(1554)] = 51236, - [SMALL_STATE(1555)] = 51243, - [SMALL_STATE(1556)] = 51250, - [SMALL_STATE(1557)] = 51257, - [SMALL_STATE(1558)] = 51264, - [SMALL_STATE(1559)] = 51271, - [SMALL_STATE(1560)] = 51278, - [SMALL_STATE(1561)] = 51285, - [SMALL_STATE(1562)] = 51292, - [SMALL_STATE(1563)] = 51299, - [SMALL_STATE(1564)] = 51306, - [SMALL_STATE(1565)] = 51313, - [SMALL_STATE(1566)] = 51320, - [SMALL_STATE(1567)] = 51327, - [SMALL_STATE(1568)] = 51334, - [SMALL_STATE(1569)] = 51341, - [SMALL_STATE(1570)] = 51348, - [SMALL_STATE(1571)] = 51355, - [SMALL_STATE(1572)] = 51362, - [SMALL_STATE(1573)] = 51369, - [SMALL_STATE(1574)] = 51376, - [SMALL_STATE(1575)] = 51383, - [SMALL_STATE(1576)] = 51390, - [SMALL_STATE(1577)] = 51397, - [SMALL_STATE(1578)] = 51404, - [SMALL_STATE(1579)] = 51411, - [SMALL_STATE(1580)] = 51418, - [SMALL_STATE(1581)] = 51425, - [SMALL_STATE(1582)] = 51432, - [SMALL_STATE(1583)] = 51439, - [SMALL_STATE(1584)] = 51446, - [SMALL_STATE(1585)] = 51453, - [SMALL_STATE(1586)] = 51460, - [SMALL_STATE(1587)] = 51467, - [SMALL_STATE(1588)] = 51474, - [SMALL_STATE(1589)] = 51481, - [SMALL_STATE(1590)] = 51488, - [SMALL_STATE(1591)] = 51495, - [SMALL_STATE(1592)] = 51502, - [SMALL_STATE(1593)] = 51509, - [SMALL_STATE(1594)] = 51516, - [SMALL_STATE(1595)] = 51523, - [SMALL_STATE(1596)] = 51530, - [SMALL_STATE(1597)] = 51537, - [SMALL_STATE(1598)] = 51544, - [SMALL_STATE(1599)] = 51551, - [SMALL_STATE(1600)] = 51558, - [SMALL_STATE(1601)] = 51565, - [SMALL_STATE(1602)] = 51572, - [SMALL_STATE(1603)] = 51579, - [SMALL_STATE(1604)] = 51586, - [SMALL_STATE(1605)] = 51593, - [SMALL_STATE(1606)] = 51600, - [SMALL_STATE(1607)] = 51607, - [SMALL_STATE(1608)] = 51614, - [SMALL_STATE(1609)] = 51621, - [SMALL_STATE(1610)] = 51628, - [SMALL_STATE(1611)] = 51635, - [SMALL_STATE(1612)] = 51642, - [SMALL_STATE(1613)] = 51649, - [SMALL_STATE(1614)] = 51656, - [SMALL_STATE(1615)] = 51663, - [SMALL_STATE(1616)] = 51670, - [SMALL_STATE(1617)] = 51677, - [SMALL_STATE(1618)] = 51684, - [SMALL_STATE(1619)] = 51691, - [SMALL_STATE(1620)] = 51698, - [SMALL_STATE(1621)] = 51705, - [SMALL_STATE(1622)] = 51712, - [SMALL_STATE(1623)] = 51719, - [SMALL_STATE(1624)] = 51726, - [SMALL_STATE(1625)] = 51733, - [SMALL_STATE(1626)] = 51740, - [SMALL_STATE(1627)] = 51747, - [SMALL_STATE(1628)] = 51754, - [SMALL_STATE(1629)] = 51761, - [SMALL_STATE(1630)] = 51768, - [SMALL_STATE(1631)] = 51775, - [SMALL_STATE(1632)] = 51782, - [SMALL_STATE(1633)] = 51789, - [SMALL_STATE(1634)] = 51796, - [SMALL_STATE(1635)] = 51803, - [SMALL_STATE(1636)] = 51810, - [SMALL_STATE(1637)] = 51817, - [SMALL_STATE(1638)] = 51824, - [SMALL_STATE(1639)] = 51831, - [SMALL_STATE(1640)] = 51838, - [SMALL_STATE(1641)] = 51845, - [SMALL_STATE(1642)] = 51852, - [SMALL_STATE(1643)] = 51859, - [SMALL_STATE(1644)] = 51866, - [SMALL_STATE(1645)] = 51873, - [SMALL_STATE(1646)] = 51880, - [SMALL_STATE(1647)] = 51887, - [SMALL_STATE(1648)] = 51894, - [SMALL_STATE(1649)] = 51901, - [SMALL_STATE(1650)] = 51908, - [SMALL_STATE(1651)] = 51915, - [SMALL_STATE(1652)] = 51922, - [SMALL_STATE(1653)] = 51929, - [SMALL_STATE(1654)] = 51936, - [SMALL_STATE(1655)] = 51943, - [SMALL_STATE(1656)] = 51950, - [SMALL_STATE(1657)] = 51957, - [SMALL_STATE(1658)] = 51964, - [SMALL_STATE(1659)] = 51971, - [SMALL_STATE(1660)] = 51978, - [SMALL_STATE(1661)] = 51985, - [SMALL_STATE(1662)] = 51992, - [SMALL_STATE(1663)] = 51999, - [SMALL_STATE(1664)] = 52006, - [SMALL_STATE(1665)] = 52013, - [SMALL_STATE(1666)] = 52020, - [SMALL_STATE(1667)] = 52027, - [SMALL_STATE(1668)] = 52034, - [SMALL_STATE(1669)] = 52041, - [SMALL_STATE(1670)] = 52048, - [SMALL_STATE(1671)] = 52055, - [SMALL_STATE(1672)] = 52062, - [SMALL_STATE(1673)] = 52069, - [SMALL_STATE(1674)] = 52076, - [SMALL_STATE(1675)] = 52083, - [SMALL_STATE(1676)] = 52090, - [SMALL_STATE(1677)] = 52097, - [SMALL_STATE(1678)] = 52104, - [SMALL_STATE(1679)] = 52111, - [SMALL_STATE(1680)] = 52118, - [SMALL_STATE(1681)] = 52125, - [SMALL_STATE(1682)] = 52132, - [SMALL_STATE(1683)] = 52139, - [SMALL_STATE(1684)] = 52146, - [SMALL_STATE(1685)] = 52153, - [SMALL_STATE(1686)] = 52160, - [SMALL_STATE(1687)] = 52167, - [SMALL_STATE(1688)] = 52174, - [SMALL_STATE(1689)] = 52181, - [SMALL_STATE(1690)] = 52188, - [SMALL_STATE(1691)] = 52195, - [SMALL_STATE(1692)] = 52202, - [SMALL_STATE(1693)] = 52209, - [SMALL_STATE(1694)] = 52216, - [SMALL_STATE(1695)] = 52223, - [SMALL_STATE(1696)] = 52230, - [SMALL_STATE(1697)] = 52237, - [SMALL_STATE(1698)] = 52244, - [SMALL_STATE(1699)] = 52251, - [SMALL_STATE(1700)] = 52258, - [SMALL_STATE(1701)] = 52265, - [SMALL_STATE(1702)] = 52272, - [SMALL_STATE(1703)] = 52279, - [SMALL_STATE(1704)] = 52286, - [SMALL_STATE(1705)] = 52293, - [SMALL_STATE(1706)] = 52300, - [SMALL_STATE(1707)] = 52307, - [SMALL_STATE(1708)] = 52314, - [SMALL_STATE(1709)] = 52321, - [SMALL_STATE(1710)] = 52328, - [SMALL_STATE(1711)] = 52335, - [SMALL_STATE(1712)] = 52342, - [SMALL_STATE(1713)] = 52349, - [SMALL_STATE(1714)] = 52356, - [SMALL_STATE(1715)] = 52363, - [SMALL_STATE(1716)] = 52370, - [SMALL_STATE(1717)] = 52377, - [SMALL_STATE(1718)] = 52384, - [SMALL_STATE(1719)] = 52391, - [SMALL_STATE(1720)] = 52398, - [SMALL_STATE(1721)] = 52405, - [SMALL_STATE(1722)] = 52412, - [SMALL_STATE(1723)] = 52419, - [SMALL_STATE(1724)] = 52426, - [SMALL_STATE(1725)] = 52433, - [SMALL_STATE(1726)] = 52440, - [SMALL_STATE(1727)] = 52447, - [SMALL_STATE(1728)] = 52454, - [SMALL_STATE(1729)] = 52461, - [SMALL_STATE(1730)] = 52468, - [SMALL_STATE(1731)] = 52475, - [SMALL_STATE(1732)] = 52482, - [SMALL_STATE(1733)] = 52489, - [SMALL_STATE(1734)] = 52496, - [SMALL_STATE(1735)] = 52503, - [SMALL_STATE(1736)] = 52510, - [SMALL_STATE(1737)] = 52517, - [SMALL_STATE(1738)] = 52524, - [SMALL_STATE(1739)] = 52531, - [SMALL_STATE(1740)] = 52538, - [SMALL_STATE(1741)] = 52545, - [SMALL_STATE(1742)] = 52552, - [SMALL_STATE(1743)] = 52559, - [SMALL_STATE(1744)] = 52566, - [SMALL_STATE(1745)] = 52573, - [SMALL_STATE(1746)] = 52580, - [SMALL_STATE(1747)] = 52587, - [SMALL_STATE(1748)] = 52594, - [SMALL_STATE(1749)] = 52601, - [SMALL_STATE(1750)] = 52608, - [SMALL_STATE(1751)] = 52615, - [SMALL_STATE(1752)] = 52622, - [SMALL_STATE(1753)] = 52629, - [SMALL_STATE(1754)] = 52636, - [SMALL_STATE(1755)] = 52643, - [SMALL_STATE(1756)] = 52650, - [SMALL_STATE(1757)] = 52657, - [SMALL_STATE(1758)] = 52664, - [SMALL_STATE(1759)] = 52671, - [SMALL_STATE(1760)] = 52678, - [SMALL_STATE(1761)] = 52685, - [SMALL_STATE(1762)] = 52692, - [SMALL_STATE(1763)] = 52699, - [SMALL_STATE(1764)] = 52706, - [SMALL_STATE(1765)] = 52713, - [SMALL_STATE(1766)] = 52720, - [SMALL_STATE(1767)] = 52727, - [SMALL_STATE(1768)] = 52734, - [SMALL_STATE(1769)] = 52741, - [SMALL_STATE(1770)] = 52748, - [SMALL_STATE(1771)] = 52755, - [SMALL_STATE(1772)] = 52762, - [SMALL_STATE(1773)] = 52769, - [SMALL_STATE(1774)] = 52776, - [SMALL_STATE(1775)] = 52783, - [SMALL_STATE(1776)] = 52790, - [SMALL_STATE(1777)] = 52797, - [SMALL_STATE(1778)] = 52804, - [SMALL_STATE(1779)] = 52811, - [SMALL_STATE(1780)] = 52818, - [SMALL_STATE(1781)] = 52825, - [SMALL_STATE(1782)] = 52832, - [SMALL_STATE(1783)] = 52839, - [SMALL_STATE(1784)] = 52846, - [SMALL_STATE(1785)] = 52853, - [SMALL_STATE(1786)] = 52860, - [SMALL_STATE(1787)] = 52867, - [SMALL_STATE(1788)] = 52874, - [SMALL_STATE(1789)] = 52881, - [SMALL_STATE(1790)] = 52888, - [SMALL_STATE(1791)] = 52895, - [SMALL_STATE(1792)] = 52902, - [SMALL_STATE(1793)] = 52909, - [SMALL_STATE(1794)] = 52916, - [SMALL_STATE(1795)] = 52923, - [SMALL_STATE(1796)] = 52930, - [SMALL_STATE(1797)] = 52937, - [SMALL_STATE(1798)] = 52944, - [SMALL_STATE(1799)] = 52951, - [SMALL_STATE(1800)] = 52958, - [SMALL_STATE(1801)] = 52965, - [SMALL_STATE(1802)] = 52972, - [SMALL_STATE(1803)] = 52979, - [SMALL_STATE(1804)] = 52986, - [SMALL_STATE(1805)] = 52993, - [SMALL_STATE(1806)] = 53000, - [SMALL_STATE(1807)] = 53007, - [SMALL_STATE(1808)] = 53014, - [SMALL_STATE(1809)] = 53021, - [SMALL_STATE(1810)] = 53028, - [SMALL_STATE(1811)] = 53035, - [SMALL_STATE(1812)] = 53042, - [SMALL_STATE(1813)] = 53049, - [SMALL_STATE(1814)] = 53056, - [SMALL_STATE(1815)] = 53063, - [SMALL_STATE(1816)] = 53070, - [SMALL_STATE(1817)] = 53077, - [SMALL_STATE(1818)] = 53084, - [SMALL_STATE(1819)] = 53091, - [SMALL_STATE(1820)] = 53098, - [SMALL_STATE(1821)] = 53105, - [SMALL_STATE(1822)] = 53112, - [SMALL_STATE(1823)] = 53119, - [SMALL_STATE(1824)] = 53126, - [SMALL_STATE(1825)] = 53133, - [SMALL_STATE(1826)] = 53140, - [SMALL_STATE(1827)] = 53147, - [SMALL_STATE(1828)] = 53154, - [SMALL_STATE(1829)] = 53161, - [SMALL_STATE(1830)] = 53168, - [SMALL_STATE(1831)] = 53175, - [SMALL_STATE(1832)] = 53182, - [SMALL_STATE(1833)] = 53189, - [SMALL_STATE(1834)] = 53196, - [SMALL_STATE(1835)] = 53203, - [SMALL_STATE(1836)] = 53210, - [SMALL_STATE(1837)] = 53217, - [SMALL_STATE(1838)] = 53224, - [SMALL_STATE(1839)] = 53231, - [SMALL_STATE(1840)] = 53238, - [SMALL_STATE(1841)] = 53245, - [SMALL_STATE(1842)] = 53252, - [SMALL_STATE(1843)] = 53259, - [SMALL_STATE(1844)] = 53266, - [SMALL_STATE(1845)] = 53273, - [SMALL_STATE(1846)] = 53280, - [SMALL_STATE(1847)] = 53287, - [SMALL_STATE(1848)] = 53294, - [SMALL_STATE(1849)] = 53301, - [SMALL_STATE(1850)] = 53308, - [SMALL_STATE(1851)] = 53315, - [SMALL_STATE(1852)] = 53322, - [SMALL_STATE(1853)] = 53329, - [SMALL_STATE(1854)] = 53336, - [SMALL_STATE(1855)] = 53343, - [SMALL_STATE(1856)] = 53350, - [SMALL_STATE(1857)] = 53357, - [SMALL_STATE(1858)] = 53364, - [SMALL_STATE(1859)] = 53371, - [SMALL_STATE(1860)] = 53378, - [SMALL_STATE(1861)] = 53385, - [SMALL_STATE(1862)] = 53392, - [SMALL_STATE(1863)] = 53399, - [SMALL_STATE(1864)] = 53406, - [SMALL_STATE(1865)] = 53413, - [SMALL_STATE(1866)] = 53420, - [SMALL_STATE(1867)] = 53427, - [SMALL_STATE(1868)] = 53434, - [SMALL_STATE(1869)] = 53441, - [SMALL_STATE(1870)] = 53448, - [SMALL_STATE(1871)] = 53455, - [SMALL_STATE(1872)] = 53462, - [SMALL_STATE(1873)] = 53469, - [SMALL_STATE(1874)] = 53476, - [SMALL_STATE(1875)] = 53483, - [SMALL_STATE(1876)] = 53490, - [SMALL_STATE(1877)] = 53497, - [SMALL_STATE(1878)] = 53504, - [SMALL_STATE(1879)] = 53511, - [SMALL_STATE(1880)] = 53518, - [SMALL_STATE(1881)] = 53525, - [SMALL_STATE(1882)] = 53532, - [SMALL_STATE(1883)] = 53539, - [SMALL_STATE(1884)] = 53546, - [SMALL_STATE(1885)] = 53553, - [SMALL_STATE(1886)] = 53560, - [SMALL_STATE(1887)] = 53567, - [SMALL_STATE(1888)] = 53574, - [SMALL_STATE(1889)] = 53581, - [SMALL_STATE(1890)] = 53588, - [SMALL_STATE(1891)] = 53595, - [SMALL_STATE(1892)] = 53602, - [SMALL_STATE(1893)] = 53609, - [SMALL_STATE(1894)] = 53616, - [SMALL_STATE(1895)] = 53623, - [SMALL_STATE(1896)] = 53630, - [SMALL_STATE(1897)] = 53637, - [SMALL_STATE(1898)] = 53644, - [SMALL_STATE(1899)] = 53651, - [SMALL_STATE(1900)] = 53658, - [SMALL_STATE(1901)] = 53665, - [SMALL_STATE(1902)] = 53672, - [SMALL_STATE(1903)] = 53679, - [SMALL_STATE(1904)] = 53686, - [SMALL_STATE(1905)] = 53693, - [SMALL_STATE(1906)] = 53700, - [SMALL_STATE(1907)] = 53707, - [SMALL_STATE(1908)] = 53714, - [SMALL_STATE(1909)] = 53721, - [SMALL_STATE(1910)] = 53728, - [SMALL_STATE(1911)] = 53735, - [SMALL_STATE(1912)] = 53742, - [SMALL_STATE(1913)] = 53749, - [SMALL_STATE(1914)] = 53756, - [SMALL_STATE(1915)] = 53763, - [SMALL_STATE(1916)] = 53770, - [SMALL_STATE(1917)] = 53777, - [SMALL_STATE(1918)] = 53784, - [SMALL_STATE(1919)] = 53791, - [SMALL_STATE(1920)] = 53798, - [SMALL_STATE(1921)] = 53805, - [SMALL_STATE(1922)] = 53812, - [SMALL_STATE(1923)] = 53819, - [SMALL_STATE(1924)] = 53826, - [SMALL_STATE(1925)] = 53833, - [SMALL_STATE(1926)] = 53840, - [SMALL_STATE(1927)] = 53847, - [SMALL_STATE(1928)] = 53854, - [SMALL_STATE(1929)] = 53861, - [SMALL_STATE(1930)] = 53868, - [SMALL_STATE(1931)] = 53875, - [SMALL_STATE(1932)] = 53882, - [SMALL_STATE(1933)] = 53889, - [SMALL_STATE(1934)] = 53896, - [SMALL_STATE(1935)] = 53903, - [SMALL_STATE(1936)] = 53910, - [SMALL_STATE(1937)] = 53917, - [SMALL_STATE(1938)] = 53924, - [SMALL_STATE(1939)] = 53931, - [SMALL_STATE(1940)] = 53938, - [SMALL_STATE(1941)] = 53945, - [SMALL_STATE(1942)] = 53952, - [SMALL_STATE(1943)] = 53959, - [SMALL_STATE(1944)] = 53966, - [SMALL_STATE(1945)] = 53973, - [SMALL_STATE(1946)] = 53980, - [SMALL_STATE(1947)] = 53987, - [SMALL_STATE(1948)] = 53994, - [SMALL_STATE(1949)] = 54001, - [SMALL_STATE(1950)] = 54008, - [SMALL_STATE(1951)] = 54015, - [SMALL_STATE(1952)] = 54022, - [SMALL_STATE(1953)] = 54029, - [SMALL_STATE(1954)] = 54036, - [SMALL_STATE(1955)] = 54043, - [SMALL_STATE(1956)] = 54050, - [SMALL_STATE(1957)] = 54057, - [SMALL_STATE(1958)] = 54064, - [SMALL_STATE(1959)] = 54071, - [SMALL_STATE(1960)] = 54078, - [SMALL_STATE(1961)] = 54085, - [SMALL_STATE(1962)] = 54092, - [SMALL_STATE(1963)] = 54099, - [SMALL_STATE(1964)] = 54106, - [SMALL_STATE(1965)] = 54113, - [SMALL_STATE(1966)] = 54120, - [SMALL_STATE(1967)] = 54127, - [SMALL_STATE(1968)] = 54134, - [SMALL_STATE(1969)] = 54141, - [SMALL_STATE(1970)] = 54148, - [SMALL_STATE(1971)] = 54155, - [SMALL_STATE(1972)] = 54162, - [SMALL_STATE(1973)] = 54169, - [SMALL_STATE(1974)] = 54176, - [SMALL_STATE(1975)] = 54183, - [SMALL_STATE(1976)] = 54190, - [SMALL_STATE(1977)] = 54197, - [SMALL_STATE(1978)] = 54204, - [SMALL_STATE(1979)] = 54211, - [SMALL_STATE(1980)] = 54218, - [SMALL_STATE(1981)] = 54225, - [SMALL_STATE(1982)] = 54232, - [SMALL_STATE(1983)] = 54239, - [SMALL_STATE(1984)] = 54246, - [SMALL_STATE(1985)] = 54253, - [SMALL_STATE(1986)] = 54260, - [SMALL_STATE(1987)] = 54267, - [SMALL_STATE(1988)] = 54274, - [SMALL_STATE(1989)] = 54281, - [SMALL_STATE(1990)] = 54288, - [SMALL_STATE(1991)] = 54295, - [SMALL_STATE(1992)] = 54302, - [SMALL_STATE(1993)] = 54309, - [SMALL_STATE(1994)] = 54316, - [SMALL_STATE(1995)] = 54323, - [SMALL_STATE(1996)] = 54330, - [SMALL_STATE(1997)] = 54337, - [SMALL_STATE(1998)] = 54344, - [SMALL_STATE(1999)] = 54351, - [SMALL_STATE(2000)] = 54358, - [SMALL_STATE(2001)] = 54365, - [SMALL_STATE(2002)] = 54372, - [SMALL_STATE(2003)] = 54379, - [SMALL_STATE(2004)] = 54386, - [SMALL_STATE(2005)] = 54393, - [SMALL_STATE(2006)] = 54400, - [SMALL_STATE(2007)] = 54407, - [SMALL_STATE(2008)] = 54414, - [SMALL_STATE(2009)] = 54421, - [SMALL_STATE(2010)] = 54428, - [SMALL_STATE(2011)] = 54435, - [SMALL_STATE(2012)] = 54442, - [SMALL_STATE(2013)] = 54449, - [SMALL_STATE(2014)] = 54456, - [SMALL_STATE(2015)] = 54463, - [SMALL_STATE(2016)] = 54470, - [SMALL_STATE(2017)] = 54477, + [SMALL_STATE(896)] = 42563, + [SMALL_STATE(897)] = 42590, + [SMALL_STATE(898)] = 42617, + [SMALL_STATE(899)] = 42644, + [SMALL_STATE(900)] = 42660, + [SMALL_STATE(901)] = 42676, + [SMALL_STATE(902)] = 42692, + [SMALL_STATE(903)] = 42708, + [SMALL_STATE(904)] = 42724, + [SMALL_STATE(905)] = 42746, + [SMALL_STATE(906)] = 42762, + [SMALL_STATE(907)] = 42784, + [SMALL_STATE(908)] = 42800, + [SMALL_STATE(909)] = 42816, + [SMALL_STATE(910)] = 42832, + [SMALL_STATE(911)] = 42848, + [SMALL_STATE(912)] = 42874, + [SMALL_STATE(913)] = 42890, + [SMALL_STATE(914)] = 42906, + [SMALL_STATE(915)] = 42930, + [SMALL_STATE(916)] = 42946, + [SMALL_STATE(917)] = 42962, + [SMALL_STATE(918)] = 42978, + [SMALL_STATE(919)] = 42994, + [SMALL_STATE(920)] = 43020, + [SMALL_STATE(921)] = 43048, + [SMALL_STATE(922)] = 43074, + [SMALL_STATE(923)] = 43090, + [SMALL_STATE(924)] = 43106, + [SMALL_STATE(925)] = 43122, + [SMALL_STATE(926)] = 43138, + [SMALL_STATE(927)] = 43154, + [SMALL_STATE(928)] = 43170, + [SMALL_STATE(929)] = 43196, + [SMALL_STATE(930)] = 43212, + [SMALL_STATE(931)] = 43228, + [SMALL_STATE(932)] = 43244, + [SMALL_STATE(933)] = 43260, + [SMALL_STATE(934)] = 43276, + [SMALL_STATE(935)] = 43302, + [SMALL_STATE(936)] = 43318, + [SMALL_STATE(937)] = 43334, + [SMALL_STATE(938)] = 43350, + [SMALL_STATE(939)] = 43366, + [SMALL_STATE(940)] = 43382, + [SMALL_STATE(941)] = 43398, + [SMALL_STATE(942)] = 43424, + [SMALL_STATE(943)] = 43440, + [SMALL_STATE(944)] = 43456, + [SMALL_STATE(945)] = 43472, + [SMALL_STATE(946)] = 43488, + [SMALL_STATE(947)] = 43504, + [SMALL_STATE(948)] = 43529, + [SMALL_STATE(949)] = 43554, + [SMALL_STATE(950)] = 43567, + [SMALL_STATE(951)] = 43580, + [SMALL_STATE(952)] = 43605, + [SMALL_STATE(953)] = 43628, + [SMALL_STATE(954)] = 43653, + [SMALL_STATE(955)] = 43666, + [SMALL_STATE(956)] = 43687, + [SMALL_STATE(957)] = 43708, + [SMALL_STATE(958)] = 43729, + [SMALL_STATE(959)] = 43754, + [SMALL_STATE(960)] = 43767, + [SMALL_STATE(961)] = 43792, + [SMALL_STATE(962)] = 43807, + [SMALL_STATE(963)] = 43822, + [SMALL_STATE(964)] = 43837, + [SMALL_STATE(965)] = 43862, + [SMALL_STATE(966)] = 43887, + [SMALL_STATE(967)] = 43902, + [SMALL_STATE(968)] = 43927, + [SMALL_STATE(969)] = 43952, + [SMALL_STATE(970)] = 43977, + [SMALL_STATE(971)] = 43992, + [SMALL_STATE(972)] = 44017, + [SMALL_STATE(973)] = 44042, + [SMALL_STATE(974)] = 44067, + [SMALL_STATE(975)] = 44092, + [SMALL_STATE(976)] = 44117, + [SMALL_STATE(977)] = 44142, + [SMALL_STATE(978)] = 44167, + [SMALL_STATE(979)] = 44180, + [SMALL_STATE(980)] = 44201, + [SMALL_STATE(981)] = 44216, + [SMALL_STATE(982)] = 44241, + [SMALL_STATE(983)] = 44266, + [SMALL_STATE(984)] = 44291, + [SMALL_STATE(985)] = 44303, + [SMALL_STATE(986)] = 44325, + [SMALL_STATE(987)] = 44341, + [SMALL_STATE(988)] = 44363, + [SMALL_STATE(989)] = 44381, + [SMALL_STATE(990)] = 44399, + [SMALL_STATE(991)] = 44419, + [SMALL_STATE(992)] = 44439, + [SMALL_STATE(993)] = 44461, + [SMALL_STATE(994)] = 44479, + [SMALL_STATE(995)] = 44501, + [SMALL_STATE(996)] = 44523, + [SMALL_STATE(997)] = 44545, + [SMALL_STATE(998)] = 44567, + [SMALL_STATE(999)] = 44589, + [SMALL_STATE(1000)] = 44611, + [SMALL_STATE(1001)] = 44633, + [SMALL_STATE(1002)] = 44655, + [SMALL_STATE(1003)] = 44675, + [SMALL_STATE(1004)] = 44691, + [SMALL_STATE(1005)] = 44703, + [SMALL_STATE(1006)] = 44723, + [SMALL_STATE(1007)] = 44737, + [SMALL_STATE(1008)] = 44757, + [SMALL_STATE(1009)] = 44779, + [SMALL_STATE(1010)] = 44793, + [SMALL_STATE(1011)] = 44813, + [SMALL_STATE(1012)] = 44829, + [SMALL_STATE(1013)] = 44845, + [SMALL_STATE(1014)] = 44864, + [SMALL_STATE(1015)] = 44879, + [SMALL_STATE(1016)] = 44898, + [SMALL_STATE(1017)] = 44917, + [SMALL_STATE(1018)] = 44936, + [SMALL_STATE(1019)] = 44953, + [SMALL_STATE(1020)] = 44972, + [SMALL_STATE(1021)] = 44991, + [SMALL_STATE(1022)] = 45010, + [SMALL_STATE(1023)] = 45029, + [SMALL_STATE(1024)] = 45048, + [SMALL_STATE(1025)] = 45067, + [SMALL_STATE(1026)] = 45086, + [SMALL_STATE(1027)] = 45105, + [SMALL_STATE(1028)] = 45122, + [SMALL_STATE(1029)] = 45133, + [SMALL_STATE(1030)] = 45152, + [SMALL_STATE(1031)] = 45171, + [SMALL_STATE(1032)] = 45190, + [SMALL_STATE(1033)] = 45209, + [SMALL_STATE(1034)] = 45228, + [SMALL_STATE(1035)] = 45247, + [SMALL_STATE(1036)] = 45264, + [SMALL_STATE(1037)] = 45283, + [SMALL_STATE(1038)] = 45298, + [SMALL_STATE(1039)] = 45317, + [SMALL_STATE(1040)] = 45336, + [SMALL_STATE(1041)] = 45351, + [SMALL_STATE(1042)] = 45370, + [SMALL_STATE(1043)] = 45387, + [SMALL_STATE(1044)] = 45406, + [SMALL_STATE(1045)] = 45425, + [SMALL_STATE(1046)] = 45442, + [SMALL_STATE(1047)] = 45461, + [SMALL_STATE(1048)] = 45478, + [SMALL_STATE(1049)] = 45497, + [SMALL_STATE(1050)] = 45516, + [SMALL_STATE(1051)] = 45531, + [SMALL_STATE(1052)] = 45546, + [SMALL_STATE(1053)] = 45565, + [SMALL_STATE(1054)] = 45580, + [SMALL_STATE(1055)] = 45599, + [SMALL_STATE(1056)] = 45618, + [SMALL_STATE(1057)] = 45637, + [SMALL_STATE(1058)] = 45650, + [SMALL_STATE(1059)] = 45669, + [SMALL_STATE(1060)] = 45684, + [SMALL_STATE(1061)] = 45703, + [SMALL_STATE(1062)] = 45722, + [SMALL_STATE(1063)] = 45741, + [SMALL_STATE(1064)] = 45760, + [SMALL_STATE(1065)] = 45779, + [SMALL_STATE(1066)] = 45798, + [SMALL_STATE(1067)] = 45817, + [SMALL_STATE(1068)] = 45836, + [SMALL_STATE(1069)] = 45853, + [SMALL_STATE(1070)] = 45872, + [SMALL_STATE(1071)] = 45883, + [SMALL_STATE(1072)] = 45902, + [SMALL_STATE(1073)] = 45921, + [SMALL_STATE(1074)] = 45938, + [SMALL_STATE(1075)] = 45953, + [SMALL_STATE(1076)] = 45972, + [SMALL_STATE(1077)] = 45991, + [SMALL_STATE(1078)] = 46006, + [SMALL_STATE(1079)] = 46025, + [SMALL_STATE(1080)] = 46044, + [SMALL_STATE(1081)] = 46063, + [SMALL_STATE(1082)] = 46082, + [SMALL_STATE(1083)] = 46101, + [SMALL_STATE(1084)] = 46120, + [SMALL_STATE(1085)] = 46137, + [SMALL_STATE(1086)] = 46156, + [SMALL_STATE(1087)] = 46175, + [SMALL_STATE(1088)] = 46194, + [SMALL_STATE(1089)] = 46207, + [SMALL_STATE(1090)] = 46226, + [SMALL_STATE(1091)] = 46245, + [SMALL_STATE(1092)] = 46256, + [SMALL_STATE(1093)] = 46275, + [SMALL_STATE(1094)] = 46294, + [SMALL_STATE(1095)] = 46307, + [SMALL_STATE(1096)] = 46318, + [SMALL_STATE(1097)] = 46337, + [SMALL_STATE(1098)] = 46354, + [SMALL_STATE(1099)] = 46369, + [SMALL_STATE(1100)] = 46380, + [SMALL_STATE(1101)] = 46391, + [SMALL_STATE(1102)] = 46405, + [SMALL_STATE(1103)] = 46421, + [SMALL_STATE(1104)] = 46435, + [SMALL_STATE(1105)] = 46445, + [SMALL_STATE(1106)] = 46459, + [SMALL_STATE(1107)] = 46475, + [SMALL_STATE(1108)] = 46491, + [SMALL_STATE(1109)] = 46505, + [SMALL_STATE(1110)] = 46521, + [SMALL_STATE(1111)] = 46537, + [SMALL_STATE(1112)] = 46553, + [SMALL_STATE(1113)] = 46569, + [SMALL_STATE(1114)] = 46585, + [SMALL_STATE(1115)] = 46601, + [SMALL_STATE(1116)] = 46615, + [SMALL_STATE(1117)] = 46627, + [SMALL_STATE(1118)] = 46637, + [SMALL_STATE(1119)] = 46651, + [SMALL_STATE(1120)] = 46663, + [SMALL_STATE(1121)] = 46679, + [SMALL_STATE(1122)] = 46695, + [SMALL_STATE(1123)] = 46711, + [SMALL_STATE(1124)] = 46727, + [SMALL_STATE(1125)] = 46743, + [SMALL_STATE(1126)] = 46759, + [SMALL_STATE(1127)] = 46775, + [SMALL_STATE(1128)] = 46789, + [SMALL_STATE(1129)] = 46805, + [SMALL_STATE(1130)] = 46815, + [SMALL_STATE(1131)] = 46825, + [SMALL_STATE(1132)] = 46839, + [SMALL_STATE(1133)] = 46853, + [SMALL_STATE(1134)] = 46863, + [SMALL_STATE(1135)] = 46877, + [SMALL_STATE(1136)] = 46891, + [SMALL_STATE(1137)] = 46903, + [SMALL_STATE(1138)] = 46919, + [SMALL_STATE(1139)] = 46931, + [SMALL_STATE(1140)] = 46947, + [SMALL_STATE(1141)] = 46957, + [SMALL_STATE(1142)] = 46971, + [SMALL_STATE(1143)] = 46987, + [SMALL_STATE(1144)] = 47003, + [SMALL_STATE(1145)] = 47017, + [SMALL_STATE(1146)] = 47031, + [SMALL_STATE(1147)] = 47045, + [SMALL_STATE(1148)] = 47061, + [SMALL_STATE(1149)] = 47077, + [SMALL_STATE(1150)] = 47087, + [SMALL_STATE(1151)] = 47101, + [SMALL_STATE(1152)] = 47117, + [SMALL_STATE(1153)] = 47131, + [SMALL_STATE(1154)] = 47147, + [SMALL_STATE(1155)] = 47163, + [SMALL_STATE(1156)] = 47177, + [SMALL_STATE(1157)] = 47191, + [SMALL_STATE(1158)] = 47201, + [SMALL_STATE(1159)] = 47211, + [SMALL_STATE(1160)] = 47223, + [SMALL_STATE(1161)] = 47237, + [SMALL_STATE(1162)] = 47253, + [SMALL_STATE(1163)] = 47269, + [SMALL_STATE(1164)] = 47281, + [SMALL_STATE(1165)] = 47295, + [SMALL_STATE(1166)] = 47309, + [SMALL_STATE(1167)] = 47323, + [SMALL_STATE(1168)] = 47339, + [SMALL_STATE(1169)] = 47353, + [SMALL_STATE(1170)] = 47369, + [SMALL_STATE(1171)] = 47385, + [SMALL_STATE(1172)] = 47401, + [SMALL_STATE(1173)] = 47415, + [SMALL_STATE(1174)] = 47425, + [SMALL_STATE(1175)] = 47441, + [SMALL_STATE(1176)] = 47455, + [SMALL_STATE(1177)] = 47471, + [SMALL_STATE(1178)] = 47481, + [SMALL_STATE(1179)] = 47495, + [SMALL_STATE(1180)] = 47511, + [SMALL_STATE(1181)] = 47527, + [SMALL_STATE(1182)] = 47543, + [SMALL_STATE(1183)] = 47557, + [SMALL_STATE(1184)] = 47573, + [SMALL_STATE(1185)] = 47589, + [SMALL_STATE(1186)] = 47603, + [SMALL_STATE(1187)] = 47619, + [SMALL_STATE(1188)] = 47631, + [SMALL_STATE(1189)] = 47647, + [SMALL_STATE(1190)] = 47659, + [SMALL_STATE(1191)] = 47671, + [SMALL_STATE(1192)] = 47687, + [SMALL_STATE(1193)] = 47699, + [SMALL_STATE(1194)] = 47715, + [SMALL_STATE(1195)] = 47731, + [SMALL_STATE(1196)] = 47745, + [SMALL_STATE(1197)] = 47761, + [SMALL_STATE(1198)] = 47775, + [SMALL_STATE(1199)] = 47791, + [SMALL_STATE(1200)] = 47805, + [SMALL_STATE(1201)] = 47821, + [SMALL_STATE(1202)] = 47834, + [SMALL_STATE(1203)] = 47843, + [SMALL_STATE(1204)] = 47856, + [SMALL_STATE(1205)] = 47869, + [SMALL_STATE(1206)] = 47882, + [SMALL_STATE(1207)] = 47891, + [SMALL_STATE(1208)] = 47904, + [SMALL_STATE(1209)] = 47917, + [SMALL_STATE(1210)] = 47930, + [SMALL_STATE(1211)] = 47939, + [SMALL_STATE(1212)] = 47952, + [SMALL_STATE(1213)] = 47965, + [SMALL_STATE(1214)] = 47978, + [SMALL_STATE(1215)] = 47991, + [SMALL_STATE(1216)] = 48004, + [SMALL_STATE(1217)] = 48017, + [SMALL_STATE(1218)] = 48030, + [SMALL_STATE(1219)] = 48039, + [SMALL_STATE(1220)] = 48052, + [SMALL_STATE(1221)] = 48065, + [SMALL_STATE(1222)] = 48078, + [SMALL_STATE(1223)] = 48087, + [SMALL_STATE(1224)] = 48100, + [SMALL_STATE(1225)] = 48109, + [SMALL_STATE(1226)] = 48122, + [SMALL_STATE(1227)] = 48135, + [SMALL_STATE(1228)] = 48148, + [SMALL_STATE(1229)] = 48157, + [SMALL_STATE(1230)] = 48166, + [SMALL_STATE(1231)] = 48179, + [SMALL_STATE(1232)] = 48192, + [SMALL_STATE(1233)] = 48205, + [SMALL_STATE(1234)] = 48218, + [SMALL_STATE(1235)] = 48227, + [SMALL_STATE(1236)] = 48240, + [SMALL_STATE(1237)] = 48253, + [SMALL_STATE(1238)] = 48266, + [SMALL_STATE(1239)] = 48275, + [SMALL_STATE(1240)] = 48288, + [SMALL_STATE(1241)] = 48301, + [SMALL_STATE(1242)] = 48314, + [SMALL_STATE(1243)] = 48327, + [SMALL_STATE(1244)] = 48336, + [SMALL_STATE(1245)] = 48345, + [SMALL_STATE(1246)] = 48358, + [SMALL_STATE(1247)] = 48371, + [SMALL_STATE(1248)] = 48384, + [SMALL_STATE(1249)] = 48397, + [SMALL_STATE(1250)] = 48410, + [SMALL_STATE(1251)] = 48423, + [SMALL_STATE(1252)] = 48436, + [SMALL_STATE(1253)] = 48449, + [SMALL_STATE(1254)] = 48462, + [SMALL_STATE(1255)] = 48475, + [SMALL_STATE(1256)] = 48488, + [SMALL_STATE(1257)] = 48497, + [SMALL_STATE(1258)] = 48510, + [SMALL_STATE(1259)] = 48523, + [SMALL_STATE(1260)] = 48536, + [SMALL_STATE(1261)] = 48547, + [SMALL_STATE(1262)] = 48560, + [SMALL_STATE(1263)] = 48573, + [SMALL_STATE(1264)] = 48586, + [SMALL_STATE(1265)] = 48595, + [SMALL_STATE(1266)] = 48604, + [SMALL_STATE(1267)] = 48617, + [SMALL_STATE(1268)] = 48630, + [SMALL_STATE(1269)] = 48643, + [SMALL_STATE(1270)] = 48656, + [SMALL_STATE(1271)] = 48665, + [SMALL_STATE(1272)] = 48674, + [SMALL_STATE(1273)] = 48683, + [SMALL_STATE(1274)] = 48692, + [SMALL_STATE(1275)] = 48705, + [SMALL_STATE(1276)] = 48714, + [SMALL_STATE(1277)] = 48727, + [SMALL_STATE(1278)] = 48740, + [SMALL_STATE(1279)] = 48753, + [SMALL_STATE(1280)] = 48766, + [SMALL_STATE(1281)] = 48779, + [SMALL_STATE(1282)] = 48792, + [SMALL_STATE(1283)] = 48805, + [SMALL_STATE(1284)] = 48816, + [SMALL_STATE(1285)] = 48825, + [SMALL_STATE(1286)] = 48834, + [SMALL_STATE(1287)] = 48847, + [SMALL_STATE(1288)] = 48860, + [SMALL_STATE(1289)] = 48871, + [SMALL_STATE(1290)] = 48884, + [SMALL_STATE(1291)] = 48893, + [SMALL_STATE(1292)] = 48906, + [SMALL_STATE(1293)] = 48919, + [SMALL_STATE(1294)] = 48932, + [SMALL_STATE(1295)] = 48941, + [SMALL_STATE(1296)] = 48950, + [SMALL_STATE(1297)] = 48961, + [SMALL_STATE(1298)] = 48970, + [SMALL_STATE(1299)] = 48983, + [SMALL_STATE(1300)] = 48996, + [SMALL_STATE(1301)] = 49009, + [SMALL_STATE(1302)] = 49022, + [SMALL_STATE(1303)] = 49031, + [SMALL_STATE(1304)] = 49044, + [SMALL_STATE(1305)] = 49055, + [SMALL_STATE(1306)] = 49064, + [SMALL_STATE(1307)] = 49077, + [SMALL_STATE(1308)] = 49088, + [SMALL_STATE(1309)] = 49101, + [SMALL_STATE(1310)] = 49114, + [SMALL_STATE(1311)] = 49123, + [SMALL_STATE(1312)] = 49136, + [SMALL_STATE(1313)] = 49149, + [SMALL_STATE(1314)] = 49160, + [SMALL_STATE(1315)] = 49169, + [SMALL_STATE(1316)] = 49178, + [SMALL_STATE(1317)] = 49187, + [SMALL_STATE(1318)] = 49200, + [SMALL_STATE(1319)] = 49209, + [SMALL_STATE(1320)] = 49222, + [SMALL_STATE(1321)] = 49235, + [SMALL_STATE(1322)] = 49248, + [SMALL_STATE(1323)] = 49261, + [SMALL_STATE(1324)] = 49274, + [SMALL_STATE(1325)] = 49287, + [SMALL_STATE(1326)] = 49296, + [SMALL_STATE(1327)] = 49309, + [SMALL_STATE(1328)] = 49322, + [SMALL_STATE(1329)] = 49335, + [SMALL_STATE(1330)] = 49348, + [SMALL_STATE(1331)] = 49359, + [SMALL_STATE(1332)] = 49372, + [SMALL_STATE(1333)] = 49385, + [SMALL_STATE(1334)] = 49394, + [SMALL_STATE(1335)] = 49407, + [SMALL_STATE(1336)] = 49416, + [SMALL_STATE(1337)] = 49429, + [SMALL_STATE(1338)] = 49442, + [SMALL_STATE(1339)] = 49455, + [SMALL_STATE(1340)] = 49468, + [SMALL_STATE(1341)] = 49481, + [SMALL_STATE(1342)] = 49490, + [SMALL_STATE(1343)] = 49503, + [SMALL_STATE(1344)] = 49516, + [SMALL_STATE(1345)] = 49529, + [SMALL_STATE(1346)] = 49542, + [SMALL_STATE(1347)] = 49555, + [SMALL_STATE(1348)] = 49564, + [SMALL_STATE(1349)] = 49577, + [SMALL_STATE(1350)] = 49590, + [SMALL_STATE(1351)] = 49599, + [SMALL_STATE(1352)] = 49608, + [SMALL_STATE(1353)] = 49621, + [SMALL_STATE(1354)] = 49632, + [SMALL_STATE(1355)] = 49645, + [SMALL_STATE(1356)] = 49658, + [SMALL_STATE(1357)] = 49667, + [SMALL_STATE(1358)] = 49676, + [SMALL_STATE(1359)] = 49685, + [SMALL_STATE(1360)] = 49698, + [SMALL_STATE(1361)] = 49711, + [SMALL_STATE(1362)] = 49724, + [SMALL_STATE(1363)] = 49733, + [SMALL_STATE(1364)] = 49746, + [SMALL_STATE(1365)] = 49757, + [SMALL_STATE(1366)] = 49770, + [SMALL_STATE(1367)] = 49779, + [SMALL_STATE(1368)] = 49788, + [SMALL_STATE(1369)] = 49801, + [SMALL_STATE(1370)] = 49810, + [SMALL_STATE(1371)] = 49823, + [SMALL_STATE(1372)] = 49832, + [SMALL_STATE(1373)] = 49841, + [SMALL_STATE(1374)] = 49850, + [SMALL_STATE(1375)] = 49859, + [SMALL_STATE(1376)] = 49872, + [SMALL_STATE(1377)] = 49885, + [SMALL_STATE(1378)] = 49898, + [SMALL_STATE(1379)] = 49911, + [SMALL_STATE(1380)] = 49924, + [SMALL_STATE(1381)] = 49937, + [SMALL_STATE(1382)] = 49946, + [SMALL_STATE(1383)] = 49959, + [SMALL_STATE(1384)] = 49972, + [SMALL_STATE(1385)] = 49985, + [SMALL_STATE(1386)] = 49998, + [SMALL_STATE(1387)] = 50011, + [SMALL_STATE(1388)] = 50022, + [SMALL_STATE(1389)] = 50035, + [SMALL_STATE(1390)] = 50048, + [SMALL_STATE(1391)] = 50057, + [SMALL_STATE(1392)] = 50070, + [SMALL_STATE(1393)] = 50083, + [SMALL_STATE(1394)] = 50096, + [SMALL_STATE(1395)] = 50109, + [SMALL_STATE(1396)] = 50122, + [SMALL_STATE(1397)] = 50135, + [SMALL_STATE(1398)] = 50148, + [SMALL_STATE(1399)] = 50157, + [SMALL_STATE(1400)] = 50167, + [SMALL_STATE(1401)] = 50177, + [SMALL_STATE(1402)] = 50187, + [SMALL_STATE(1403)] = 50197, + [SMALL_STATE(1404)] = 50207, + [SMALL_STATE(1405)] = 50217, + [SMALL_STATE(1406)] = 50227, + [SMALL_STATE(1407)] = 50235, + [SMALL_STATE(1408)] = 50245, + [SMALL_STATE(1409)] = 50255, + [SMALL_STATE(1410)] = 50265, + [SMALL_STATE(1411)] = 50275, + [SMALL_STATE(1412)] = 50285, + [SMALL_STATE(1413)] = 50293, + [SMALL_STATE(1414)] = 50301, + [SMALL_STATE(1415)] = 50311, + [SMALL_STATE(1416)] = 50321, + [SMALL_STATE(1417)] = 50331, + [SMALL_STATE(1418)] = 50341, + [SMALL_STATE(1419)] = 50351, + [SMALL_STATE(1420)] = 50359, + [SMALL_STATE(1421)] = 50369, + [SMALL_STATE(1422)] = 50377, + [SMALL_STATE(1423)] = 50385, + [SMALL_STATE(1424)] = 50393, + [SMALL_STATE(1425)] = 50403, + [SMALL_STATE(1426)] = 50413, + [SMALL_STATE(1427)] = 50423, + [SMALL_STATE(1428)] = 50431, + [SMALL_STATE(1429)] = 50439, + [SMALL_STATE(1430)] = 50449, + [SMALL_STATE(1431)] = 50457, + [SMALL_STATE(1432)] = 50467, + [SMALL_STATE(1433)] = 50475, + [SMALL_STATE(1434)] = 50483, + [SMALL_STATE(1435)] = 50493, + [SMALL_STATE(1436)] = 50503, + [SMALL_STATE(1437)] = 50511, + [SMALL_STATE(1438)] = 50519, + [SMALL_STATE(1439)] = 50529, + [SMALL_STATE(1440)] = 50539, + [SMALL_STATE(1441)] = 50549, + [SMALL_STATE(1442)] = 50557, + [SMALL_STATE(1443)] = 50567, + [SMALL_STATE(1444)] = 50575, + [SMALL_STATE(1445)] = 50585, + [SMALL_STATE(1446)] = 50595, + [SMALL_STATE(1447)] = 50603, + [SMALL_STATE(1448)] = 50611, + [SMALL_STATE(1449)] = 50621, + [SMALL_STATE(1450)] = 50631, + [SMALL_STATE(1451)] = 50639, + [SMALL_STATE(1452)] = 50649, + [SMALL_STATE(1453)] = 50657, + [SMALL_STATE(1454)] = 50667, + [SMALL_STATE(1455)] = 50677, + [SMALL_STATE(1456)] = 50687, + [SMALL_STATE(1457)] = 50697, + [SMALL_STATE(1458)] = 50705, + [SMALL_STATE(1459)] = 50713, + [SMALL_STATE(1460)] = 50721, + [SMALL_STATE(1461)] = 50729, + [SMALL_STATE(1462)] = 50737, + [SMALL_STATE(1463)] = 50747, + [SMALL_STATE(1464)] = 50755, + [SMALL_STATE(1465)] = 50763, + [SMALL_STATE(1466)] = 50773, + [SMALL_STATE(1467)] = 50781, + [SMALL_STATE(1468)] = 50791, + [SMALL_STATE(1469)] = 50799, + [SMALL_STATE(1470)] = 50807, + [SMALL_STATE(1471)] = 50817, + [SMALL_STATE(1472)] = 50825, + [SMALL_STATE(1473)] = 50835, + [SMALL_STATE(1474)] = 50843, + [SMALL_STATE(1475)] = 50853, + [SMALL_STATE(1476)] = 50863, + [SMALL_STATE(1477)] = 50873, + [SMALL_STATE(1478)] = 50881, + [SMALL_STATE(1479)] = 50891, + [SMALL_STATE(1480)] = 50901, + [SMALL_STATE(1481)] = 50909, + [SMALL_STATE(1482)] = 50917, + [SMALL_STATE(1483)] = 50925, + [SMALL_STATE(1484)] = 50933, + [SMALL_STATE(1485)] = 50941, + [SMALL_STATE(1486)] = 50951, + [SMALL_STATE(1487)] = 50961, + [SMALL_STATE(1488)] = 50971, + [SMALL_STATE(1489)] = 50979, + [SMALL_STATE(1490)] = 50989, + [SMALL_STATE(1491)] = 50999, + [SMALL_STATE(1492)] = 51009, + [SMALL_STATE(1493)] = 51017, + [SMALL_STATE(1494)] = 51027, + [SMALL_STATE(1495)] = 51035, + [SMALL_STATE(1496)] = 51045, + [SMALL_STATE(1497)] = 51053, + [SMALL_STATE(1498)] = 51061, + [SMALL_STATE(1499)] = 51069, + [SMALL_STATE(1500)] = 51077, + [SMALL_STATE(1501)] = 51085, + [SMALL_STATE(1502)] = 51093, + [SMALL_STATE(1503)] = 51101, + [SMALL_STATE(1504)] = 51109, + [SMALL_STATE(1505)] = 51119, + [SMALL_STATE(1506)] = 51129, + [SMALL_STATE(1507)] = 51139, + [SMALL_STATE(1508)] = 51149, + [SMALL_STATE(1509)] = 51157, + [SMALL_STATE(1510)] = 51165, + [SMALL_STATE(1511)] = 51173, + [SMALL_STATE(1512)] = 51183, + [SMALL_STATE(1513)] = 51193, + [SMALL_STATE(1514)] = 51203, + [SMALL_STATE(1515)] = 51211, + [SMALL_STATE(1516)] = 51219, + [SMALL_STATE(1517)] = 51229, + [SMALL_STATE(1518)] = 51239, + [SMALL_STATE(1519)] = 51249, + [SMALL_STATE(1520)] = 51257, + [SMALL_STATE(1521)] = 51265, + [SMALL_STATE(1522)] = 51275, + [SMALL_STATE(1523)] = 51283, + [SMALL_STATE(1524)] = 51293, + [SMALL_STATE(1525)] = 51303, + [SMALL_STATE(1526)] = 51313, + [SMALL_STATE(1527)] = 51321, + [SMALL_STATE(1528)] = 51329, + [SMALL_STATE(1529)] = 51337, + [SMALL_STATE(1530)] = 51345, + [SMALL_STATE(1531)] = 51353, + [SMALL_STATE(1532)] = 51361, + [SMALL_STATE(1533)] = 51369, + [SMALL_STATE(1534)] = 51377, + [SMALL_STATE(1535)] = 51387, + [SMALL_STATE(1536)] = 51395, + [SMALL_STATE(1537)] = 51403, + [SMALL_STATE(1538)] = 51411, + [SMALL_STATE(1539)] = 51421, + [SMALL_STATE(1540)] = 51429, + [SMALL_STATE(1541)] = 51437, + [SMALL_STATE(1542)] = 51447, + [SMALL_STATE(1543)] = 51455, + [SMALL_STATE(1544)] = 51463, + [SMALL_STATE(1545)] = 51473, + [SMALL_STATE(1546)] = 51483, + [SMALL_STATE(1547)] = 51491, + [SMALL_STATE(1548)] = 51499, + [SMALL_STATE(1549)] = 51507, + [SMALL_STATE(1550)] = 51515, + [SMALL_STATE(1551)] = 51523, + [SMALL_STATE(1552)] = 51533, + [SMALL_STATE(1553)] = 51543, + [SMALL_STATE(1554)] = 51551, + [SMALL_STATE(1555)] = 51559, + [SMALL_STATE(1556)] = 51569, + [SMALL_STATE(1557)] = 51577, + [SMALL_STATE(1558)] = 51585, + [SMALL_STATE(1559)] = 51593, + [SMALL_STATE(1560)] = 51603, + [SMALL_STATE(1561)] = 51613, + [SMALL_STATE(1562)] = 51620, + [SMALL_STATE(1563)] = 51627, + [SMALL_STATE(1564)] = 51634, + [SMALL_STATE(1565)] = 51641, + [SMALL_STATE(1566)] = 51648, + [SMALL_STATE(1567)] = 51655, + [SMALL_STATE(1568)] = 51662, + [SMALL_STATE(1569)] = 51669, + [SMALL_STATE(1570)] = 51676, + [SMALL_STATE(1571)] = 51683, + [SMALL_STATE(1572)] = 51690, + [SMALL_STATE(1573)] = 51697, + [SMALL_STATE(1574)] = 51704, + [SMALL_STATE(1575)] = 51711, + [SMALL_STATE(1576)] = 51718, + [SMALL_STATE(1577)] = 51725, + [SMALL_STATE(1578)] = 51732, + [SMALL_STATE(1579)] = 51739, + [SMALL_STATE(1580)] = 51746, + [SMALL_STATE(1581)] = 51753, + [SMALL_STATE(1582)] = 51760, + [SMALL_STATE(1583)] = 51767, + [SMALL_STATE(1584)] = 51774, + [SMALL_STATE(1585)] = 51781, + [SMALL_STATE(1586)] = 51788, + [SMALL_STATE(1587)] = 51795, + [SMALL_STATE(1588)] = 51802, + [SMALL_STATE(1589)] = 51809, + [SMALL_STATE(1590)] = 51816, + [SMALL_STATE(1591)] = 51823, + [SMALL_STATE(1592)] = 51830, + [SMALL_STATE(1593)] = 51837, + [SMALL_STATE(1594)] = 51844, + [SMALL_STATE(1595)] = 51851, + [SMALL_STATE(1596)] = 51858, + [SMALL_STATE(1597)] = 51865, + [SMALL_STATE(1598)] = 51872, + [SMALL_STATE(1599)] = 51879, + [SMALL_STATE(1600)] = 51886, + [SMALL_STATE(1601)] = 51893, + [SMALL_STATE(1602)] = 51900, + [SMALL_STATE(1603)] = 51907, + [SMALL_STATE(1604)] = 51914, + [SMALL_STATE(1605)] = 51921, + [SMALL_STATE(1606)] = 51928, + [SMALL_STATE(1607)] = 51935, + [SMALL_STATE(1608)] = 51942, + [SMALL_STATE(1609)] = 51949, + [SMALL_STATE(1610)] = 51956, + [SMALL_STATE(1611)] = 51963, + [SMALL_STATE(1612)] = 51970, + [SMALL_STATE(1613)] = 51977, + [SMALL_STATE(1614)] = 51984, + [SMALL_STATE(1615)] = 51991, + [SMALL_STATE(1616)] = 51998, + [SMALL_STATE(1617)] = 52005, + [SMALL_STATE(1618)] = 52012, + [SMALL_STATE(1619)] = 52019, + [SMALL_STATE(1620)] = 52026, + [SMALL_STATE(1621)] = 52033, + [SMALL_STATE(1622)] = 52040, + [SMALL_STATE(1623)] = 52047, + [SMALL_STATE(1624)] = 52054, + [SMALL_STATE(1625)] = 52061, + [SMALL_STATE(1626)] = 52068, + [SMALL_STATE(1627)] = 52075, + [SMALL_STATE(1628)] = 52082, + [SMALL_STATE(1629)] = 52089, + [SMALL_STATE(1630)] = 52096, + [SMALL_STATE(1631)] = 52103, + [SMALL_STATE(1632)] = 52110, + [SMALL_STATE(1633)] = 52117, + [SMALL_STATE(1634)] = 52124, + [SMALL_STATE(1635)] = 52131, + [SMALL_STATE(1636)] = 52138, + [SMALL_STATE(1637)] = 52145, + [SMALL_STATE(1638)] = 52152, + [SMALL_STATE(1639)] = 52159, + [SMALL_STATE(1640)] = 52166, + [SMALL_STATE(1641)] = 52173, + [SMALL_STATE(1642)] = 52180, + [SMALL_STATE(1643)] = 52187, + [SMALL_STATE(1644)] = 52194, + [SMALL_STATE(1645)] = 52201, + [SMALL_STATE(1646)] = 52208, + [SMALL_STATE(1647)] = 52215, + [SMALL_STATE(1648)] = 52222, + [SMALL_STATE(1649)] = 52229, + [SMALL_STATE(1650)] = 52236, + [SMALL_STATE(1651)] = 52243, + [SMALL_STATE(1652)] = 52250, + [SMALL_STATE(1653)] = 52257, + [SMALL_STATE(1654)] = 52264, + [SMALL_STATE(1655)] = 52271, + [SMALL_STATE(1656)] = 52278, + [SMALL_STATE(1657)] = 52285, + [SMALL_STATE(1658)] = 52292, + [SMALL_STATE(1659)] = 52299, + [SMALL_STATE(1660)] = 52306, + [SMALL_STATE(1661)] = 52313, + [SMALL_STATE(1662)] = 52320, + [SMALL_STATE(1663)] = 52327, + [SMALL_STATE(1664)] = 52334, + [SMALL_STATE(1665)] = 52341, + [SMALL_STATE(1666)] = 52348, + [SMALL_STATE(1667)] = 52355, + [SMALL_STATE(1668)] = 52362, + [SMALL_STATE(1669)] = 52369, + [SMALL_STATE(1670)] = 52376, + [SMALL_STATE(1671)] = 52383, + [SMALL_STATE(1672)] = 52390, + [SMALL_STATE(1673)] = 52397, + [SMALL_STATE(1674)] = 52404, + [SMALL_STATE(1675)] = 52411, + [SMALL_STATE(1676)] = 52418, + [SMALL_STATE(1677)] = 52425, + [SMALL_STATE(1678)] = 52432, + [SMALL_STATE(1679)] = 52439, + [SMALL_STATE(1680)] = 52446, + [SMALL_STATE(1681)] = 52453, + [SMALL_STATE(1682)] = 52460, + [SMALL_STATE(1683)] = 52467, + [SMALL_STATE(1684)] = 52474, + [SMALL_STATE(1685)] = 52481, + [SMALL_STATE(1686)] = 52488, + [SMALL_STATE(1687)] = 52495, + [SMALL_STATE(1688)] = 52502, + [SMALL_STATE(1689)] = 52509, + [SMALL_STATE(1690)] = 52516, + [SMALL_STATE(1691)] = 52523, + [SMALL_STATE(1692)] = 52530, + [SMALL_STATE(1693)] = 52537, + [SMALL_STATE(1694)] = 52544, + [SMALL_STATE(1695)] = 52551, + [SMALL_STATE(1696)] = 52558, + [SMALL_STATE(1697)] = 52565, + [SMALL_STATE(1698)] = 52572, + [SMALL_STATE(1699)] = 52579, + [SMALL_STATE(1700)] = 52586, + [SMALL_STATE(1701)] = 52593, + [SMALL_STATE(1702)] = 52600, + [SMALL_STATE(1703)] = 52607, + [SMALL_STATE(1704)] = 52614, + [SMALL_STATE(1705)] = 52621, + [SMALL_STATE(1706)] = 52628, + [SMALL_STATE(1707)] = 52635, + [SMALL_STATE(1708)] = 52642, + [SMALL_STATE(1709)] = 52649, + [SMALL_STATE(1710)] = 52656, + [SMALL_STATE(1711)] = 52663, + [SMALL_STATE(1712)] = 52670, + [SMALL_STATE(1713)] = 52677, + [SMALL_STATE(1714)] = 52684, + [SMALL_STATE(1715)] = 52691, + [SMALL_STATE(1716)] = 52698, + [SMALL_STATE(1717)] = 52705, + [SMALL_STATE(1718)] = 52712, + [SMALL_STATE(1719)] = 52719, + [SMALL_STATE(1720)] = 52726, + [SMALL_STATE(1721)] = 52733, + [SMALL_STATE(1722)] = 52740, + [SMALL_STATE(1723)] = 52747, + [SMALL_STATE(1724)] = 52754, + [SMALL_STATE(1725)] = 52761, + [SMALL_STATE(1726)] = 52768, + [SMALL_STATE(1727)] = 52775, + [SMALL_STATE(1728)] = 52782, + [SMALL_STATE(1729)] = 52789, + [SMALL_STATE(1730)] = 52796, + [SMALL_STATE(1731)] = 52803, + [SMALL_STATE(1732)] = 52810, + [SMALL_STATE(1733)] = 52817, + [SMALL_STATE(1734)] = 52824, + [SMALL_STATE(1735)] = 52831, + [SMALL_STATE(1736)] = 52838, + [SMALL_STATE(1737)] = 52845, + [SMALL_STATE(1738)] = 52852, + [SMALL_STATE(1739)] = 52859, + [SMALL_STATE(1740)] = 52866, + [SMALL_STATE(1741)] = 52873, + [SMALL_STATE(1742)] = 52880, + [SMALL_STATE(1743)] = 52887, + [SMALL_STATE(1744)] = 52894, + [SMALL_STATE(1745)] = 52901, + [SMALL_STATE(1746)] = 52908, + [SMALL_STATE(1747)] = 52915, + [SMALL_STATE(1748)] = 52922, + [SMALL_STATE(1749)] = 52929, + [SMALL_STATE(1750)] = 52936, + [SMALL_STATE(1751)] = 52943, + [SMALL_STATE(1752)] = 52950, + [SMALL_STATE(1753)] = 52957, + [SMALL_STATE(1754)] = 52964, + [SMALL_STATE(1755)] = 52971, + [SMALL_STATE(1756)] = 52978, + [SMALL_STATE(1757)] = 52985, + [SMALL_STATE(1758)] = 52992, + [SMALL_STATE(1759)] = 52999, + [SMALL_STATE(1760)] = 53006, + [SMALL_STATE(1761)] = 53013, + [SMALL_STATE(1762)] = 53020, + [SMALL_STATE(1763)] = 53027, + [SMALL_STATE(1764)] = 53034, + [SMALL_STATE(1765)] = 53041, + [SMALL_STATE(1766)] = 53048, + [SMALL_STATE(1767)] = 53055, + [SMALL_STATE(1768)] = 53062, + [SMALL_STATE(1769)] = 53069, + [SMALL_STATE(1770)] = 53076, + [SMALL_STATE(1771)] = 53083, + [SMALL_STATE(1772)] = 53090, + [SMALL_STATE(1773)] = 53097, + [SMALL_STATE(1774)] = 53104, + [SMALL_STATE(1775)] = 53111, + [SMALL_STATE(1776)] = 53118, + [SMALL_STATE(1777)] = 53125, + [SMALL_STATE(1778)] = 53132, + [SMALL_STATE(1779)] = 53139, + [SMALL_STATE(1780)] = 53146, + [SMALL_STATE(1781)] = 53153, + [SMALL_STATE(1782)] = 53160, + [SMALL_STATE(1783)] = 53167, + [SMALL_STATE(1784)] = 53174, + [SMALL_STATE(1785)] = 53181, + [SMALL_STATE(1786)] = 53188, + [SMALL_STATE(1787)] = 53195, + [SMALL_STATE(1788)] = 53202, + [SMALL_STATE(1789)] = 53209, + [SMALL_STATE(1790)] = 53216, + [SMALL_STATE(1791)] = 53223, + [SMALL_STATE(1792)] = 53230, + [SMALL_STATE(1793)] = 53237, + [SMALL_STATE(1794)] = 53244, + [SMALL_STATE(1795)] = 53251, + [SMALL_STATE(1796)] = 53258, + [SMALL_STATE(1797)] = 53265, + [SMALL_STATE(1798)] = 53272, + [SMALL_STATE(1799)] = 53279, + [SMALL_STATE(1800)] = 53286, + [SMALL_STATE(1801)] = 53293, + [SMALL_STATE(1802)] = 53300, + [SMALL_STATE(1803)] = 53307, + [SMALL_STATE(1804)] = 53314, + [SMALL_STATE(1805)] = 53321, + [SMALL_STATE(1806)] = 53328, + [SMALL_STATE(1807)] = 53335, + [SMALL_STATE(1808)] = 53342, + [SMALL_STATE(1809)] = 53349, + [SMALL_STATE(1810)] = 53356, + [SMALL_STATE(1811)] = 53363, + [SMALL_STATE(1812)] = 53370, + [SMALL_STATE(1813)] = 53377, + [SMALL_STATE(1814)] = 53384, + [SMALL_STATE(1815)] = 53391, + [SMALL_STATE(1816)] = 53398, + [SMALL_STATE(1817)] = 53405, + [SMALL_STATE(1818)] = 53412, + [SMALL_STATE(1819)] = 53419, + [SMALL_STATE(1820)] = 53426, + [SMALL_STATE(1821)] = 53433, + [SMALL_STATE(1822)] = 53440, + [SMALL_STATE(1823)] = 53447, + [SMALL_STATE(1824)] = 53454, + [SMALL_STATE(1825)] = 53461, + [SMALL_STATE(1826)] = 53468, + [SMALL_STATE(1827)] = 53475, + [SMALL_STATE(1828)] = 53482, + [SMALL_STATE(1829)] = 53489, + [SMALL_STATE(1830)] = 53496, + [SMALL_STATE(1831)] = 53503, + [SMALL_STATE(1832)] = 53510, + [SMALL_STATE(1833)] = 53517, + [SMALL_STATE(1834)] = 53524, + [SMALL_STATE(1835)] = 53531, + [SMALL_STATE(1836)] = 53538, + [SMALL_STATE(1837)] = 53545, + [SMALL_STATE(1838)] = 53552, + [SMALL_STATE(1839)] = 53559, + [SMALL_STATE(1840)] = 53566, + [SMALL_STATE(1841)] = 53573, + [SMALL_STATE(1842)] = 53580, + [SMALL_STATE(1843)] = 53587, + [SMALL_STATE(1844)] = 53594, + [SMALL_STATE(1845)] = 53601, + [SMALL_STATE(1846)] = 53608, + [SMALL_STATE(1847)] = 53615, + [SMALL_STATE(1848)] = 53622, + [SMALL_STATE(1849)] = 53629, + [SMALL_STATE(1850)] = 53636, + [SMALL_STATE(1851)] = 53643, + [SMALL_STATE(1852)] = 53650, + [SMALL_STATE(1853)] = 53657, + [SMALL_STATE(1854)] = 53664, + [SMALL_STATE(1855)] = 53671, + [SMALL_STATE(1856)] = 53678, + [SMALL_STATE(1857)] = 53685, + [SMALL_STATE(1858)] = 53692, + [SMALL_STATE(1859)] = 53699, + [SMALL_STATE(1860)] = 53706, + [SMALL_STATE(1861)] = 53713, + [SMALL_STATE(1862)] = 53720, + [SMALL_STATE(1863)] = 53727, + [SMALL_STATE(1864)] = 53734, + [SMALL_STATE(1865)] = 53741, + [SMALL_STATE(1866)] = 53748, + [SMALL_STATE(1867)] = 53755, + [SMALL_STATE(1868)] = 53762, + [SMALL_STATE(1869)] = 53769, + [SMALL_STATE(1870)] = 53776, + [SMALL_STATE(1871)] = 53783, + [SMALL_STATE(1872)] = 53790, + [SMALL_STATE(1873)] = 53797, + [SMALL_STATE(1874)] = 53804, + [SMALL_STATE(1875)] = 53811, + [SMALL_STATE(1876)] = 53818, + [SMALL_STATE(1877)] = 53825, + [SMALL_STATE(1878)] = 53832, + [SMALL_STATE(1879)] = 53839, + [SMALL_STATE(1880)] = 53846, + [SMALL_STATE(1881)] = 53853, + [SMALL_STATE(1882)] = 53860, + [SMALL_STATE(1883)] = 53867, + [SMALL_STATE(1884)] = 53874, + [SMALL_STATE(1885)] = 53881, + [SMALL_STATE(1886)] = 53888, + [SMALL_STATE(1887)] = 53895, + [SMALL_STATE(1888)] = 53902, + [SMALL_STATE(1889)] = 53909, + [SMALL_STATE(1890)] = 53916, + [SMALL_STATE(1891)] = 53923, + [SMALL_STATE(1892)] = 53930, + [SMALL_STATE(1893)] = 53937, + [SMALL_STATE(1894)] = 53944, + [SMALL_STATE(1895)] = 53951, + [SMALL_STATE(1896)] = 53958, + [SMALL_STATE(1897)] = 53965, + [SMALL_STATE(1898)] = 53972, + [SMALL_STATE(1899)] = 53979, + [SMALL_STATE(1900)] = 53986, + [SMALL_STATE(1901)] = 53993, + [SMALL_STATE(1902)] = 54000, + [SMALL_STATE(1903)] = 54007, + [SMALL_STATE(1904)] = 54014, + [SMALL_STATE(1905)] = 54021, + [SMALL_STATE(1906)] = 54028, + [SMALL_STATE(1907)] = 54035, + [SMALL_STATE(1908)] = 54042, + [SMALL_STATE(1909)] = 54049, + [SMALL_STATE(1910)] = 54056, + [SMALL_STATE(1911)] = 54063, + [SMALL_STATE(1912)] = 54070, + [SMALL_STATE(1913)] = 54077, + [SMALL_STATE(1914)] = 54084, + [SMALL_STATE(1915)] = 54091, + [SMALL_STATE(1916)] = 54098, + [SMALL_STATE(1917)] = 54105, + [SMALL_STATE(1918)] = 54112, + [SMALL_STATE(1919)] = 54119, + [SMALL_STATE(1920)] = 54126, + [SMALL_STATE(1921)] = 54133, + [SMALL_STATE(1922)] = 54140, + [SMALL_STATE(1923)] = 54147, + [SMALL_STATE(1924)] = 54154, + [SMALL_STATE(1925)] = 54161, + [SMALL_STATE(1926)] = 54168, + [SMALL_STATE(1927)] = 54175, + [SMALL_STATE(1928)] = 54182, + [SMALL_STATE(1929)] = 54189, + [SMALL_STATE(1930)] = 54196, + [SMALL_STATE(1931)] = 54203, + [SMALL_STATE(1932)] = 54210, + [SMALL_STATE(1933)] = 54217, + [SMALL_STATE(1934)] = 54224, + [SMALL_STATE(1935)] = 54231, + [SMALL_STATE(1936)] = 54238, + [SMALL_STATE(1937)] = 54245, + [SMALL_STATE(1938)] = 54252, + [SMALL_STATE(1939)] = 54259, + [SMALL_STATE(1940)] = 54266, + [SMALL_STATE(1941)] = 54273, + [SMALL_STATE(1942)] = 54280, + [SMALL_STATE(1943)] = 54287, + [SMALL_STATE(1944)] = 54294, + [SMALL_STATE(1945)] = 54301, + [SMALL_STATE(1946)] = 54308, + [SMALL_STATE(1947)] = 54315, + [SMALL_STATE(1948)] = 54322, + [SMALL_STATE(1949)] = 54329, + [SMALL_STATE(1950)] = 54336, + [SMALL_STATE(1951)] = 54343, + [SMALL_STATE(1952)] = 54350, + [SMALL_STATE(1953)] = 54357, + [SMALL_STATE(1954)] = 54364, + [SMALL_STATE(1955)] = 54371, + [SMALL_STATE(1956)] = 54378, + [SMALL_STATE(1957)] = 54385, + [SMALL_STATE(1958)] = 54392, + [SMALL_STATE(1959)] = 54399, + [SMALL_STATE(1960)] = 54406, + [SMALL_STATE(1961)] = 54413, + [SMALL_STATE(1962)] = 54420, + [SMALL_STATE(1963)] = 54427, + [SMALL_STATE(1964)] = 54434, + [SMALL_STATE(1965)] = 54441, + [SMALL_STATE(1966)] = 54448, + [SMALL_STATE(1967)] = 54455, + [SMALL_STATE(1968)] = 54462, + [SMALL_STATE(1969)] = 54469, + [SMALL_STATE(1970)] = 54476, + [SMALL_STATE(1971)] = 54483, + [SMALL_STATE(1972)] = 54490, + [SMALL_STATE(1973)] = 54497, + [SMALL_STATE(1974)] = 54504, + [SMALL_STATE(1975)] = 54511, + [SMALL_STATE(1976)] = 54518, + [SMALL_STATE(1977)] = 54525, + [SMALL_STATE(1978)] = 54532, + [SMALL_STATE(1979)] = 54539, + [SMALL_STATE(1980)] = 54546, + [SMALL_STATE(1981)] = 54553, + [SMALL_STATE(1982)] = 54560, + [SMALL_STATE(1983)] = 54567, + [SMALL_STATE(1984)] = 54574, + [SMALL_STATE(1985)] = 54581, + [SMALL_STATE(1986)] = 54588, + [SMALL_STATE(1987)] = 54595, + [SMALL_STATE(1988)] = 54602, + [SMALL_STATE(1989)] = 54609, + [SMALL_STATE(1990)] = 54616, + [SMALL_STATE(1991)] = 54623, + [SMALL_STATE(1992)] = 54630, + [SMALL_STATE(1993)] = 54637, + [SMALL_STATE(1994)] = 54644, + [SMALL_STATE(1995)] = 54651, + [SMALL_STATE(1996)] = 54658, + [SMALL_STATE(1997)] = 54665, + [SMALL_STATE(1998)] = 54672, + [SMALL_STATE(1999)] = 54679, + [SMALL_STATE(2000)] = 54686, + [SMALL_STATE(2001)] = 54693, + [SMALL_STATE(2002)] = 54700, + [SMALL_STATE(2003)] = 54707, + [SMALL_STATE(2004)] = 54714, + [SMALL_STATE(2005)] = 54721, + [SMALL_STATE(2006)] = 54728, + [SMALL_STATE(2007)] = 54735, + [SMALL_STATE(2008)] = 54742, + [SMALL_STATE(2009)] = 54749, + [SMALL_STATE(2010)] = 54756, + [SMALL_STATE(2011)] = 54763, + [SMALL_STATE(2012)] = 54770, + [SMALL_STATE(2013)] = 54777, + [SMALL_STATE(2014)] = 54784, + [SMALL_STATE(2015)] = 54791, + [SMALL_STATE(2016)] = 54798, + [SMALL_STATE(2017)] = 54805, + [SMALL_STATE(2018)] = 54812, + [SMALL_STATE(2019)] = 54819, + [SMALL_STATE(2020)] = 54826, + [SMALL_STATE(2021)] = 54833, + [SMALL_STATE(2022)] = 54840, + [SMALL_STATE(2023)] = 54847, + [SMALL_STATE(2024)] = 54854, + [SMALL_STATE(2025)] = 54861, + [SMALL_STATE(2026)] = 54868, + [SMALL_STATE(2027)] = 54875, + [SMALL_STATE(2028)] = 54882, + [SMALL_STATE(2029)] = 54889, + [SMALL_STATE(2030)] = 54896, + [SMALL_STATE(2031)] = 54903, + [SMALL_STATE(2032)] = 54910, + [SMALL_STATE(2033)] = 54917, + [SMALL_STATE(2034)] = 54924, + [SMALL_STATE(2035)] = 54931, + [SMALL_STATE(2036)] = 54938, + [SMALL_STATE(2037)] = 54945, + [SMALL_STATE(2038)] = 54952, + [SMALL_STATE(2039)] = 54959, + [SMALL_STATE(2040)] = 54966, + [SMALL_STATE(2041)] = 54973, + [SMALL_STATE(2042)] = 54980, + [SMALL_STATE(2043)] = 54987, + [SMALL_STATE(2044)] = 54994, + [SMALL_STATE(2045)] = 55001, + [SMALL_STATE(2046)] = 55008, + [SMALL_STATE(2047)] = 55015, + [SMALL_STATE(2048)] = 55022, + [SMALL_STATE(2049)] = 55029, + [SMALL_STATE(2050)] = 55036, + [SMALL_STATE(2051)] = 55043, + [SMALL_STATE(2052)] = 55050, + [SMALL_STATE(2053)] = 55057, + [SMALL_STATE(2054)] = 55064, + [SMALL_STATE(2055)] = 55071, + [SMALL_STATE(2056)] = 55078, + [SMALL_STATE(2057)] = 55085, + [SMALL_STATE(2058)] = 55092, + [SMALL_STATE(2059)] = 55099, + [SMALL_STATE(2060)] = 55106, + [SMALL_STATE(2061)] = 55113, + [SMALL_STATE(2062)] = 55120, + [SMALL_STATE(2063)] = 55127, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -62485,2568 +64357,2634 @@ 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(865), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), [85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation, 1), [87] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), - [89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(865), - [92] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1030), - [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1177), - [98] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(692), - [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(660), - [104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(78), - [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(749), - [110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1525), - [113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(699), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1975), - [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2017), - [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(49), - [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2016), - [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(703), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2015), - [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1196), - [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(802), - [140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(824), - [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(22), - [146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(239), - [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1214), - [152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2014), - [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(592), - [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1217), - [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2013), - [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2012), - [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(228), - [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(184), - [173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(541), - [176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(816), - [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(815), - [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2011), - [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(214), - [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(683), - [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(813), - [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(191), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(65), - [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(208), - [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2009), - [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_of_statements, 1), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1115), - [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(769), - [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(660), - [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(749), - [224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1975), - [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(2016), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1196), - [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(802), - [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(824), - [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1214), - [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(592), - [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1217), - [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(2012), - [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(248), - [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(2009), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_declarative_part, 1), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(969), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1030), - [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1177), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1359), - [279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(49), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(703), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(2015), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(22), - [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(239), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(2013), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(2012), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(228), - [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(184), - [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(541), - [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(816), - [314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(815), - [317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(2011), - [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(214), - [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(683), - [326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(813), - [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(191), - [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(65), - [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(208), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_of_statements, 2), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 1), - [422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 1), - [424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 1), - [426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 1), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1115), - [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(769), - [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(660), - [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), - [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(820), - [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1975), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(2016), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1398), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(802), - [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(824), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1405), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(592), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1217), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(2012), - [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(2009), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 87), - [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 87), - [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 14), - [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 14), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_until_statement, 4), - [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_until_statement, 4), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4, .production_id = 29), - [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 4, .production_id = 29), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 4, .production_id = 28), - [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 4, .production_id = 28), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 3), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 3, .production_id = 3), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 9, .production_id = 70), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 9, .production_id = 70), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 51), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 51), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 4), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 4), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 9, .production_id = 113), - [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 9, .production_id = 113), - [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 7), - [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 7), - [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 6), - [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 6), - [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7), - [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7), - [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, .production_id = 119), - [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, .production_id = 119), - [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 11, .production_id = 125), - [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 11, .production_id = 125), - [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 12), - [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 12), - [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 70), - [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 70), - [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 7), - [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 7), - [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 120), - [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 120), - [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 6), - [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 6), - [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 88), - [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 88), - [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 7), - [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 7), - [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_timed_entry_call, 7), - [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_timed_entry_call, 7), - [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 9), - [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 9), - [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 10, .production_id = 121), - [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 10, .production_id = 121), - [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), - [648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 2), - [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 3), - [652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 3), - [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 3), - [656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 3), - [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 2), - [660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 2), - [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, .production_id = 113), - [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, .production_id = 113), - [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_entry_call, 7), - [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_entry_call, 7), - [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 3), - [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 3), - [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 7), - [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 7), - [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 88), - [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 88), - [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 89), - [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 89), - [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 6), - [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 6), - [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 28), - [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 28), - [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 3), - [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 3), - [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 5, .production_id = 3), - [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 5, .production_id = 3), - [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, .production_id = 87), - [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, .production_id = 87), - [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 7, .production_id = 87), - [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 7, .production_id = 87), - [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 3, .production_id = 3), - [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 3, .production_id = 3), - [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 3, .production_id = 12), - [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 3, .production_id = 12), - [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 5), - [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 5), - [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 3, .production_id = 13), - [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 3, .production_id = 13), - [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), - [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), - [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_statement, 2), - [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_statement, 2), - [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 74), - [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 74), - [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_relative_statement, 3), - [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_relative_statement, 3), - [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asynchronous_select, 8, .production_id = 101), - [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asynchronous_select, 8, .production_id = 101), - [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 8), - [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 8), - [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 8, .production_id = 102), - [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 8, .production_id = 102), - [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 5), - [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 5), - [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 8, .production_id = 103), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 8, .production_id = 103), - [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 5, .production_id = 3), - [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 5, .production_id = 3), - [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 4), - [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 4), - [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 2), - [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 2), - [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 90), - [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 90), - [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 8), - [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 8), - [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5, .production_id = 50), - [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 5, .production_id = 50), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 5, .production_id = 51), - [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 5, .production_id = 51), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 8, .production_id = 90), - [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 8, .production_id = 90), - [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 17), - [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 17), - [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 2), - [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 2), - [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 74), - [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 74), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 106), - [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 106), - [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 37), - [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 37), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 37), - [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 37), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 7, .production_id = 37), - [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 7, .production_id = 37), - [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_at_clause, 6), - [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_at_clause, 6), - [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 37), - [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 37), - [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 10, .production_id = 115), - [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 10, .production_id = 115), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 37), - [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 37), - [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 94), - [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 94), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 56), - [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 56), - [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 4), - [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 4), - [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 10), - [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 10), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 6), - [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 6), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 32), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 32), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body_stub, 1), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body_stub, 1), - [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 1), - [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 1), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 1), - [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 1), - [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 7), - [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 7), - [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 33), - [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 33), - [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 63), - [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 63), - [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 19), - [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 19), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 6), - [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 6), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 124), - [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 124), - [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 65), - [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 65), - [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 6), - [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 6), - [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 61), - [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 61), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 95), - [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 95), - [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 117), - [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 117), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 10), - [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 10), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 6), - [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 6), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 6), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 6), - [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 9), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 9), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 61), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 61), - [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 77), - [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 77), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 6), - [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 6), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 5, .production_id = 38), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 5, .production_id = 38), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 7), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 7), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 117), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 117), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 40), - [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 40), - [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 9), - [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 9), - [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 75), - [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 75), - [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 58), - [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 58), - [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 57), - [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 57), - [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8, .production_id = 105), - [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8, .production_id = 105), - [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 56), - [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 56), - [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 69), - [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 69), - [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 6, .production_id = 63), - [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 6, .production_id = 63), - [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 9), - [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 9), - [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 40), - [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 40), - [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 9), - [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 9), - [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 55), - [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 55), - [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 4), - [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 4), - [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 109), - [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 109), - [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 8, .production_id = 91), - [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 8, .production_id = 91), - [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 6, .production_id = 61), - [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 6, .production_id = 61), - [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 5), - [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 5), - [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 3), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 3), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 54), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 54), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 6), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 6), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 2), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 2), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 73), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 73), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 107), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 107), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 6), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 6), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 6), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 6), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 5), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 5), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 3), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 3), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 9), - [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 9), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 75), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 75), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 5), - [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 5), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 4), - [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 4), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 6), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 6), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 31), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 31), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 3), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 3), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 52), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 52), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 58), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 58), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 57), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 57), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 33), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 33), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 5), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 5), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 7), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 7), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 4), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 4), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 4), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 4), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 124), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 124), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 9), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 9), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 10, .production_id = 122), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 10, .production_id = 122), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 73), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 73), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 7), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 7), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 11, .production_id = 123), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 11, .production_id = 123), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 32), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 32), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 55), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 55), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7, .production_id = 92), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7, .production_id = 92), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 10), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 10), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 109), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 109), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 69), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 69), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 54), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 54), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 8), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 8), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 69), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 69), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 5), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 5), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 5), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 5), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 2), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 2), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 66), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 66), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 109), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 109), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 5), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 5), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 117), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 117), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 10), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 10), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 31), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 31), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 2), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 2), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 2), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 2), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 4), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 4), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 6), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 6), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 6), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 6), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 91), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 91), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 31), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 31), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 7), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 7), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 109), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 109), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 6), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 6), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 7), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 7), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 6, .production_id = 36), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 6, .production_id = 36), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 7), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 7), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 5), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 5), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 117), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 117), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 52), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 52), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 8), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 8), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_declaration, 5), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_declaration, 5), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 52), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 52), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 4, .production_id = 23), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 4, .production_id = 23), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9, .production_id = 114), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9, .production_id = 114), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 8), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 8), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 2), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 2), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 73), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 73), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 5, .production_id = 36), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 5, .production_id = 36), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_declaration, 2), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__package_declaration, 2), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 6), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 6), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 8), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 8), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 65), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 65), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 7), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 7), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_package_declaration, 3), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_package_declaration, 3), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 3), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 3), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 69), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 69), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 9), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 9), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 5), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 5), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 124), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 124), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 3), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 3), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 11), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 11), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 124), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 124), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 66), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 66), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 2), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 2), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 67), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 67), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 4), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 4), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 61), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 61), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 116), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 116), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 11), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 11), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 19), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 19), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 4), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 4), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 5), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 5), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 11), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 11), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 8), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 8), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 61), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 61), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 8), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 8), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 67), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 67), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 6), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 6), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 8), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 8), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_array_aggregate, 3), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_array_aggregate, 3), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_designator, 1), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_designator, 1), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_delta_aggregate, 6), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_delta_aggregate, 6), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 7), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 7), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 3), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 3), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduction_attribute_designator, 4), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_attribute_designator, 4), - [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 5), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 5), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice, 4, .production_id = 30), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 30), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_reference, 3), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_reference, 3), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 8), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 8), - [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 6), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 6), - [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_aggregate, 5), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_aggregate, 5), - [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selected_component, 3, .production_id = 16), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_component, 3, .production_id = 16), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 3, .production_id = 15), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 3, .production_id = 15), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_delta_aggregate, 6), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_delta_aggregate, 6), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 1), - [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(85), - [1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 6), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_aggregate, 3), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_aggregate, 3), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reduction_attribute_reference, 3), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reduction_attribute_reference, 3), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_array_aggregate, 2), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_array_aggregate, 2), - [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 4), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 4), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 4), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 4), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 2), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 2), - [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 3), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 3), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 2), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 2), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 3), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 3), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 84), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 84), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4, .production_id = 27), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4, .production_id = 27), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 9, .production_id = 104), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 9, .production_id = 104), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 53), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 53), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 36), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 36), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 36), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 36), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 69), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 69), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 104), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 104), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 53), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 53), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 27), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 27), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 84), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 84), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 69), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 69), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 1), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 1), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 25), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 25), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 24), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 24), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 41), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 41), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 1), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary, 1, .production_id = 2), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary, 1, .production_id = 2), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 2), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 2), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subunit, 5, .production_id = 43), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subunit, 5, .production_id = 43), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1746] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6), REDUCE(sym_component_choice_list, 1), - [1750] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6), SHIFT(1391), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), - [1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), SHIFT_REPEAT(836), - [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), SHIFT_REPEAT(836), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 2, .production_id = 10), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 2, .production_id = 10), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 1, .production_id = 4), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1, .production_id = 4), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 3), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 3), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__factor, 1, .production_id = 4), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__factor, 1, .production_id = 4), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 4, .production_id = 81), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 4, .production_id = 81), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 3, .production_id = 42), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 3, .production_id = 42), - [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_null, 1), - [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_null, 1), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 1), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 3), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 3), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 2), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 2), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 8), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 8), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_power, 3, .production_id = 26), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_power, 3, .production_id = 26), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_abs, 2, .production_id = 8), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_abs, 2, .production_id = 8), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_not, 2, .production_id = 8), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_not, 2, .production_id = 8), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), - [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), SHIFT_REPEAT(2013), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 2), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 2), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 3, .production_id = 11), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 3, .production_id = 11), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 1), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 1), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 3), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 3), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), - [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(837), - [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(837), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_exclusion, 2), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_exclusion, 2), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1999), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 18), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 1), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1353), - [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(769), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), - [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(2016), - [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(792), - [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(790), - [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(2014), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1217), - [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(2012), - [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1807), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 1), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(466), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 1), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 2, .production_id = 9), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2, .production_id = 1), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3, .production_id = 45), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 4), - [2078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(769), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), - [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(2016), - [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(792), - [2089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(790), - [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1769), - [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1217), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(769), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), - [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(2016), - [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(792), - [2115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(790), - [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(2014), - [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1217), - [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(2012), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(814), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(812), - [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(811), - [2170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1353), - [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(660), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), - [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(981), - [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1981), - [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(2012), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), - [2193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), SHIFT_REPEAT(458), - [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 2), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_formal_part, 2), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 1), - [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__membership_choice, 1), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 3), - [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 9, .production_id = 5), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 9, .production_id = 5), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 4), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 8, .production_id = 111), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 8, .production_id = 111), - [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 3), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 7, .production_id = 5), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 7, .production_id = 5), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 4, .production_id = 9), - [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 10, .production_id = 111), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 10, .production_id = 111), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 2), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), - [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), SHIFT_REPEAT(301), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), - [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), SHIFT_REPEAT(235), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), - [2290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), SHIFT_REPEAT(236), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 3), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 3), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 35), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 3, .production_id = 21), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 2), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 2), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 1), - [2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(769), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), - [2384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(2016), - [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(2014), - [2390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1217), - [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(2012), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [2398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1045), - [2401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1045), - [2404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1177), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(1353), - [2420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(769), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), - [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(2012), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_constraint, 2), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_constraint, 4), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 3, .production_id = 18), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 4, .production_id = 3), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 3), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 3), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_constraint, 3), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 3), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 3), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 6), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 3), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_constraint, 1), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 3), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_operator, 1), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_operator, 1), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 1), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 1), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4, .production_id = 59), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3, .production_id = 34), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2, .production_id = 18), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 3, .production_id = 34), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2, .production_id = 18), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 2), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 2), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_adding_operator, 1), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_adding_operator, 1), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_part, 3), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplying_operator, 1), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplying_operator, 1), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_adding_operator, 1), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_adding_operator, 1), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 4), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 4), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 5), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 5), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_mode, 1), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_mode, 1), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 6), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 6), - [2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1130), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), - [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1863), - [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1861), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 5), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_and_result_profile, 2), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3, .production_id = 34), - [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 110), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 97), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 59), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), - [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1814), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [2802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1942), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 60), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(566), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 76), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 1), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 4), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 4), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 112), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 112), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 68), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 68), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 100), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 100), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 7), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 7), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 49), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 49), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 99), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 99), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 18), - [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 18), SHIFT(1571), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 5), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 5), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 86), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 86), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 34), - [2905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 34), SHIFT(1759), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 5), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 5), - [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 118), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 118), - [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 118), - [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 118), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 59), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 112), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 112), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 112), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 112), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_subprogram_declaration, 1), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_subprogram_declaration, 1), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 99), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 99), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 68), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 68), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 49), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 49), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 49), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 49), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 3), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 3), - [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 68), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 68), - [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 59), - [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 59), SHIFT(1875), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 86), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 86), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), - [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 86), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 86), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3, .production_id = 34), - [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 6), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 6), - [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 85), - [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 85), - [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 118), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 118), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 1), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 8), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 12), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 11), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 10), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_clause, 4), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_clause, 4), - [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_clause, 8, .production_id = 126), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_clause, 8, .production_id = 126), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 9), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), - [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subpool_specification, 3, .production_id = 46), - [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpool_specification, 3, .production_id = 46), - [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_general_access_modifier, 1), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_general_access_modifier, 1), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1950), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 1), - [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3), - [3116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), SHIFT_REPEAT(1247), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), - [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 3), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1, .production_id = 48), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice_parameter_specification, 1), - [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1, .production_id = 44), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 1), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition, 1, .production_id = 7), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 2), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), - [3221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(251), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 3), - [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 5), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1889), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 4), - [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 78), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 2), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 9, .production_id = 108), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 2), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 96), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 36), - [3327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), SHIFT_REPEAT(775), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 3), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 62), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 39), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 3), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 1), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 5), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [3392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(232), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 3, .production_id = 22), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [3399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnatprep_if_statement_repeat1, 2, .production_id = 71), SHIFT_REPEAT(245), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_if_statement_repeat1, 2, .production_id = 71), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), - [3406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), SHIFT(1243), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [3423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnatprep_declarative_if_statement_repeat1, 2, .production_id = 80), SHIFT_REPEAT(237), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_declarative_if_statement_repeat1, 2, .production_id = 80), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 2), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 2), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 34), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), - [3438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), SHIFT_REPEAT(829), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 3, .production_id = 22), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 1), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [3461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), SHIFT_REPEAT(106), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), - [3468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), SHIFT(1243), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), - [3475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), SHIFT(1089), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1, .production_id = 7), - [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), - [3490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(827), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), SHIFT(1243), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2, .production_id = 42), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [3506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_handled_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(646), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_handled_sequence_of_statements_repeat1, 2), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 4), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [3519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1958), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_list, 1), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_discriminant_part, 3), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), SHIFT(442), - [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(618), - [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), SHIFT_REPEAT(206), - [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), SHIFT_REPEAT(103), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), SHIFT_REPEAT(785), - [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__attribute_reference, 3), SHIFT(223), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(108), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 3), - [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6, .production_id = 22), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 69), - [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6), - [3587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(644), - [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), SHIFT(1157), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_value, 2), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 2), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_ordinary_fixed_point_definition, 2), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 2), - [3635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(828), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [3642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1900), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 97), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_specification, 2), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_component_association_list_or_expression, 1), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 2), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), SHIFT(1102), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 1), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 36), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 110), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 3, .production_id = 3), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 59), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 3, .production_id = 3), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 1), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_type_definition, 2), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 3), - [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_declarative_if_statement_repeat1, 4, .production_id = 5), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 1), - [3732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), SHIFT_REPEAT(176), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), - [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 4), - [3739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), SHIFT_REPEAT(178), - [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), - [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_expression_item, 4, .production_id = 5), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 2), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 5), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 72), SHIFT_REPEAT(319), - [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 72), - [3759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_constraint_repeat1, 2), SHIFT_REPEAT(187), - [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_constraint_repeat1, 2), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 2), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 1), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 18), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 2), - [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_discriminant_part, 3), - [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 59), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 7, .production_id = 76), - [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 3), - [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 21), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 2), - [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 1), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 22), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_subtype_indication, 1, .production_id = 7), - [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), - [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), SHIFT_REPEAT(1321), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(884), + [92] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1088), + [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1383), + [98] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(714), + [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(698), + [104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(94), + [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(726), + [110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1409), + [113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(723), + [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2063), + [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2062), + [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(48), + [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2061), + [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(758), + [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2060), + [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1363), + [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(803), + [140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(807), + [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(20), + [146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(250), + [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1339), + [152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2059), + [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(623), + [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1302), + [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2058), + [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2057), + [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(243), + [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(208), + [173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(564), + [176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(834), + [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(836), + [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2055), + [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(233), + [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(717), + [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(840), + [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(220), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(73), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(228), + [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2052), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1012), + [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1088), + [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1383), + [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1288), + [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), + [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(48), + [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(758), + [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(2060), + [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(20), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(250), + [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(2058), + [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(2057), + [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(243), + [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(208), + [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(564), + [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(834), + [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(836), + [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(2055), + [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(233), + [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(717), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(840), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(220), + [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(73), + [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(228), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1110), + [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(842), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(698), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(726), + [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(2063), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(2061), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1363), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(803), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(807), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1339), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(623), + [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1302), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(2057), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(267), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(2052), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_declarative_if_statement_repeat1, 4, .production_id = 5), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_declarative_if_statement_repeat1, 3, .production_id = 5), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_of_statements, 1), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_declarative_part, 1), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_of_statements, 2), + [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 1), + [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 1), + [450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 1), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 1), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_if_statement_repeat1, 4, .production_id = 5), + [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_if_statement_repeat1, 3, .production_id = 5), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1110), + [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(842), + [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(698), + [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), + [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(838), + [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(2063), + [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(2061), + [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1455), + [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(803), + [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(807), + [561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1456), + [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(623), + [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1302), + [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(2057), + [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(2052), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 8, .production_id = 90), + [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 8, .production_id = 90), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 3), + [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 3), + [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 9), + [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 9), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 52), + [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 52), + [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 9, .production_id = 71), + [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 9, .production_id = 71), + [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 3), + [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 3), + [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 3), + [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 3), + [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 5, .production_id = 3), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 5, .production_id = 3), + [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 5), + [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 5), + [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_entry_call, 7), + [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_entry_call, 7), + [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 90), + [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 90), + [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 74), + [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 74), + [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 2), + [648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 2), + [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 6, .production_id = 5), + [652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 6, .production_id = 5), + [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 7, .production_id = 89), + [656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 7, .production_id = 89), + [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 3), + [660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 3), + [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 7, .production_id = 5), + [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 7, .production_id = 5), + [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 28), + [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 28), + [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 88), + [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 88), + [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 87), + [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 87), + [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 12), + [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 12), + [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 9, .production_id = 5), + [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 9, .production_id = 5), + [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 9, .production_id = 103), + [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 9, .production_id = 103), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 7), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 7), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 74), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 74), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_timed_entry_call, 7), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_timed_entry_call, 7), + [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 9, .production_id = 89), + [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 9, .production_id = 89), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 7), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 7), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 86), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 86), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 11, .production_id = 123), + [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 11, .production_id = 123), + [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 71), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 71), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), + [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), + [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 6), + [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 6), + [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, .production_id = 112), + [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, .production_id = 112), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 6), + [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 6), + [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_statement, 2), + [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_statement, 2), + [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 10, .production_id = 103), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 10, .production_id = 103), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 87), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 87), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 119), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 119), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 7), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 7), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 3, .production_id = 3), + [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 3, .production_id = 3), + [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 8), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 8), + [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 3, .production_id = 12), + [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 3, .production_id = 12), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), + [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 2), + [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, .production_id = 118), + [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, .production_id = 118), + [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 7), + [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 7), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 3, .production_id = 13), + [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 3, .production_id = 13), + [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 3), + [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 3, .production_id = 3), + [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 2), + [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 2), + [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_until_statement, 4), + [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_until_statement, 4), + [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4, .production_id = 29), + [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 4, .production_id = 29), + [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 14), + [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 14), + [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 5), + [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 5), + [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_relative_statement, 3), + [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_relative_statement, 3), + [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 5, .production_id = 3), + [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 5, .production_id = 3), + [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5, .production_id = 51), + [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 5, .production_id = 51), + [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 5, .production_id = 52), + [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 5, .production_id = 52), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 4, .production_id = 28), + [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 4, .production_id = 28), + [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 4), + [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 4), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7), + [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 2), + [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 2), + [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, .production_id = 86), + [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, .production_id = 86), + [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asynchronous_select, 8, .production_id = 101), + [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asynchronous_select, 8, .production_id = 101), + [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 8), + [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 8), + [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 17), + [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 17), + [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 8, .production_id = 102), + [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 8, .production_id = 102), + [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 8, .production_id = 5), + [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 8, .production_id = 5), + [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 8, .production_id = 103), + [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 8, .production_id = 103), + [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 4), + [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 4), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), + [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2), + [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 8, .production_id = 89), + [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 8, .production_id = 89), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 6), + [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 6), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 7, .production_id = 37), + [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 7, .production_id = 37), + [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_at_clause, 6), + [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_at_clause, 6), + [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 37), + [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 37), + [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 106), + [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 106), + [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 37), + [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 37), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 10, .production_id = 114), + [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 10, .production_id = 114), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 37), + [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 37), + [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 37), + [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 37), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 94), + [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 94), + [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 8), + [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 8), + [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 53), + [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 53), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 73), + [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 73), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 40), + [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 40), + [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 116), + [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 116), + [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 6), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 6), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 6), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 6), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9, .production_id = 113), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9, .production_id = 113), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 5), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 5), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 70), + [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 70), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 109), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 109), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 2), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 2), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 8), + [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 8), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 5, .production_id = 38), + [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 5, .production_id = 38), + [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 5), + [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 5), + [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 6), + [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 6), + [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 8), + [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 8), + [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 53), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 53), + [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 5), + [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 5), + [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 70), + [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 70), + [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 8), + [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 8), + [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 6, .production_id = 36), + [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 6, .production_id = 36), + [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 11), + [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 11), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 8), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 8), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 19), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 19), + [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 95), + [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 95), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 122), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 122), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 62), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 62), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 5), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 5), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 33), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 33), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 11, .production_id = 121), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 11, .production_id = 121), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 3), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 3), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 32), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 32), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 4), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 4), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 4), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 4), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 31), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 31), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 75), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 75), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 70), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 70), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 10, .production_id = 120), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 10, .production_id = 120), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7, .production_id = 92), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7, .production_id = 92), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 4), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 4), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 4), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 4), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 8), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 8), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 2), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 2), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 91), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 91), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 31), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 31), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 4), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 4), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_declaration, 2), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__package_declaration, 2), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 8), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 8), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 109), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 109), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 11), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 11), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 73), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 73), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 55), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 55), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 56), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 56), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 62), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 62), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 115), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 115), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 6), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 6), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 5), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 5), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 2), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 2), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 5), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 5), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 57), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 57), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 58), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 58), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 59), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 59), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 75), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 75), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 68), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 68), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 67), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 67), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 11), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 11), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 7), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 7), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 68), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 68), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 77), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 77), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 116), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 116), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 67), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 67), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 62), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 62), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 109), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 109), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 64), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 64), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 116), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 116), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 66), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 66), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 5, .production_id = 36), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 5, .production_id = 36), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 6), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 6), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 53), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 53), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 2), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 2), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_declaration, 5), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_declaration, 5), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 66), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 66), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 2), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 2), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 5), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 5), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 4), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 4), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 4), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 4), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 6), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 6), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 7), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 7), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 9), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 9), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 10), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 10), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 6), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 6), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 10), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 10), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 9), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 9), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 31), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 31), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 5), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 5), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 7), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 7), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 7), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 7), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 5), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 5), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 9), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 9), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 5), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 5), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 73), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 73), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 2), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 2), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 8, .production_id = 91), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 8, .production_id = 91), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 55), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 55), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_package_declaration, 3), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_package_declaration, 3), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 3), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 3), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 56), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 56), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8, .production_id = 105), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8, .production_id = 105), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 32), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 32), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 33), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 33), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 57), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 57), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 58), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 58), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 3), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 3), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 59), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 59), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 122), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 122), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 122), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 122), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 116), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 116), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 3), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 3), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 6), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 6), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 107), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 107), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body_stub, 1), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body_stub, 1), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 4), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 4), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 1), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 1), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 62), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 62), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 6, .production_id = 62), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 6, .production_id = 62), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 122), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 122), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 6, .production_id = 64), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 6, .production_id = 64), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 40), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 40), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 1), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 1), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 6), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 6), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 6), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 6), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 6), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 6), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 109), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 109), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 70), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 70), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 7), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 7), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 19), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 19), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 9), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 9), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 3), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 3), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 6), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 6), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 6), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 6), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 7), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 7), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 6), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 6), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 10), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 10), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 7), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 7), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 6), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 6), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 10), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 10), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 9), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 9), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 9), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 9), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 9), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 9), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 4, .production_id = 23), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 4, .production_id = 23), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 7), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 7), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_aggregate, 3), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_aggregate, 3), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_delta_aggregate, 6), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_delta_aggregate, 6), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_array_aggregate, 2), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_array_aggregate, 2), + [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_delta_aggregate, 6), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_delta_aggregate, 6), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 5), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 5), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_array_aggregate, 3), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_array_aggregate, 3), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_aggregate, 5), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_aggregate, 5), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_reference, 3), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_reference, 3), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selected_component, 3, .production_id = 16), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_component, 3, .production_id = 16), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 3, .production_id = 15), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 3, .production_id = 15), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduction_attribute_designator, 4), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_attribute_designator, 4), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 6), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 6), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 7), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 7), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_designator, 1), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_designator, 1), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice, 4, .production_id = 30), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 30), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 3), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 3), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reduction_attribute_reference, 3), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reduction_attribute_reference, 3), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 8), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 8), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 1), + [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(100), + [1683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 6), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 4), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 4), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 4), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 4), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 3), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 3), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 2), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 2), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 54), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 54), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 27), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 27), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 70), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 70), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 1), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 1), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 36), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 36), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 2), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 2), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 83), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 83), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 9, .production_id = 104), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 9, .production_id = 104), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 54), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 54), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 83), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 83), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 104), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 104), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4, .production_id = 27), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4, .production_id = 27), + [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 3), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 3), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 70), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 70), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 36), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 36), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 25), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 25), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 1), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 2), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 2), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 41), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 41), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary, 1, .production_id = 2), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary, 1, .production_id = 2), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 24), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 24), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subunit, 5, .production_id = 43), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subunit, 5, .production_id = 43), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), + [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), SHIFT_REPEAT(862), + [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), SHIFT_REPEAT(862), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 1, .production_id = 4), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1, .production_id = 4), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 2, .production_id = 10), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 2, .production_id = 10), + [1844] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6), REDUCE(sym_component_choice_list, 1), + [1848] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6), SHIFT(1466), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 3, .production_id = 42), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 3, .production_id = 42), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__factor, 1, .production_id = 4), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__factor, 1, .production_id = 4), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 4, .production_id = 80), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 4, .production_id = 80), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 2), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 2), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 3), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 3), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 1), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_null, 1), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_null, 1), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 3), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 3), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_abs, 2, .production_id = 8), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_abs, 2, .production_id = 8), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_power, 3, .production_id = 26), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_power, 3, .production_id = 26), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 8), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 8), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_not, 2, .production_id = 8), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_not, 2, .production_id = 8), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 1), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 1), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 3), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 3), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 2), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 2), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), + [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(860), + [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(860), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), + [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), SHIFT_REPEAT(2058), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 3, .production_id = 11), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 3, .production_id = 11), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_exclusion, 2), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_exclusion, 2), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(2042), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 1), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 18), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1394), + [2059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(842), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), + [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(2061), + [2067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(827), + [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(820), + [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(2059), + [2076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1302), + [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(2057), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(492), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1757), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 1), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 1), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 2, .production_id = 9), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2, .production_id = 1), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(842), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), + [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(2061), + [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(827), + [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(820), + [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1688), + [2161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1302), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [2166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(842), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), + [2171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(2061), + [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(827), + [2177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(820), + [2180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(2059), + [2183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1302), + [2186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(2057), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3, .production_id = 45), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 4), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1394), + [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(698), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), + [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(988), + [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(2021), + [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(2057), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 1), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__membership_choice, 1), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 2), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(846), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [2279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(801), + [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(800), + [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), + [2287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), SHIFT_REPEAT(480), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_formal_part, 2), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 4), + [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 8, .production_id = 89), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 8, .production_id = 89), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 4, .production_id = 9), + [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 9, .production_id = 5), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 9, .production_id = 5), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 3), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 3), + [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 8, .production_id = 5), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 8, .production_id = 5), + [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 9, .production_id = 103), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 9, .production_id = 103), + [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 6, .production_id = 5), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 6, .production_id = 5), + [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 7, .production_id = 5), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 7, .production_id = 5), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 10, .production_id = 103), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 10, .production_id = 103), + [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 7, .production_id = 89), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 7, .production_id = 89), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 9, .production_id = 89), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 9, .production_id = 89), + [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 8, .production_id = 103), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 8, .production_id = 103), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 2), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), + [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), SHIFT_REPEAT(264), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), + [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), SHIFT_REPEAT(263), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), + [2394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), SHIFT_REPEAT(301), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 3, .production_id = 21), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 35), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 3), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 3), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 2), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [2465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(842), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), + [2470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(2061), + [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(2059), + [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1302), + [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(2057), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 2), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 1), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1026), + [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1026), + [2502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1383), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [2509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(1394), + [2512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(842), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), + [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(2057), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 3, .production_id = 18), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_constraint, 1), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 3), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_constraint, 3), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 4, .production_id = 3), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_constraint, 2), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 3), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 6), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 3), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 3), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 3), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 3), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_constraint, 4), + [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_operator, 1), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_operator, 1), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 3, .production_id = 34), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 1), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 1), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3, .production_id = 34), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4, .production_id = 60), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2, .production_id = 18), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2, .production_id = 18), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 2), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 2), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_adding_operator, 1), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_adding_operator, 1), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4), + [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplying_operator, 1), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplying_operator, 1), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_part, 3), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_adding_operator, 1), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_adding_operator, 1), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 4), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 4), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 6), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 6), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 5), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 5), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_mode, 1), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_mode, 1), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1128), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), + [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1835), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1834), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 97), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3, .production_id = 34), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 60), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_and_result_profile, 2), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 5), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 110), + [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(593), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), + [2906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1953), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 76), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 61), + [2919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1774), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 1), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5), + [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 69), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 69), + [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 7), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 7), + [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4), + [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 117), + [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 117), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 49), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 49), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), + [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 100), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 100), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_subprogram_declaration, 1), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_subprogram_declaration, 1), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 4), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 4), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3, .production_id = 34), + [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 69), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 69), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 85), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 85), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 117), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 117), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 69), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 69), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 49), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 49), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 60), + [3006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 60), SHIFT(1917), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 49), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 49), + [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 85), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 85), + [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), + [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), + [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), + [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), + [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 85), + [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 85), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 34), + [3037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 34), SHIFT(1795), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6), + [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 3), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 3), + [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7), + [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 99), + [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 99), + [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 84), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 84), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 60), + [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 5), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 5), + [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 111), + [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 111), + [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 99), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 99), + [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 111), + [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 111), + [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), + [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), + [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), + [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 18), + [3090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 18), SHIFT(1598), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 5), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 5), + [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 117), + [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 117), + [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), + [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), + [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 6), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 6), + [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 111), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 111), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 12), + [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 11), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 1), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 10), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1971), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 9), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_clause, 4), + [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_clause, 4), + [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_clause, 8, .production_id = 124), + [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_clause, 8, .production_id = 124), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subpool_specification, 3, .production_id = 46), + [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpool_specification, 3, .production_id = 46), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 8), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_general_access_modifier, 1), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_general_access_modifier, 1), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 3), + [3212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), SHIFT_REPEAT(1216), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1, .production_id = 48), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 2), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition, 1, .production_id = 7), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 1), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice_parameter_specification, 1), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1, .production_id = 44), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 1), + [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), SHIFT_REPEAT(805), + [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 39), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 78), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 5), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 96), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 36), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 3, .production_id = 22), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [3396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(245), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 2), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1869), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 3), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 3), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 2), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 9, .production_id = 108), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 63), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 4), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 5), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), + [3492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(239), + [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 3), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 1), + [3499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), SHIFT_REPEAT(841), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 1), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_discriminant_part, 3), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 3, .production_id = 22), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), + [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), SHIFT(1235), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), SHIFT(461), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(653), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 70), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 2), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 2), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 3, .production_id = 3), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 2), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 2), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), + [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), SHIFT(1170), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 36), + [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(670), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 3, .production_id = 3), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2), + [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 110), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 3), + [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2, .production_id = 42), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_list, 1), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_ordinary_fixed_point_definition, 2), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 1), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6), + [3625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), SHIFT_REPEAT(237), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), + [3634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), SHIFT_REPEAT(855), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 4), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_value, 2), + [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 2), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1, .production_id = 7), + [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1), + [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), + [3673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1900), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_component_association_list_or_expression, 1), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [3686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1986), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4), + [3691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(122), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 34), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), + [3700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), SHIFT(1151), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnatprep_if_statement_repeat1, 2, .production_id = 50), SHIFT_REPEAT(242), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_if_statement_repeat1, 2, .production_id = 50), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6, .production_id = 22), + [3722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), SHIFT(1121), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnatprep_declarative_if_statement_repeat1, 2, .production_id = 50), SHIFT_REPEAT(276), + [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_declarative_if_statement_repeat1, 2, .production_id = 50), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_specification, 2), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [3742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), SHIFT(1235), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), SHIFT_REPEAT(124), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 97), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(856), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [3773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__attribute_reference, 3), SHIFT(269), + [3776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), SHIFT(1235), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(853), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [3786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), SHIFT_REPEAT(119), + [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [3793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_handled_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(671), + [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_handled_sequence_of_statements_repeat1, 2), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 60), + [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_type_definition, 2), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 4), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 1), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 7, .production_id = 76), + [3826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), SHIFT_REPEAT(1079), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), + [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 2), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 2), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), - [3841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), SHIFT_REPEAT(689), - [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_terminate_alternative, 2), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 2), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 3, .production_id = 5), - [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 4), - [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), SHIFT_REPEAT(1523), - [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), - [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), SHIFT_REPEAT(984), - [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 2, .production_id = 42), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 4), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 1), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), SHIFT_REPEAT(1999), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), - [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 4), - [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 2), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_interface_type_definition, 1), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_array_type_definition, 1), - [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_statement_item, 4, .production_id = 87), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_access_type_definition, 1), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 3, .production_id = 22), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 4), - [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 35), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 1), - [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 2), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 5, .production_id = 36), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 7, .production_id = 34), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_filter, 2, .production_id = 5), - [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 1), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 4), - [3975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), SHIFT_REPEAT(1295), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 2), - [3986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), SHIFT_REPEAT(710), - [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_association_repeat1, 2), - [3997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_association_repeat1, 2), SHIFT_REPEAT(1391), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_floating_point_definition, 2), - [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_modular_type_definition, 2), - [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 2), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_signed_integer_type_definition, 2), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 72), SHIFT_REPEAT(338), - [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 72), - [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 2), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 5, .production_id = 34), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), - [4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), SHIFT_REPEAT(1307), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 1, .production_id = 7), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 2), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_discrete_type_definition, 3), - [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 1), - [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 60), - [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_alternative, 1), - [4074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), SHIFT_REPEAT(186), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 6), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 4), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 1), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 8, .production_id = 59), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 3), - [4121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), SHIFT_REPEAT(999), - [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), - [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_decimal_fixed_point_definition, 4), - [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 2), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 1), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_if_statement_repeat1, 4, .production_id = 87), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 18), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), - [4146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), SHIFT_REPEAT(143), - [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 2), - [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 3), - [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 2, .production_id = 72), - [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 2), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 4, .production_id = 53), - [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 5), - [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_real_range_specification, 4), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 1), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 7, .production_id = 36), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1), - [4175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discrete_range, 1), SHIFT(443), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__loop_parameter_subtype_indication, 1, .production_id = 7), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 59), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_record_component_association, 3), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 6, .production_id = 22), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 6, .production_id = 69), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 36), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 8, .production_id = 110), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 1), - [4242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_discriminant_association, 1), SHIFT(456), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1, .production_id = 7), - [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 3), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 1), - [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 1), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 97), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 2), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 2), - [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_type_definition, 3), - [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_subtype_definition, 3, .production_id = 6), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 42), - [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modular_type_definition, 2), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 34), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 2), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 1), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_part, 7), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 22), - [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant, 4), - [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_integer_type_definition, 4), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3), - [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_extension_part, 2), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4), - [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 42), - [4343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_component_association, 1), SHIFT(1951), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordinary_fixed_point_definition, 3), - [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 4), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 3), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 42), - [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_element, 2, .production_id = 93), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1), - [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 4), - [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 2), - [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 5), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 4), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discriminant_part, 1), - [4404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discriminant_part, 1), SHIFT(524), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 4), - [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 5, .production_id = 59), - [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 1), - [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 22), - [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 1), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 36), - [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 1, .production_id = 79), - [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression_alternative, 4), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement_alternative, 4), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 34), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 3), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [4471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_choice_list, 1), REDUCE(sym_discrete_choice, 1), - [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 3), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 3), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1, .production_id = 7), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 42), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 6), - [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 3), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantified_expression, 5, .production_id = 82), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4, .production_id = 83), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 7, .production_id = 20), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_specification, 3), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3, .production_id = 64), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 4), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), SHIFT_REPEAT(710), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 1, .production_id = 7), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [3852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_statement_item, 4, .production_id = 86), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 3), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_discrete_type_definition, 3), + [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), SHIFT_REPEAT(198), + [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 1), + [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), + [3873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), SHIFT_REPEAT(190), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), + [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), SHIFT_REPEAT(1214), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_association_repeat1, 2), + [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_association_repeat1, 2), SHIFT_REPEAT(1466), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 3), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_expression_item, 4, .production_id = 5), + [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 4), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), SHIFT_REPEAT(200), + [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), SHIFT_REPEAT(787), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 3), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 1), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 4), + [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 2), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 4), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 21), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 22), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 72), SHIFT_REPEAT(284), + [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 72), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 4), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_discriminant_part, 3), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 8, .production_id = 60), + [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 3, .production_id = 22), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 18), + [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 2), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 2), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 3), + [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 4), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), + [4029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), SHIFT_REPEAT(1389), + [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 60), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 2), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_decimal_fixed_point_definition, 4), + [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 5, .production_id = 34), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 4), + [4048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), SHIFT_REPEAT(1283), + [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 2), + [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 1), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_floating_point_definition, 2), + [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_modular_type_definition, 2), + [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 2), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_signed_integer_type_definition, 2), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), SHIFT_REPEAT(2042), + [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 18), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_constraint_repeat1, 2), SHIFT_REPEAT(216), + [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_constraint_repeat1, 2), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 2), + [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 2), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_alternative, 1), + [4119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), SHIFT_REPEAT(1555), + [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 1), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 61), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [4152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), SHIFT_REPEAT(206), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 6), + [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_filter, 2, .production_id = 5), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 2), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 5, .production_id = 36), + [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 35), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 2), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 2, .production_id = 42), + [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [4187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 72), SHIFT_REPEAT(411), + [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 72), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 7, .production_id = 34), + [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_terminate_alternative, 2), + [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 5), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_interface_type_definition, 1), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 1), + [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_array_type_definition, 1), + [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_access_type_definition, 1), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), SHIFT_REPEAT(996), + [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 1), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 1), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 1), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 2), + [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_subtype_indication, 1, .production_id = 7), + [4237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 2, .production_id = 72), + [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 1), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 2), + [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 3, .production_id = 5), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 1), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 1), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 8, .production_id = 110), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_part, 7), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant, 4), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 97), + [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 4, .production_id = 54), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discriminant_part, 1), + [4333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discriminant_part, 1), SHIFT(545), + [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 36), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 7, .production_id = 36), + [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1, .production_id = 7), + [4346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_component_association, 1), SHIFT(1974), + [4349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_choice_list, 1), REDUCE(sym_discrete_choice, 1), + [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 3), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 1), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression_alternative, 4), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 60), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__loop_parameter_subtype_indication, 1, .production_id = 7), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 6), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 6, .production_id = 22), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 34), + [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_real_range_specification, 4), + [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 1), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordinary_fixed_point_definition, 3), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 22), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3), + [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_integer_type_definition, 4), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 1), + [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_extension_part, 2), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 1), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 4), + [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 34), + [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 4), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modular_type_definition, 2), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 2), + [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 36), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 2), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 5), + [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 4), + [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 42), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 3), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 4), + [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 5), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 5, .production_id = 60), + [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 2), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_element, 2, .production_id = 93), + [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1, .production_id = 7), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 1), + [4522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_discriminant_association, 1), SHIFT(474), + [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 1, .production_id = 79), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 3), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_record_component_association, 3), + [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 2), + [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 42), + [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 3), + [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1), + [4547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discrete_range, 1), SHIFT(473), + [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_type_definition, 3), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2), + [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 42), + [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_subtype_definition, 3, .production_id = 6), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1), + [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 3), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 6, .production_id = 70), + [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 22), + [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 42), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), + [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 3), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement_alternative, 4), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 3, .production_id = 22), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4, .production_id = 82), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 3, .production_id = 22), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 5), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_barrier, 2, .production_id = 5), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 5), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 5, .production_id = 98), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2, .production_id = 47), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_choice_list, 1), SHIFT(189), - [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 3), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, .production_id = 5), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [5070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantifier, 1), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [5120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_aggregate, 1), - [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 4, .production_id = 20), - [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 1), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [5218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 3), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2, .production_id = 5), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [5254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_index_specification, 4, .production_id = 36), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [5306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5322] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2, .production_id = 47), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_specification, 3), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [4807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_choice_list, 1), SHIFT(218), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 3), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 5), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_barrier, 2, .production_id = 5), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 4), + [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 5), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 5, .production_id = 98), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [5022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantified_expression, 5, .production_id = 81), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3, .production_id = 65), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantifier, 1), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_aggregate, 1), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [5154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 4, .production_id = 20), + [5156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 1), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, .production_id = 5), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [5264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 7, .production_id = 20), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [5306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 3), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2, .production_id = 5), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [5388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_index_specification, 4, .production_id = 36), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [5432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [5450] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), }; #ifdef __cplusplus diff --git a/test/corpus/preprocessor.txt b/test/corpus/preprocessor.txt index c9a0b19..a49c4cb 100644 --- a/test/corpus/preprocessor.txt +++ b/test/corpus/preprocessor.txt @@ -23,13 +23,12 @@ end; (term (factor_not (identifier)))) - (non_empty_declarative_part - (pragma_g - (identifier) - (pragma_argument_association - (expression - (term - (identifier)))))))) + (pragma_g + (identifier) + (pragma_argument_association + (expression + (term + (identifier))))))) (handled_sequence_of_statements (null_statement))))) @@ -53,3 +52,32 @@ end; (expression (term (gnatprep_identifier))))))) + +================================================================================ +Preprocess empty (GNAT) +================================================================================ + +procedure P is + #if not CHECKING_MODE then + -- pragma Suppress (Access_Checks); + #end if; +begin + null; +end; + +-------------------------------------------------------------------------------- + +(compilation + (compilation_unit + (subprogram_body + (procedure_specification + (identifier)) + (non_empty_declarative_part + (gnatprep_declarative_if_statement + (expression + (term + (factor_not + (identifier)))) + (comment))) + (handled_sequence_of_statements + (null_statement)))))